/* ─────────────────────────────────────────────────────────
   CUSTORE EVENT LANDING PAGE — style.css  (v2)
   Design: dark hero · coral ticker · cream form · dark benefits
   Reference: talents.custore.co
───────────────────────────────────────────────────────── */

/* ── FONTS ───────────────────────────────────────────────── */
@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-Light.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-LightItalic.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-Regular.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-RegularItalic.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-Medium.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-SemiBold.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-Bold.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hellix';
  src: url('assets/fonts/Hellix/OTF/Hellix-BoldItalic.otf') format('opentype'),
       url('assets/fonts/Hellix/TTF/Hellix-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert';
  src: url('assets/fonts/Roobert-Font/RoobertTRIAL-Light-BF67243fd502239.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert';
  src: url('assets/fonts/Roobert-Font/RoobertTRIAL-Regular-BF67243fd53fdf2.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert';
  src: url('assets/fonts/Roobert-Font/RoobertTRIAL-RegularItalic-BF67243fd5414aa.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert';
  src: url('assets/fonts/Roobert-Font/RoobertTRIAL-Medium-BF67243fd53e059.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roobert';
  src: url('assets/fonts/Roobert-Font/RoobertTRIAL-SemiBold-BF67243fd54213d.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:         #F5F0E8;
  --cream-mid:     #EDE5D8;
  --dark:          #231f20;
  --dark-deep:     #0e0c0b;
  --dark-mid:      #3C3330;
  --warm-grey:     #7A706A;
  --muted:         #B5A99F;
  --accent:        #f47c64;
  --accent-light:  #FCE8E0;
  --accent-hover:  #D96F52;
  --border-dark:   rgba(245,240,232,0.08);
  --border-light:  rgba(26,22,20,0.10);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --font-serif: 'Hellix', sans-serif;
  --font-sans:  'Roobert', sans-serif;

  --shadow-card: 0 2px 24px rgba(26,22,20,0.08), 0 1px 4px rgba(26,22,20,0.04);
  --shadow-btn:  0 4px 18px rgba(232,98,42,0.32);
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: #f5e1c1;
    border-radius: 99px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: #242222;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
}

.logo svg,
.logo img {
  width: 120px;
  height: auto;
  display: block;
}

.logo svg {
  fill: var(--cream);
}

.header-badge {
  background: var(--accent);
  color: var(--dark-mid);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  animation: fadeUp 0.55s ease both;
  min-height: 90dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 56px;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px 36px;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-visual { display: none; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 11vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
  letter-spacing: 0.025em;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--dark-deep);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  /* box-shadow: var(--shadow-btn); */
  -webkit-tap-highlight-color: transparent;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.btn-primary:hover  { background: #D4694E; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.hero-cta { font-size: 15.5px; padding: 15px 30px; max-width: none; width: auto; }

/* ── HERO CTAs ROW ───────────────────────────────────────── */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  align-items: flex-start;
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid rgba(26,22,20,0.22);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost-hero:hover { border-color: var(--accent); color: var(--accent); }

/* ── PROMO CARD ──────────────────────────────────────────── */
.promo-card {
  background: var(--dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
}

.promo-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.promo-card-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.promo-card-pct {
  font-family: var(--font-serif);
  font-size: clamp(72px, 9vw, 96px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.promo-card-off {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.promo-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.promo-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-card-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.promo-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.promo-card-btn { max-width: none; width: 100%; }

/* ── ASCII PROMO STRIP ───────────────────────────────────── */
.ascii-strip {
  background: transparent;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ascii-scroll-wrap {
  width: 100%;
  overflow: hidden;
}

.ascii-scroll {
  display: flex;
  width: max-content;
  animation: asciiTicker 28s linear infinite;
  will-change: transform;
}

.ascii-pre {
  font-family: 'Courier New', 'Lucida Console', monospace;
  font-size: 11px;
  line-height: 1.55;
  color: var(--dark-mid);
  white-space: pre;
  margin: 0;
  padding-right: 48px;
  flex-shrink: 0;
  user-select: none;
}

.ascii-accent {
  color: var(--accent);
}

@keyframes asciiTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ascii-road {
  color: var(--muted);
}


.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid rgba(26,22,20,0.22);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HERO STATS ──────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  gap: 0;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
  margin: 0 16px;
  flex-shrink: 0;
}

/* ── CHAT CTA ────────────────────────────────────────────── */
.chat-section {
  background: var(--dark);
  padding: 64px 24px 72px;
  text-align: center;
}

.chat-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.chat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 8px;
}

.chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: none;
  width: auto;
  padding: 15px 32px;
  font-size: 15.5px;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--accent);
  overflow: hidden;
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 18s linear infinite;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-mid);
  white-space: nowrap;
  padding: 0 16px;
}

.ticker-track span { flex-shrink: 0; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES (cream bg) ─────────────────────────────────── */
.services-section {
  background: var(--cream);
  padding: 30px 24px 26px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-label-light {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-pill {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 400;
  transition: background 0.15s;
  cursor: default;
}

.service-pill:hover { background: var(--accent); }

/* ── FORM SECTION (cream) ────────────────────────────────── */
.form-section {
  background: var(--cream);
  padding: 4px 16px 36px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.18s;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 26px 22px 30px;
  box-shadow: var(--shadow-card);
}

.form-header { margin-bottom: 24px; }

.form-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(232,98,42,0.2);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 7px;
}

.form-desc {
  font-size: 13.5px;
  color: var(--warm-grey);
  line-height: 1.55;
}

/* ── FIELDS ──────────────────────────────────────────────── */
.form-field { margin-bottom: 16px; }

.form-title{ 
  font-family: 'Roobert', sans-serif;
    font-weight: 300;
    font-size: 12px;
  }

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  font-size: 12px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  -webkit-appearance: none;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.1);
  background: var(--cream-mid);
}

.form-field input.error,
.form-field textarea.error {
  border-color: #D94F4F;
  box-shadow: 0 0 0 3px rgba(217,79,79,0.1);
}

/* ── SUBMIT BUTTON ───────────────────────────────────────── */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover  { background: #E8856A; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 11px;
}

/* ── SUCCESS STATE ───────────────────────────────────────── */
.success-state {
  text-align: center;
  padding: 8px 0;
  animation: fadeUp 0.4s ease both;
}

.success-icon { font-size: 48px; line-height: 1; margin-bottom: 14px; }

.success-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 10px;
}

.success-msg {
  font-size: 14.5px;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-website { font-size: 14px; padding: 13px 28px; }

/* ── BENEFITS ────────────────────────────────────────────── */
.benefits-section {
  background: var(--cream-mid);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.24s;
}

.benefits-inner {
  padding: 48px 24px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.benefit-item:last-child { border-bottom: none; }

.benefit-num {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 20px;
}

.benefit-text {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
}

.benefit-text strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 2px;
  font-family: var(--font-serif);
}

/* ── BENEFITS CTA ────────────────────────────────────────── */
.benefits-cta {
  text-align: center;
  padding-top: 8px;
}

.benefits-cta-text {
  font-size: 13px;
  color: var(--warm-grey);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 24px 28px;
}

.footer-logo {
  width: 86px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-company-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer a:hover { color: var(--accent); }

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--accent); }

.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-copy {
  border-top: 1px solid var(--border-dark);
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer-copy p {
  font-size: 11px;
  color: var(--warm-grey);
}

.footer-tagline-bottom { color: var(--muted); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,22,20,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  padding: 0;
  animation: fadeIn 0.2s ease both;
}

.modal-overlay[hidden] { display: none; }

.modal-card {
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: slideUp 0.28s cubic-bezier(0.22,1,0.36,1) both;
  max-height: 92dvh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #f5f0e8;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #231f20;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.modal-close:hover { background: rgba(26,22,20,0.14); color: var(--dark); }

.modal-title {
  font-family: 'hellix', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-bottom: 26px;
  padding-right: 36px;
}

.modal-card .form-field { margin-bottom: 18px; }

.modal-card .form-field label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 6px;
}

.modal-card .form-field input,
.modal-card .form-field textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(26,22,20,0.13);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

.modal-card .form-field input::placeholder,
.modal-card .form-field textarea::placeholder { color: var(--muted); }

.modal-card .form-field input:focus,
.modal-card .form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
}

.modal-card .form-field input.error,
.modal-card .form-field textarea.error {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,79,79,0.1);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-modal-submit {
  background: var(--accent);
  color: #231f20;
  font-family: 'hellix', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: var(--shadow-btn);
  -webkit-tap-highlight-color: transparent;
}

.btn-modal-submit:hover  { background: var(--accent-hover); transform: translateY(-1px); }
.btn-modal-submit:active { transform: translateY(0); }
.btn-modal-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

.modal-card .success-state {
  text-align: center;
  padding: 16px 0 8px;
  animation: fadeUp 0.4s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MEDIUM: 600px+ (tablet / small desktop, stacked) ───── */
@media (min-width: 480px) {
  body { max-width: none; }

  /* Header */
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
  }

  .logo svg,
  .logo img { width: 130px; }

  /* Hero */
  .hero { animation: none; }

  .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px 40px;
    width: 100%;
  }

  .hero-headline { font-size: clamp(52px, 7vw, 68px); }

  .hero-sub { max-width: 480px; font-size: 15.5px; }

  .hero-ctas { flex-direction: row; align-items: center; }

  .hero-cta { width: auto; }

  /* Benefits below hero */
  .benefits-inner {
    padding: 52px 40px 60px;
  }


  /* Footer: horizontal, dark */
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 44px 40px 36px;
  }

  .footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    text-align: left;
  }

  /* Modal: centred dialog */
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }

  .modal-card {
    border-radius: 24px;
    max-height: 88dvh;
  }
}

/* ── DESKTOP: 960px+ ─────────────────────────────────────── */
@media (min-width: 960px) {
  .header-inner { padding: 10px 0px; }

  .logo svg,
  .logo img { width: 140px; }

  /* Hero: full screen, content centred */
  .hero-inner {
    max-width: 1100px;
    padding: 0 50px 48px;
  }

  .hero-headline {
    font-size: clamp(64px, 5.5vw, 96px);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 40px;
  }

  .hero-cta { font-size: 16px; padding: 17px 40px; }

  /* Benefits: 4-column row on desktop */
  .benefits-section { animation: none; }

  .benefits-inner {
    padding: 64px 120px 72px;
    max-width: 1200px;
  }

  .benefits-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
  }

.section-label-light {
  margin-bottom: 28px;
  color: var(--accent);
  letter-spacing: 0.22em;
}

  .benefit-item { padding: 22px 0; }

  .benefit-text { font-size: 14.5px; }

  .benefit-text strong { font-size: 15.5px; }

  /* Footer */
  .footer-inner { padding: 44px 56px 36px; }

  .footer-copy { padding: 14px 56px; }

  /* Modal */
  .modal-card { max-width: 560px; }
}
