/* =========================================
   HMFIC — Marketing Site Styles (Premium)
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E5393A;
  --red-dark: #C0252A;
  --black: #1A1A1A;
  --dark: #0C0C0C;
  --dark-2: #141414;
  --white: #FAFAF8;
  --light: #F4F3F0;
  --gray: #6B6B6B;
  --gray-light: #DDD9D4;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.18);
  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad { padding: 100px 0; }

.bg-light {
  background-color: var(--light);
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.bg-dark { background: var(--dark); color: var(--white); }

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.0; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.highlight { color: var(--red); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

.eyebrow-red { color: var(--red); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: 0; }
.section-header-light h2 { color: var(--white); }
.section-header-light .section-eyebrow { color: var(--red); }
.section-sub {
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* --- Hero entrance animations --- */
@keyframes word-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  animation: fade-up 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.hero-headline .word {
  display: inline-block;
  animation: word-reveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-headline .word:nth-child(1)  { animation-delay: 0.15s; }
.hero-headline .word:nth-child(2)  { animation-delay: 0.21s; }
.hero-headline .word:nth-child(3)  { animation-delay: 0.27s; }
.hero-headline .word:nth-child(4)  { animation-delay: 0.33s; }
.hero-headline .word:nth-child(5)  { animation-delay: 0.39s; }
.hero-headline .word:nth-child(6)  { animation-delay: 0.45s; }
.hero-headline .word:nth-child(7)  { animation-delay: 0.51s; }
.hero-headline .word:nth-child(8)  { animation-delay: 0.57s; }
.hero-headline .word:nth-child(9)  { animation-delay: 0.63s; }
.hero-headline .word:nth-child(10) { animation-delay: 0.69s; }

.hero-sub   { animation: fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s  both; }
.hero-ctas  { animation: fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.95s both; }
.hero-proof { animation: fade-up 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s  both; }

/* --- CTA pulse --- */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 58, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(229, 57, 58, 0.18); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229, 57, 58, 0.4);
  animation: none;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  font-size: 0.78rem;
}
.btn-nav:hover { background: var(--red-dark); transform: none; }

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: var(--nav-h);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: calc(var(--nav-h) + 100px) 0 120px;
  position: relative;
  overflow: hidden;
}

/* Grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229,57,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,57,58,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Gradient wash */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% -5%, rgba(229,57,58,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(229,57,58,0.07) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,57,58,0.1);
  color: var(--red);
  border: 1px solid rgba(229,57,58,0.22);
  border-radius: 2px;
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  margin-bottom: 28px;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding-right: 36px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof span::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

/* --- About --- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.about-photo { position: relative; }

.about-photo::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(229,57,58,0.18);
  border-radius: 14px;
  pointer-events: none;
}

.about-photo img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}

.photo-placeholder {
  background: var(--light);
  border: 1px dashed var(--gray-light);
  border-radius: 10px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-weight: 600;
}

.about-content .section-eyebrow { margin-bottom: 10px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.75; font-weight: 300; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-light);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Services --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background var(--transition);
}

.card:hover { background: #FDFDFD; }

.card-featured {
  background: var(--dark-2);
}
.card-featured:hover { background: #181818; }
.card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}

.card-featured h3 { color: var(--white); }
.card-featured p { color: rgba(255,255,255,0.55); }
.card-featured ul li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.07); }
.card-featured ul li::before { color: var(--red); }

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 14px; }
.card p { color: var(--gray); font-size: 0.93rem; margin-bottom: 24px; line-height: 1.7; font-weight: 300; }
.card .card-lead { color: var(--black); font-size: 1rem; font-weight: 500; line-height: 1.6; margin-bottom: 18px; }
.card ul { padding: 0; }
.card ul li {
  font-size: 0.87rem;
  color: var(--black);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid var(--light);
}
.card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 400;
}
.card ul li:last-child { border-bottom: none; }

/* --- Client Logos --- */
.logos {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 56px 0;
}

.logos-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

/* Marquee ticker */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

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

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.38;
  transition: filter var(--transition), opacity var(--transition);
}
.logo-item:hover { filter: grayscale(0); opacity: 1; }
.logo-item img { max-height: 36px; width: auto; }

.logo-text-fallback {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Testimonials --- */
.text-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 36px;
  position: relative;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); }

.quote-mark {
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--red);
  line-height: 0.8;
  margin-bottom: 8px;
  opacity: 0.5;
}

.testimonial-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--red);
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}
.testimonial-author span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
}

.video-grid-header { text-align: center; margin-bottom: 28px; }
.video-grid-header h3 {
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.video-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
}
.video-placeholder:hover { background: rgba(255,255,255,0.07); }

.play-btn {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(229,57,58,0.45);
}
.video-placeholder span {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.video-embed iframe { width: 100%; height: 100%; border: none; }

/* --- Offer --- */
.offer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.offer-content .section-eyebrow { margin-bottom: 10px; }
.offer-content h2 { margin-bottom: 36px; }

.offer-checklist { padding: 0; }
.offer-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--gray-light);
  color: var(--black);
  line-height: 1.55;
  font-weight: 400;
}
.offer-checklist li:last-child { border-bottom: none; }

.check {
  color: var(--red);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-display);
}

.scarcity-box {
  background: var(--dark-2);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid rgba(229,57,58,0.18);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  box-shadow: 0 0 60px rgba(229,57,58,0.07);
}

.scarcity-icon {
  color: var(--red);
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
}

.scarcity-box h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.scarcity-box p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.75; font-weight: 300; }
.scarcity-box .btn { margin-top: 8px; }

/* --- Why --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  position: relative;
  padding: 48px 40px 44px;
  background: rgba(255,255,255,0.03);
  border-top: 3px solid transparent;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}

.why-card:hover {
  background: rgba(192,57,43,0.06);
  border-top-color: var(--red);
}

.why-card:hover::before {
  color: rgba(192,57,43,0.07);
}

.why-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: var(--radius);
  color: var(--red);
  margin-bottom: 22px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(192,57,43,0.2);
  border-color: rgba(192,57,43,0.5);
}

.why-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
}

/* --- Apply Tagline Pill --- */
.apply-tagline-pill {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 100px;
  line-height: 1.2;
}

/* --- Apply Form --- */
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.apply-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 16px 18px;
  }
  .radio-label {
    font-size: 1rem;
  }
  .field-hint {
    font-size: 0.82rem;
  }
}

.required { color: var(--red); }

.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}

.field-hint {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  font-style: italic;
}

.form-group input:not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.93rem;
  color: var(--white);
  font-family: var(--font-body);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group select option { background: #1a1a1a; color: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(229,57,58,0.04);
}

.form-submit { text-align: center; margin-top: 8px; }
.btn-submit { min-width: 240px; }

.form-success {
  text-align: center;
  padding: 60px 32px;
  animation: successFadeIn 0.5s ease-out;
}

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

@keyframes checkDraw {
  from { stroke-dashoffset: 30; }
  to { stroke-dashoffset: 0; }
}

@keyframes iconPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  animation: iconPop 0.5s ease-out;
  box-shadow: 0 0 0 12px rgba(229,57,58,0.12), 0 0 0 24px rgba(229,57,58,0.06);
}

.success-icon .check-draw {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: checkDraw 0.4s ease-out 0.3s forwards;
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.success-lead {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}

.success-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-error {
  text-align: center;
  padding: 16px;
  background: rgba(229,57,58,0.08);
  border: 1px solid rgba(229,57,58,0.22);
  border-radius: var(--radius);
  margin-top: 16px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* --- Footer --- */
.footer {
  background: #080808;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img { height: 28px; }
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
}

.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-links a:hover { color: var(--white); }

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.cards-grid .card:nth-child(2) .fade-in,
.cards-grid .card:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.16s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.24s; }
.text-testimonials .testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.text-testimonials .testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 360px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-inner { grid-template-columns: 1fr; gap: 48px; }
  .scarcity-box { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(12,12,12,0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 0.9rem; }
  .nav-links .btn-nav {
    margin: 12px 24px;
    width: calc(100% - 48px);
    text-align: center;
  }

  .hero { padding: calc(var(--nav-h) + 56px) 0 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }

  .cards-grid { grid-template-columns: 1fr; }
  .text-testimonials { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .apply-form { padding: 36px 24px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .about-stats { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 10px; }
}
