/* ==========================================================================
   SIERRA FOX MEDIA — Stylesheet
   Design tokens live at the top. Change brand colors/fonts here in one place.
   ========================================================================== */

:root {
  /* --- Color tokens (sampled from the Sierra Fox Media brand poster) --- */
  --sfx-black:        #0a0908;
  --sfx-charcoal:      #16130f;
  --sfx-charcoal-2:    #1f1a15;
  --sfx-red:           #d81f0f;
  --sfx-red-dark:      #8f1509;
  --sfx-orange:        #ff7a1a;
  --sfx-gradient:      linear-gradient(115deg, var(--sfx-red) 0%, var(--sfx-orange) 100%);
  --sfx-gradient-soft: linear-gradient(115deg, rgba(216,31,15,0.16) 0%, rgba(255,122,26,0.10) 100%);
  --sfx-white:         #f6f3ee;
  --sfx-grey:          #a79f96;
  --sfx-grey-dim:      #766f68;
  --sfx-line:          rgba(246,243,238,0.09);

  /* --- Type tokens --- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-eyebrow: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* --- Layout tokens --- */
  --max-w: 1180px;
  --radius: 6px;
  --nav-h: 76px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--sfx-black);
  color: var(--sfx-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(216,31,15,0.07), transparent 24rem),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--sfx-orange);
  outline-offset: 3px;
  border-radius: 3px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Signature motif: angled ribbon / stripe, echoes the poster's diagonal banners --- */
.stripe-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.stripe-accent::before,
.stripe-accent::after {
  content: "";
  position: absolute;
  width: 220%;
  height: 3px;
  background: var(--sfx-gradient);
  opacity: 0.35;
  transform: rotate(-8deg);
}
.stripe-accent::before { top: 12%; left: -60%; }
.stripe-accent::after { top: 12%; left: -60%; height: 1px; top: 15%; opacity: 0.18; }

.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--sfx-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--sfx-gradient);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.section-heading .accent { color: var(--sfx-orange); }

.section-sub {
  color: var(--sfx-grey);
  max-width: 640px;
  font-size: 1.05rem;
}

.section {
  position: relative;
  padding: 96px 0;
  border-bottom: 1px solid var(--sfx-line);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sfx-gradient);
  color: var(--sfx-white);
  box-shadow: 0 10px 30px -10px rgba(216,31,15,0.6);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 14px 34px -8px rgba(255,122,26,0.55); }
.btn-outline {
  background: transparent;
  color: var(--sfx-white);
  border: 1.5px solid rgba(246,243,238,0.28);
}
.btn-outline:hover { border-color: var(--sfx-orange); color: var(--sfx-orange); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex;
  align-items: center;
  background: rgba(10,9,8,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10,9,8,0.92);
  border-bottom-color: var(--sfx-line);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,122,26,0.32);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span { display: block; font-family: var(--font-eyebrow); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--sfx-grey); font-weight: 500; margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-eyebrow);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sfx-white);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--sfx-gradient);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn-primary { padding: 11px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 600;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--sfx-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(216,31,15,0.22), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(255,122,26,0.10), transparent 60%),
    var(--sfx-black);
}
.hero::after {
  content: "SFX";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(246,243,238,0.025);
  font-family: var(--font-display);
  font-size: clamp(16rem, 35vw, 34rem);
  line-height: 1;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.hero-copy h1 .line-accent {
  background: var(--sfx-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p {
  color: var(--sfx-grey);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--sfx-line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--sfx-orange); }
.hero-trust span { font-size: 0.82rem; color: var(--sfx-grey-dim); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual {
  position: relative;
  max-width: 510px;
  justify-self: end;
  padding: 18px 18px 10px 34px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 34px 0;
  border: 1px solid rgba(255,122,26,0.34);
  transform: skewX(-4deg);
}
.hero-portrait-frame {
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  background: var(--sfx-charcoal);
  aspect-ratio: 4/5;
  border: 1px solid rgba(246,243,238,0.1);
}
.hero-portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(1.06);
}
.hero-portrait-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(190deg, transparent 55%, rgba(10,9,8,0.85) 100%);
}
.hero-brand-mark {
  position: absolute;
  top: -12px;
  right: -18px;
  z-index: 3;
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--sfx-black);
  box-shadow: 0 16px 34px rgba(0,0,0,0.46), 0 0 0 1px rgba(255,122,26,0.3);
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--sfx-charcoal-2);
  border: 1px solid var(--sfx-line);
  border-left: 3px solid var(--sfx-orange);
  padding: 16px 22px;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.6);
}
.hero-badge strong { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; display: block; }
.hero-badge span { font-size: 0.82rem; color: var(--sfx-grey); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.about-lead {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: none;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.28;
  color: var(--sfx-white);
}
.about-body p { color: var(--sfx-grey); margin-bottom: 18px; max-width: 560px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.about-stats div {
  border: 1px solid var(--sfx-line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: left;
  background: var(--sfx-charcoal);
}
.about-stats strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--sfx-orange); display: block; margin-bottom: 4px; }
.about-stats span { font-size: 0.82rem; color: var(--sfx-grey-dim); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--sfx-charcoal);
  border: 1px solid var(--sfx-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,26,0.4);
  background: var(--sfx-charcoal-2);
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--sfx-gradient-soft);
  border: 1px solid rgba(255,122,26,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--sfx-orange); }
.service-card h3 {
  font-family: var(--font-eyebrow);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.service-card p { color: var(--sfx-grey); font-size: 0.96rem; }

/* ==========================================================================
   AD PACKAGES (AI-Driven Social Media Ads)
   ========================================================================== */
.ads-section { background: var(--sfx-black); position: relative; }
.ads-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  border: 1px solid rgba(255,122,26,0.25);
  border-radius: 10px;
  padding: 56px;
  background: linear-gradient(150deg, rgba(216,31,15,0.07), rgba(255,122,26,0.02));
  position: relative;
  overflow: hidden;
}
.ads-panel::before {
  content: "";
  position: absolute;
  top: -30%; left: 60%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(255,122,26,0.16), transparent 65%);
  pointer-events: none;
}
.ads-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 30px; position: relative; z-index: 1; }
.ads-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.ads-list svg { width: 20px; height: 20px; stroke: var(--sfx-orange); flex-shrink: 0; }

.ads-price {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  border: 1px solid rgba(255,122,26,0.4);
  border-radius: 8px;
  padding: 14px 22px;
  margin-bottom: 30px;
  background: var(--sfx-charcoal);
}
.ads-price span { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--sfx-grey); }
.ads-price strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--sfx-orange); }

.ads-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.ads-visual img {
  max-width: 100%;
  filter: drop-shadow(0 24px 50px rgba(216,31,15,0.35));
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section { background: var(--sfx-charcoal); }
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sfx-line);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-mark {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sfx-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.why-item h4 { font-family: var(--font-eyebrow); font-weight: 700; text-transform: uppercase; font-size: 1.02rem; margin-bottom: 4px; letter-spacing: 0.02em; }
.why-item p { color: var(--sfx-grey); font-size: 0.94rem; }

.why-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sfx-line);
  min-height: 420px;
  background:
    linear-gradient(155deg, rgba(216,31,15,0.35), rgba(255,122,26,0.1) 60%, transparent),
    var(--sfx-black);
  display: flex;
  align-items: flex-end;
  padding: 36px;
}
.why-visual-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.why-visual-quote span { color: var(--sfx-orange); }

/* ==========================================================================
   WEBWAY AFFILIATE SECTION
   ========================================================================== */
.webway-section {
  position: relative;
  background: var(--sfx-black);
  overflow: hidden;
}
.webway-section::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: var(--sfx-gradient);
  opacity: 0.14;
  filter: blur(80px);
  border-radius: 50%;
}
.webway-panel {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,122,26,0.3);
  border-radius: 10px;
  padding: 56px;
  background: linear-gradient(160deg, rgba(216,31,15,0.08), rgba(255,122,26,0.03));
}
.webway-panel-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; margin-bottom: 40px; }
.webway-panel h2 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1.06; margin-bottom: 18px; }
.webway-panel-top p { color: var(--sfx-grey); font-size: 1.05rem; margin-bottom: 28px; }
.webway-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.webway-list { display: flex; flex-direction: column; gap: 14px; }
.webway-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-eyebrow);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 18px;
  background: var(--sfx-charcoal);
  border: 1px solid var(--sfx-line);
  border-radius: 6px;
}
.webway-list svg { width: 18px; height: 18px; stroke: var(--sfx-orange); flex-shrink: 0; }

.webway-disclosure {
  border-top: 1px solid var(--sfx-line);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--sfx-grey-dim);
  line-height: 1.6;
}
.webway-disclosure strong { color: var(--sfx-grey); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 40px 30px;
  background: var(--sfx-charcoal);
  border-top: 3px solid transparent;
  border-image: var(--sfx-gradient) 1;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(246,243,238,0.22);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.process-step h3 { font-family: var(--font-eyebrow); text-transform: uppercase; font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: 0.02em; }
.process-step p { color: var(--sfx-grey); font-size: 0.94rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact-card {
  background: var(--sfx-charcoal);
  border: 1px solid var(--sfx-line);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-person { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--sfx-line); }
.contact-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 2px solid var(--sfx-orange); flex-shrink: 0; }
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.contact-person h3 { font-family: var(--font-eyebrow); font-size: 1.1rem; text-transform: uppercase; font-weight: 700; }
.contact-person span { color: var(--sfx-grey); font-size: 0.88rem; }

.contact-links { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.contact-link-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--sfx-line);
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-link-btn:hover { border-color: var(--sfx-orange); background: rgba(255,122,26,0.06); }
.contact-link-btn svg { width: 20px; height: 20px; stroke: var(--sfx-orange); flex-shrink: 0; }
.contact-link-btn .cl-label { display: flex; flex-direction: column; }
.contact-link-btn .cl-label small { color: var(--sfx-grey-dim); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-link-btn .cl-label strong { font-size: 0.98rem; }

.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--sfx-line);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-social a:hover { border-color: var(--sfx-orange); transform: translateY(-3px); }
.contact-social svg { width: 17px; height: 17px; stroke: var(--sfx-white); }

.contact-form {
  background: var(--sfx-charcoal);
  border: 1px solid var(--sfx-line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sfx-grey);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--sfx-black);
  border: 1px solid var(--sfx-line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--sfx-white);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sfx-orange);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--sfx-grey-dim); margin-top: 10px; }
.form-honeypot { position: absolute; left: -9999px; }
.form-success,
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255,122,26,0.1);
  border: 1px solid rgba(255,122,26,0.35);
  font-size: 0.92rem;
}
.form-success.visible,
.form-error.visible { display: block; }
.form-error {
  background: rgba(216,31,15,0.1);
  border-color: rgba(216,31,15,0.42);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--sfx-charcoal);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--sfx-line);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--sfx-grey); max-width: 320px; font-size: 0.94rem; margin-bottom: 6px; }
.footer-tagline { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--sfx-orange); font-size: 0.85rem; }
.footer-col h5 { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--sfx-grey-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { color: var(--sfx-grey); font-size: 0.94rem; }
.footer-col a:hover { color: var(--sfx-orange); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: var(--sfx-grey-dim);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--sfx-orange); }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--sfx-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(216,31,15,0.6);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; stroke: var(--sfx-white); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; margin: 0 auto; justify-self: center; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-visual { min-height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 2px; }
  .webway-panel-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,9,8,0.98);
    padding: 24px;
    gap: 22px;
    border-bottom: 1px solid var(--sfx-line);
  }
  .nav-cta.mobile-open { display: flex; padding: 0 24px 24px; background: rgba(10,9,8,0.98); position: fixed; top: calc(var(--nav-h) + 230px); left:0; right:0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-visual { padding-left: 18px; }
  .hero-brand-mark { width: 82px; height: 82px; right: -4px; }
  .hero-badge { left: 4px; right: 4px; bottom: -26px; }
  .webway-panel { padding: 32px 22px; }
  .about-stats { grid-template-columns: 1fr; }
  .services-head { align-items: flex-start; }
}
