/* ===================================
   NOVALIFEE — CSS для Тильды (полная копия)
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Playfair+Display:ital,wght@0,700;0,800;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --mint:      #b8faf0;
  --mint-mid:  #9af4e6;
  --pink:      #ffb6e8;
  --pink-mid:  #f98bd8;
  --dark:      #1a1a2e;
  --mid:       #3d4466;
  --accent:    #1a6eff;
}

/* ── STAR OVERLAY ── */
.nl-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 9999; pointer-events: all;
  transition: opacity 0.7s ease;
  background: transparent;
}
.nl-star-wrap {
  position: absolute;
  top: 6vh; left: 2vw;
  will-change: transform, opacity;
  animation: nlStarFly 2.4s ease-out 0.3s forwards;
}
@keyframes nlStarFly {
  0%   { transform: translate(0,    0)    scale(0.1) rotate(-15deg); opacity: 0; }
  5%   { transform: translate(0,    0)    scale(0.1) rotate(-15deg); opacity: 1; }
  68%  { transform: translate(43vw, 38vh) scale(2.8) rotate(0deg);   opacity: 1; }
  82%  { transform: translate(43vw, 38vh) scale(3.1) rotate(0deg);   opacity: 1; }
  100% { transform: translate(43vw, 38vh) scale(2.3) rotate(0deg);   opacity: 0; }
}
.nl-star-svg {
  width: 80px; height: 80px;
  will-change: filter;
  transform: translateZ(0);
  animation: nlGlow 1.2s ease-in-out infinite alternate;
}
@keyframes nlGlow {
  from { filter: drop-shadow(0 0 12px rgba(125,212,252,0.8)); }
  to   { filter: drop-shadow(0 0 32px rgba(77,184,255,0.9)); }
}
.nl-trail-static {
  /* sits INSIDE .nl-star-wrap — moves with the star */
  position: absolute;
  right: 50%; top: 50%;          /* right edge at star centre */
  height: 5px; width: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.9), rgba(125,212,252,0.7), rgba(125,212,252,0));
  transform-origin: right center;
  /* desktop trajectory ≈ 26° below-right → trail points upper-left */
  transform: translateY(-50%) rotate(-26deg);
  border-radius: 3px; filter: blur(1.5px);
  animation: nlTrailStatic 2.4s ease-out 0.3s forwards;
}
@keyframes nlTrailStatic {
  0%   { opacity: 0;   width: 0; }
  6%   { opacity: 1;   width: 0; }
  45%  { opacity: 1;   width: 400px; }
  68%  { opacity: 0.9; width: 520px; }
  88%  { opacity: 0.3; width: 520px; }
  100% { opacity: 0;   width: 520px; }
}

/* ── LAYOUT ── */
.nl-page { min-height: 100vh; color: var(--dark); font-family: 'Raleway', sans-serif; overflow-x: hidden; }
.nl-bg-mint  { background: var(--mint); }
.nl-bg-pink  { background: var(--pink); }
.nl-bg-hero      { background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%); }
.nl-bg-hero-rev  { background: linear-gradient(315deg, var(--mint) 0%, var(--pink) 100%); }
.nl-bg-white { background: #ffffff; }

/* ── HEADER ── */
.nl-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky; top: 0; z-index: 100;
}
.nl-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  max-width: 1200px; margin: 0 auto; position: relative;
}
.nl-logo { display: flex; align-items: center; gap: 10px; }
.nl-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: 0.04em;
  text-transform: lowercase;
  background: linear-gradient(90deg, var(--mint) 0%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nl-logo-star { filter: drop-shadow(0 2px 8px rgba(255,182,232,0.5)); }
.nl-nav { display: flex; gap: 24px; }
.nl-nav a {
  color: var(--mid); text-decoration: none;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nl-nav a:hover { color: var(--accent); }

/* ── BURGER ── */
.nl-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none; z-index: 101;
}
.nl-burger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nl-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nl-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nl-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nl-nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  flex-direction: column; padding: 20px 24px; gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  z-index: 99;
}
.nl-nav-mobile.open { display: flex; }
.nl-nav-mobile a {
  color: var(--dark); text-decoration: none;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.03em;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.nl-nav-mobile a:last-child { border-bottom: none; }
.nl-nav-mobile a:hover { color: var(--accent); }

/* ── HERO ── */
.nl-hero {
  display: grid;
  grid-template-columns: 1fr 44%;
  align-items: center;
  height: calc(100vh - 60px);
  padding: 0 0 0 10vw;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%);
}
.nl-hero-content { position: relative; z-index: 2; padding-right: 24px; }
.nl-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800; line-height: 1.15; color: var(--dark);
  margin-bottom: 24px;
}
.nl-sub {
  font-size: 1.1rem; font-weight: 600; color: var(--mid);
  margin-bottom: 40px; line-height: 1.8;
}
.nl-btn {
  display: inline-block; padding: 17px 50px;
  background: linear-gradient(135deg, #1a6eff, #0d3fa0);
  color: #fff; text-decoration: none; border-radius: 50px;
  font-weight: 800; font-size: 1rem; letter-spacing: 0.05em;
  border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(26,110,255,0.45);
  transition: transform 0.22s, box-shadow 0.22s;
}
.nl-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(26,110,255,0.6); }
.nl-deco { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; pointer-events: none; }
.nl-dc { position: absolute; border-radius: 50%; }
.nl-dc1 { width:360px;height:360px;top:50%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(255,255,255,0.4) 0%,transparent 70%); }
.nl-dc2 { width:490px;height:490px;top:50%;left:50%;transform:translate(-50%,-50%);border:1.5px solid rgba(255,255,255,0.5);animation:nlRotate 24s linear infinite; }
.nl-dc3 { width:260px;height:260px;top:50%;left:50%;transform:translate(-50%,-50%);border:1.5px solid rgba(255,255,255,0.35);animation:nlRotate 14s linear infinite reverse; }
@keyframes nlRotate { from{transform:translate(-50%,-50%) rotate(0)} to{transform:translate(-50%,-50%) rotate(360deg)} }

/* ── HERO PHOTO ── */
.nl-hero-photo {
  align-self: stretch; overflow: hidden;
  pointer-events: none;
}
.nl-hero-photo img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  object-position: center 30%;
}

/* ── SECTIONS ── */
.nl-section { padding: 80px 0; }
.nl-container { max-width: 1080px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION HEADING ── */
.nl-label {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 800;
  color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.nl-lead { font-size: 1.05rem; font-weight: 600; color: var(--mid); margin-bottom: 44px; line-height: 1.8; }

/* ── WHITE CARD ── */
.nl-card-grad {
  background: linear-gradient(135deg, var(--mint) 0%, var(--pink) 100%) !important;
  border: none;
}
.nl-card {
  background: #ffffff;
  border-radius: 28px; padding: 56px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border: 1.5px solid rgba(255,255,255,1);
}
.nl-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800;
  color: var(--dark); margin-bottom: 14px; line-height: 1.25;
}
.nl-card p { color: var(--mid); font-size: 1rem; font-weight: 500; line-height: 1.8; margin-bottom: 12px; }

.nl-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint), var(--mint-mid));
  color: #005a50; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 18px;
}
.nl-badge-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-mid));
  color: #7a0060;
}

/* ── NL ICON ── */
.nl-icon {
  border-radius: 50%;
  background: linear-gradient(135deg, #ddfff9, #ffe8f8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FEATURES GRID ── */
.nl-feats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.nl-feat-item {
  background: linear-gradient(145deg, rgba(184,250,240,0.4), rgba(255,182,232,0.3));
  border-radius: 18px; padding: 28px 20px; text-align: center;
  border: 1.5px solid rgba(255,255,255,0.9);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nl-feat-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.09); }
.nl-feat-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.nl-feat-item h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.nl-feat-item p { font-size: 0.87rem; font-weight: 600; color: var(--mid); margin: 0; line-height: 1.6; }

/* ── STEPS ── */
.nl-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.nl-step {
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,1);
  border-radius: 20px; padding: 32px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nl-step:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.nl-step-num {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--mint-mid), var(--pink-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 14px;
}
.nl-step h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.nl-step p  { font-size: 0.87rem; font-weight: 600; color: var(--mid); line-height: 1.65; }

/* ── STAGES ── */
.nl-stages { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 8px; }
.nl-stage-card {
  background: rgba(255,255,255,0.85);
  border-radius: 20px; padding: 30px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid rgba(255,255,255,1);
  text-align: center;
}
.nl-stage-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--mint-mid), var(--pink-mid));
}
.nl-stage-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.nl-stage-num { font-size: 0.71rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.nl-stage-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.nl-stage-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.nl-stage-card p { font-size: 0.87rem; font-weight: 600; color: var(--mid); line-height: 1.65; }

/* ── BENEFITS ── */
.nl-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.nl-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,1);
  border-radius: 18px; padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nl-benefit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.nl-benefit-icon { flex-shrink: 0; margin-top: 2px; }
.nl-benefit strong { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.nl-benefit p { font-size: 0.87rem; font-weight: 600; color: var(--mid); margin: 0; line-height: 1.6; }

/* ── SUPPORT ── */
.nl-support { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px; }
.nl-support-card {
  background: rgba(255,255,255,0.82);
  border-radius: 18px; padding: 28px 20px; text-align: center;
  border: 1.5px solid rgba(255,255,255,1);
  transition: transform 0.2s;
}
.nl-support-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.nl-support-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.nl-support-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.nl-support-card p { font-size: 0.87rem; font-weight: 600; color: var(--mid); line-height: 1.6; }

/* ── FAQ (details/summary accordion) ── */
.nl-faq { display: flex; flex-direction: column; gap: 12px; }
.nl-faq details {
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,1);
  border-radius: 18px; overflow: hidden;
  transition: box-shadow 0.2s;
}
.nl-faq details[open] {
  box-shadow: 0 8px 30px rgba(26,110,255,0.12);
  border-color: rgba(26,110,255,0.25);
}
.nl-faq summary {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px; cursor: pointer; list-style: none;
  font-size: 1rem; font-weight: 800; color: var(--dark);
  transition: background 0.2s; user-select: none;
}
.nl-faq summary::-webkit-details-marker { display: none; }
.nl-faq summary::before {
  content: ''; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mint-mid), var(--pink-mid));
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23005a50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
  transition: transform 0.3s;
}
.nl-faq details[open] summary::before { transform: rotate(180deg); }
.nl-faq summary:hover { background: rgba(184,250,240,0.25); }
.nl-faq-body {
  padding: 0 28px 24px 72px;
  font-size: 0.95rem; font-weight: 600; color: var(--mid); line-height: 1.75;
  animation: faqOpen 0.25s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CONTACT ── */
.nl-contact-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.nl-form {
  background: rgba(255,255,255,0.95); border-radius: 24px; padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07); border: 1.5px solid rgba(255,255,255,1);
}
.nl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.nl-fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.nl-fg label { font-size: 0.77rem; font-weight: 800; color: var(--mid); letter-spacing: 0.06em; text-transform: uppercase; }
.nl-fg input, .nl-fg textarea {
  padding: 13px 16px; border: 2px solid rgba(184,250,240,0.9);
  border-radius: 10px; font-size: 0.95rem; font-family: 'Raleway', sans-serif; font-weight: 600;
  color: var(--dark); background: rgba(255,255,255,0.95); outline: none; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-fg input:focus, .nl-fg textarea:focus {
  border-color: var(--mint-mid); box-shadow: 0 0 0 3px rgba(139,240,226,0.35);
}
.nl-fg input::placeholder, .nl-fg textarea::placeholder { color: #c0c8d0; }
.nl-btn-full { width: 100%; text-align: center; border-radius: 14px; padding: 17px; font-size: 1rem; }
.nl-btn-mint {
  background: linear-gradient(135deg, var(--mint) 0%, #7ff0e0 100%);
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(184,250,240,0.55);
}
.nl-btn-mint:hover { box-shadow: 0 14px 40px rgba(127,240,224,0.65); }

.nl-aside { display: flex; flex-direction: column; gap: 16px; }
.nl-aside-box {
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,1);
  border-radius: 18px; padding: 24px;
}
.nl-aside-icon { margin-bottom: 10px; }
.nl-aside-box h3 { font-size: 0.97rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.nl-aside-box p { font-size: 0.87rem; font-weight: 600; color: var(--mid); line-height: 1.6; }
.nl-email-link {
  display: inline-block; margin-top: 10px; color: var(--accent); font-weight: 800;
  font-size: 0.97rem; text-decoration: none;
  border-bottom: 2px solid rgba(26,110,255,0.35); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nl-email-link:hover { color: #0d3fa0; border-color: #0d3fa0; }

/* ── PHOTO GRID ── */
.nl-photo-grid { display: grid; grid-template-columns: 1fr 520px; gap: 48px; align-items: center; }
.nl-photo-grid.nl-photo-left { grid-template-columns: 520px 1fr; }
.nl-photo-grid.nl-photo-left .nl-pg-img { order: -1; }
.nl-pg-img { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.13); aspect-ratio: 4/3; }
.nl-pg-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── BULLET LIST ── */
.nl-tagline {
  font-family: 'Raleway', sans-serif;
  font-style: normal; font-size: 1.05rem; font-weight: 600;
  color: var(--mid); margin-bottom: 36px; line-height: 1.8;
  border-left: 4px solid; border-image: linear-gradient(180deg, var(--mint-mid), var(--pink-mid)) 1;
  padding-left: 18px;
}
.nl-blist { display: flex; flex-direction: column; gap: 20px; }
.nl-bitem { display: flex; align-items: flex-start; gap: 16px; }
.nl-bitem-icon { flex-shrink: 0; margin-top: 2px; }
.nl-bitem strong { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.nl-bitem-tag { display: inline-block; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; font-style: italic; color: var(--dark); margin-bottom: 4px; }
.nl-bitem p { font-size: 0.88rem; font-weight: 600; color: var(--mid); margin: 0; line-height: 1.65; }

/* ── WHY US ── */
.nl-why { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.nl-why-card {
  text-align: center; padding: 36px 24px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,1);
  border-radius: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nl-why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.09); }
.nl-why-icon { margin-bottom: 14px; display: flex; justify-content: center; }
.nl-why-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.nl-why-card p { font-size: 0.9rem; font-weight: 600; color: var(--mid); line-height: 1.65; }

/* ── FOOTER ── */
.nl-footer { background: #ffffff; padding: 48px 0 32px; text-align: center; border-top: 1.5px solid rgba(184,250,240,0.4); }
.nl-footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.nl-footer-tag { font-size: 0.92rem; font-weight: 600; color: var(--mid); margin-bottom: 14px; }
.nl-footer a { color: var(--accent); text-decoration: none; font-size: 0.92rem; font-weight: 700; transition: color 0.2s; }
.nl-footer a:hover { color: var(--dark); }
.nl-footer-copy { font-size: 0.76rem; color: rgba(0,0,0,0.38); margin-top: 14px; display: block; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nl-header-inner { padding: 14px 20px; }
  .nl-nav { gap: 14px; flex-wrap: wrap; }
  .nl-hero { padding: 0 0 0 6vw; height: calc(100vh - 54px); grid-template-columns: 1fr 40%; }
  .nl-hero-content { max-width: 100%; }
  .nl-deco { display: none; }
  .nl-container { padding: 0 18px; }
  .nl-card { padding: 32px 22px; }
  .nl-feats    { grid-template-columns: repeat(2,1fr); }
  .nl-steps    { grid-template-columns: repeat(2,1fr); }
  .nl-stages   { grid-template-columns: repeat(2,1fr); }
  .nl-benefits { grid-template-columns: repeat(2,1fr); }
  .nl-support  { grid-template-columns: repeat(2,1fr); }
  .nl-why      { grid-template-columns: 1fr; }
  .nl-photo-grid, .nl-photo-grid.nl-photo-left { grid-template-columns: 1fr; }
  .nl-photo-grid.nl-photo-left .nl-pg-img { order: 0; }
  .nl-contact-wrap { grid-template-columns: 1fr; }
  .nl-form { padding: 28px 20px; }
  .nl-form-row { grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .nl-nav { display: none; }
  .nl-burger { display: flex; }
  .nl-hero {
    padding: 56px 20px 0;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .nl-hero-content { max-width: 100%; padding-right: 0; padding-bottom: 28px; }
  .nl-hero-photo { width: 100%; height: 360px; }
  .nl-hero-photo img { object-position: top center; }

  .nl-star-wrap { animation: nlStarFlyMob 2.4s ease-out 0.3s forwards; }
  @keyframes nlStarFlyMob {
    0%   { transform: translate(0,0)       scale(0.08) rotate(-15deg); opacity: 0; }
    5%   { transform: translate(0,0)       scale(0.08) rotate(-15deg); opacity: 1; }
    68%  { transform: translate(26vw,26vh) scale(1.1)  rotate(0deg);   opacity: 1; }
    82%  { transform: translate(26vw,26vh) scale(1.3)  rotate(0deg);   opacity: 1; }
    100% { transform: translate(26vw,26vh) scale(0.9)  rotate(0deg);   opacity: 0; }
  }
  .nl-trail-static {
    transform: translateY(-50%) rotate(-65deg);
    height: 3px;
    animation: nlTrailStaticMob 2.4s ease-out 0.3s forwards;
  }
  @keyframes nlTrailStaticMob {
    0%   { opacity: 0;   width: 0; }
    6%   { opacity: 1;   width: 0; }
    50%  { opacity: 1;   width: 160px; }
    80%  { opacity: 0.5; width: 160px; }
    100% { opacity: 0;   width: 160px; }
  }

  .nl-h1  { font-size: 1.85rem; line-height: 1.18; margin-bottom: 16px; }
  .nl-sub { font-size: 0.93rem; line-height: 1.7; margin-bottom: 24px; }
  .nl-label { font-size: 0.72rem; }
  .nl-title { font-size: 1.55rem; }
  .nl-btn   { padding: 14px 36px; font-size: 0.95rem; }
  .nl-section   { padding: 48px 0; }
  .nl-container { padding: 0 16px; }
  .nl-card      { padding: 22px 16px; }
  .nl-feats    { grid-template-columns: 1fr; gap: 14px; }
  .nl-steps    { grid-template-columns: 1fr; }
  .nl-stages   { grid-template-columns: 1fr; }
  .nl-benefits { grid-template-columns: 1fr; }
  .nl-support  { grid-template-columns: 1fr; }
  .nl-why      { grid-template-columns: 1fr; }
  .nl-photo-grid, .nl-photo-grid.nl-photo-left { grid-template-columns: 1fr; gap: 24px; }
  .nl-pg-img { height: 240px; border-radius: 16px; }
  .nl-contact-wrap { grid-template-columns: 1fr; gap: 20px; }
  .nl-form { padding: 24px 16px; }
  .nl-form-row { grid-template-columns: 1fr; }
  .nl-aside-box { padding: 18px 16px; }
  .nl-stage-card { padding: 24px 16px; }
  .nl-stage-num  { font-size: 0.7rem; }
}
