/* ==========================================================================
   FLISTRY MEDIA — Stylesheet
   Influencer Marketing Agency — Premium Website
   Structure: 1) Variables  2) Reset  3) Base/Typography  4) Layout Utilities
              5) Navigation  6) Buttons  7) Hero  8) Sections  9) Components
              10) Footer  11) Animations  12) Responsive
   ========================================================================== */

/* ---------- 1) DESIGN TOKENS ---------- */
:root {
  /* Brand palette — sourced directly from the Flistry Media logo */
  --ink: #0b0f1a;              /* deepest page background */
  --surface: #121828;          /* base section background (logo bg tone) */
  --surface-2: #1a2236;        /* elevated / card background */
  --surface-3: #212a42;        /* hover / raised state */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --teal: #0ac2ce;             /* primary accent */
  --blue: #3893b2;             /* secondary accent (gradient partner) */
  --gold: #eab66a;             /* tertiary accent — used sparingly, node dots */

  --gradient-brand: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  --gradient-radial: radial-gradient(circle at 30% 20%, rgba(10, 194, 206, 0.14), transparent 60%);

  --ink-white: #f4f6fa;
  --muted: #93a0b8;
  --muted-2: #6b7690;

  /* Type scale */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --fs-hero: clamp(2.4rem, 5.2vw, 4.4rem);
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6.5rem;
  --space-3xl: 9rem;

  /* Shape / motion */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --max-width: 1240px;
  --nav-height: 84px;
}

/* ---------- 2) RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

/* ---------- 3) BASE / TYPOGRAPHY ---------- */
body {
  background: var(--ink);
  color: var(--ink-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-white);
}

h1 { font-size: var(--fs-hero); font-weight: 700; }
h2 { font-size: var(--fs-h1); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); line-height: 1.65; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(234, 182, 106, 0.7);
  flex-shrink: 0;
}

.muted { color: var(--muted); }

/* Visually-hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 4) LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--space-3xl); position: relative; }
.section-tight { padding-block: var(--space-2xl); }
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-sm); }
.section-head p { margin-top: var(--space-sm); }

.section-alt { background: var(--surface); }

.grid {
  display: grid;
  gap: var(--space-md);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Reveal-on-scroll base state */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 5) NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 15, 26, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand img { height: 34px; width: auto; }
.brand-logo { height: 42px; width: auto; }

.grad-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink-white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6) BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #06131a;
  box-shadow: 0 10px 30px -8px rgba(10, 194, 206, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(10, 194, 206, 0.6); }
.btn-ghost {
  background: transparent;
  color: var(--ink-white);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--teal); background: rgba(10, 194, 206, 0.08); transform: translateY(-2px); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.875rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- 7) HERO ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 4.5rem);
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { margin-top: var(--space-md); }
.hero-copy p.lead { margin-top: var(--space-md); max-width: 480px; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-white);
}
.hero-meta div span {
  font-size: var(--fs-small);
  color: var(--muted-2);
}

.hero-visual { position: relative; }
.hero-visual .glass-card {
  padding: var(--space-lg);
  aspect-ratio: 1 / 1.02;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connection-path { width: 100%; height: 100%; }
.connection-path .path-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.connection-path .path-node { filter: drop-shadow(0 0 8px rgba(234,182,106,0.55)); }
.connection-path .path-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  fill: var(--muted);
  text-transform: uppercase;
}
.connection-path .path-dot-travel { fill: var(--gold); }

/* ---------- 8) GLASS / CARDS ---------- */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 194, 206, 0.35);
  background: var(--surface-3);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 194, 206, 0.1);
  color: var(--teal);
  margin-bottom: var(--space-md);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Services grid (home overview) */
.services-grid { grid-template-columns: repeat(4, 1fr); }

/* ---------- 9) PROCESS / WORKFLOW ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  position: relative;
}
.process-line {
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0.25;
  z-index: 0;
}
.process-line-fill {
  position: absolute;
  top: 27px;
  left: 6%;
  height: 2px;
  width: 0%;
  background: var(--gradient-brand);
  z-index: 0;
  transition: width 1.2s var(--ease);
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: var(--space-md);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.process-step.is-active .process-num {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 194, 206, 0.12);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-step p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Why choose / Industries ---------- */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.feature-item { display: flex; gap: var(--space-md); }
.feature-item .card-icon { flex-shrink: 0; margin-bottom: 0; }
.feature-item h3 { margin-bottom: 0.35rem; }
.feature-item p { color: var(--muted); font-size: 0.95rem; }

.industries-grid { grid-template-columns: repeat(3, 1fr); }
.industry-card { text-align: left; }
.industry-card .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.faq-question .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--teal);
  transition: transform 0.4s var(--ease);
}
.faq-item[data-open="true"] .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.faq-answer p { padding-bottom: 1.5rem; color: var(--muted); max-width: 640px; }

/* ---------- Contact CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  background: linear-gradient(135deg, rgba(10,194,206,0.14), rgba(56,147,178,0.08) 60%, rgba(234,182,106,0.06));
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { max-width: 620px; margin-inline: auto; }
.cta-banner p { margin-top: var(--space-sm); max-width: 520px; margin-inline: auto; }
.cta-banner .hero-actions { justify-content: center; margin-top: var(--space-lg); }

/* ---------- 10) FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding-block: var(--space-2xl) var(--space-lg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-xl);
}
.footer-brand .brand { margin-bottom: var(--space-sm); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: var(--space-md);
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  color: var(--muted-2);
  font-size: 0.85rem;
}
.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-row a:hover { color: var(--teal); border-color: var(--teal); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: var(--space-xl);
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-top: var(--space-md); max-width: 720px; }
.page-header p.lead { margin-top: var(--space-md); max-width: 620px; }

/* ---------- Services page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: var(--space-xl);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-index {
  font-family: var(--font-mono);
  color: var(--muted-2);
  font-size: 0.85rem;
}
.service-detail .card-icon { margin-bottom: var(--space-md); }
.service-detail h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.service-detail p { color: var(--muted); max-width: 560px; }
.service-detail ul { margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.6rem; }
.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.service-detail ul li svg { width: 16px; height: 16px; color: var(--teal); margin-top: 3px; flex-shrink: 0; }

/* ---------- About page ---------- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
.value-grid { grid-template-columns: repeat(3, 1fr); }
.stat-strip {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.stat-strip div { text-align: center; flex: 1; min-width: 140px; }
.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-strip span { font-size: 0.82rem; color: var(--muted-2); }
.stat-note { font-size: 0.78rem; color: var(--muted-2); text-align: center; margin-top: var(--space-md); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-2xl); align-items: start; }

/* Standalone contact boxes (Instagram / Email) — homepage contact section */
.contact-box-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.contact-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.1rem 1.3rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.contact-box:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 194, 206, 0.4);
  background: var(--surface-3);
}
.contact-box-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 194, 206, 0.12);
  color: var(--teal);
}
.contact-box-icon svg { width: 22px; height: 22px; }
.contact-box-text { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.contact-box-text strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink-white); }
.contact-box-text span { font-size: 0.88rem; color: var(--muted); }
.contact-box-arrow {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--muted-2);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.contact-box:hover .contact-box-arrow { transform: translateX(4px); color: var(--teal); }

.contact-info-card { position: sticky; top: calc(var(--nav-height) + 2rem); }
.contact-info-row { display: flex; gap: var(--space-md); align-items: flex-start; padding-block: var(--space-md); border-bottom: 1px solid var(--line); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .card-icon { margin-bottom: 0; }
.contact-info-row h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-info-row a, .contact-info-row p { color: var(--muted); font-size: 0.92rem; }
.contact-info-row a:hover { color: var(--teal); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--space-md); }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--ink-white);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: var(--surface-3);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: var(--space-sm); }
.form-status {
  margin-top: var(--space-md);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(10,194,206,0.1); border: 1px solid rgba(10,194,206,0.35); color: var(--teal); }
.form-status.error { background: rgba(234,106,106,0.1); border: 1px solid rgba(234,106,106,0.35); color: #ff9a9a; }

/* ---------- 11) MISC ANIMATIONS ---------- */
.float { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Rocket launch effect (Start a Campaign CTAs) ---------- */
.btn-launch { position: relative; overflow: visible; }
.btn-launch .rocket-icon {
  display: inline-flex;
  transform: translate(0, 0) rotate(0deg);
  opacity: 1;
}
.btn-launch:hover .rocket-icon,
.btn-launch:focus-visible .rocket-icon {
  animation: rocket-launch 0.85s var(--ease) infinite;
}
.btn-launch .rocket-flame {
  position: absolute;
  left: 1.05rem;
  bottom: 0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  filter: blur(2px);
}
.btn-launch:hover .rocket-flame,
.btn-launch:focus-visible .rocket-flame {
  animation: rocket-flame 0.85s var(--ease) infinite;
}
@keyframes rocket-launch {
  0%   { transform: translate(0, 0) rotate(0deg);   opacity: 1; }
  65%  { transform: translate(5px, -9px) rotate(10deg); opacity: 1; }
  100% { transform: translate(9px, -15px) rotate(10deg); opacity: 0; }
}
@keyframes rocket-flame {
  0%   { opacity: 0; transform: scale(0.4) translateY(0); }
  15%  { opacity: 0.9; transform: scale(1) translateY(0); }
  65%  { opacity: 0.5; transform: scale(0.7) translateY(4px); }
  100% { opacity: 0; transform: scale(0.3) translateY(6px); }
}

/* Click burst — small spark particles spawned by script.js */
.launch-spark {
  position: fixed;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(10, 194, 206, 0.8);
  pointer-events: none;
  z-index: 200;
  animation: spark-burst 0.6s var(--ease) forwards;
}
@keyframes spark-burst {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--spark-x), var(--spark-y)) scale(0.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-launch:hover .rocket-icon,
  .btn-launch:focus-visible .rocket-icon,
  .btn-launch:hover .rocket-flame,
  .btn-launch:focus-visible .rocket-flame { animation: none; }
}

.marquee-track { display: flex; gap: 3rem; white-space: nowrap; }

/* Back to top */
.to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 90;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; color: var(--teal); }

/* ---------- 12) RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); }
  .process-step p { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .about-story { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .contact-box-list { position: static; }
  .service-detail { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --space-2xl: 4.5rem; --space-3xl: 5.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process-line, .process-line-fill { display: none; }
  .process-step { display: flex; gap: var(--space-md); align-items: flex-start; }
  .process-step p { display: block; }
  .hero-meta { gap: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-strip { flex-direction: column; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(11,15,26,0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-md);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: var(--space-md); align-self: flex-start; }
