/* ── DOGDESK THEME — distinctive warm-terracotta aesthetic ── */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg:         #F7F3EE;
  --bg-alt:     #EFE9E1;
  --surface:    #FFFFFF;
  --text:       #1C100A;
  --text-muted: #7D6651;
  --text-dim:   #B09C8A;
  --border:     rgba(28, 16, 10, 0.09);
  --accent:     #C4612A;
  --accent-dark:#9E4D20;
  --accent-dim: rgba(196, 97, 42, 0.1);
  --navy:       #2B1810;
  --green:      #5A8A5B;
  --green-dim:  rgba(90, 138, 91, 0.12);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav__logo span { color: var(--accent); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--accent); }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__actions--open {
  display: flex \!important;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 20px 64px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: #3a2218;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 24, 16, 0.18);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary--sm { padding: 10px 18px; font-size: 13px; }
.btn-primary--lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-primary--full { width: 100%; text-align: center; }
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent-dim);
  border-radius: 8px;
  transition: all 0.2s;
  background: none;
}
.btn-secondary:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ── HERO ── */
.hero {
  padding: 80px 64px 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #E8A87C 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,97,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(196, 97, 42, 0.2);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 40, 40, 0.07);
  border: 1px solid rgba(200, 40, 40, 0.15);
  color: #C82828;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
  width: fit-content;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #C82828;
  animation: dot-pulse 1.8s infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
  display: inline;
  background: linear-gradient(135deg, var(--accent) 0%, #E8A87C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--text); }
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28, 16, 10, 0.14), 0 0 0 1px rgba(28, 16, 10, 0.05);
  aspect-ratio: 4/3;
  max-width: 480px;
  width: 100%;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-header__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.65;
}

/* ── FEATURES ── */
.features {
  padding: 80px 64px;
  background: var(--bg-alt);
}
.features__inner { max-width: 1140px; margin: 0 auto; }
.features__showcase {
  max-width: 680px;
  margin: 0 auto 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28, 16, 10, 0.1);
}
.features__showcase img { width: 100%; display: block; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}
.feature-card:hover {
  box-shadow: 0 12px 36px rgba(28, 16, 10, 0.09);
  transform: translateY(-3px);
  border-color: rgba(196, 97, 42, 0.2);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  transition: background 0.25s, transform 0.25s;
}
.feature-card:hover .feature-card__icon {
  background: var(--accent);
  transform: scale(1.08);
}
.feature-card__icon::before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Icon SVGs (inline via CSS background) */
[data-icon="clients"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C4612A' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C4612A' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z'/%3E%3C/svg%3E"); }

.feature-card__title::before {
  content: attr(data-icon-label);
  display: block;
}

/* ── PROBLEM ── */
.problem { padding: 80px 64px; background: var(--bg); }
.problem__inner { max-width: 1140px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,16,10,0.07); }
.problem-card__icon { font-size: 32px; margin-bottom: 14px; }
.problem-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how { padding: 80px 64px; background: var(--bg); }
.how__inner { max-width: 1140px; margin: 0 auto; }
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step { display: flex; flex-direction: column; position: relative; }
.step__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(196, 97, 42, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.step__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── PRICING ── */
.pricing { padding: 80px 64px; background: var(--bg-alt); }
.pricing__inner { max-width: 900px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(28, 16, 10, 0.12);
  border-color: rgba(196, 97, 42, 0.3);
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(196, 97, 42, 0.14);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-card__price { margin: 20px 0 6px; }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
}
.pricing-card__period { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.pricing-card__subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card__benefits {
  list-style: none;
  text-align: left;
  margin: 0 auto 24px;
  max-width: 300px;
}
.pricing-card__benefits li {
  font-size: 14px;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__benefits li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  width: 16px;
}
.pricing-card__benefits li:last-child { border-bottom: none; }
.pricing-card__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 40, 40, 0.07);
  color: #C82828;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pricing-card__counter-num { font-size: 20px; }
.pricing-card__note { font-size: 12px; color: var(--text-dim); margin-top: 14px; }

/* Comparison table */
.pricing-compare { margin-top: 16px; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pricing-table th, .pricing-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-table th:first-child, .pricing-table td:first-child { text-align: left; font-weight: 600; color: var(--text-muted); }
.pricing-table__plan { font-size: 13px; font-weight: 700; }
.pricing-table__plan.muted { color: var(--text-dim); }
.muted { color: var(--text-dim); }

/* ── TRUST ── */
.trust { padding: 80px 64px; background: var(--bg); }
.trust__inner { max-width: 1140px; margin: 0 auto; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
.trust-card__quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.trust-card__author { display: flex; align-items: center; gap: 12px; }
.trust-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.trust-card__name { font-size: 14px; font-weight: 700; color: var(--text); }
.trust-card__role { font-size: 13px; color: var(--text-muted); }

/* ── FAQ ── */
.faq { padding: 80px 64px; background: var(--bg-alt); }
.faq__inner { max-width: 700px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(28,16,10,0.06); }
.faq-item[open] { box-shadow: 0 4px 16px rgba(28,16,10,0.1); }
.faq-item__q {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CLOSING CTA ── */
.closing {
  padding: 100px 64px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.closing__inner { max-width: 640px; margin: 0 auto; }
.closing__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.closing__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 44px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.closing__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.65;
}
.closing__note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 64px;
  background: var(--navy);
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer__left { display: flex; flex-direction: column; gap: 8px; }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.footer__logo span { color: var(--accent); }
.footer__contact { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.65); }
.footer__meta { font-size: 13px; color: rgba(255,255,255,0.3); white-space: nowrap; }

/* ── REGISTER FORM ── */
.register-form { display: flex; flex-direction: column; gap: 12px; }
.register-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.register-form__input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.register-form__input::placeholder { color: var(--text-dim); }
.register-form__input:focus { border-color: var(--accent); }
.register-success {
  padding: 18px;
  background: var(--green-dim);
  border: 1px solid rgba(90, 138, 91, 0.25);
  border-radius: 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
}
.register-error {
  padding: 12px 16px;
  background: rgba(200, 40, 40, 0.08);
  border: 1px solid rgba(200, 40, 40, 0.2);
  border-radius: 10px;
  color: #C82828;
  font-size: 14px;
  font-weight: 600;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav, .hero, .features, .problem, .trust, .pricing, .faq, .closing, .footer, .how { padding-left: 28px; padding-right: 28px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .register-form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 16px; }
  .footer__meta { text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; }
  .pricing-table { font-size: 12px; }
  .pricing-table th, .pricing-table td { padding: 8px 10px; }
  .nav__toggle { display: flex; }
  .nav__actions { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg); padding: 16px 28px; border-bottom: 1px solid var(--border); gap: 12px; flex-wrap: wrap; align-items: center; }
  .nav__actions.nav__actions--open { display: flex; }
  .nav__link { display: inline; font-size: 14px; }
  .nav { position: relative; }
}
@media (max-width: 480px) {
  .section-header__title { font-size: 26px; }
  .closing__headline { font-size: 24px; }
  .nav { padding: 0 20px; }
  .pricing-card { padding: 36px 24px; }
  .pricing-card__amount { font-size: 48px; }
  .hero__urgency { font-size: 12px; }
}
