/* ==========================================================================
   FUTURE OPS STUDIO — Design System
   Palette: white + torch orange + purple accents, black text
   Type: Georgia serif throughout, bold headers
   ========================================================================== */

:root {
  --white:      #FFFFFF;
  --bg:         #FAFAFA;
  --ink:        #000000;
  --ink-soft:   #2B2B2B;
  --burnt:      #FF6A00;
  --burnt-dark: #D95700;
  --purple:     #6B2FA6;
  --purple-dark:#54237F;
  --line:       #E9E9EB;

  --font: Georgia, 'Times New Roman', serif;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85em 1.7em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--burnt);
  color: var(--white);
}
.btn-primary:hover { background: var(--burnt-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 106, 0, 0.32); }

.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-ghost-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.brand span { color: var(--burnt); }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-brand-logo { height: 34px; width: auto; display: block; margin-bottom: 0.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); font-weight: 700; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero Banner (landscape) ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 62vw, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.08) 45%, rgba(0,0,0,0) 65%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(3rem, 8vw, 4rem) 0;
}

.eyebrow-light {
  color: var(--burnt);
}

.hero-banner h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-top: 1rem;
}
.hero-banner h1 span { color: var(--burnt); }

.hero-sub-light {
  color: rgba(255,255,255,0.86);
}

.hero-banner .hero-sub {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  max-width: 42ch;
  line-height: 1.65;
}

.hero-banner .hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero-banner { min-height: 480px; }
  .hero-banner-img { object-position: center 15%; }
}

/* ---------- Section shells ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg); }

.section-head { max-width: 620px; margin-bottom: clamp(2.2rem, 5vw, 3rem); }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 0.7rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 21, 26, 0.06);
  border-color: #DEDEE1;
}

.service-card h3 { font-size: 1.08rem; margin-top: 0.9rem; }
.service-card p { margin-top: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }

.service-tools { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tools span {
  font-size: 0.72rem;
  background: var(--bg);
  padding: 0.25em 0.65em;
  border-radius: 6px;
  color: var(--ink-soft);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--burnt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.service-icon.icon-purple {
  background: rgba(107, 47, 166, 0.12);
  color: var(--purple);
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.process-step { padding-top: 0.2rem; }

.process-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--burnt);
}

.process-step h3 { font-size: 1.05rem; margin-top: 0.5rem; }
.process-step p { margin-top: 0.5rem; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.portrait-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.portrait-frame img { width: 100%; height: auto; }

.about-grid .portrait-frame { border-radius: 16px; }

/* ---------- Founder split (two-column: image | text) ---------- */
.founder-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.founder-media {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.founder-media-glow {
  position: absolute;
  inset: -8%;
  z-index: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 106, 0, 0.32), transparent 60%),
    radial-gradient(circle at 78% 78%, rgba(107, 47, 166, 0.28), transparent 58%);
  filter: blur(38px);
  animation: founderGlowPulse 7s ease-in-out infinite;
}

@keyframes founderGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.founder-portrait.portrait-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
  transform: rotate(-2.2deg);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1), box-shadow 0.5s ease;
}
.founder-portrait.portrait-frame:hover {
  transform: rotate(0deg) scale(1.025);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}
.founder-portrait img { transition: transform 0.6s ease; }
.founder-portrait:hover img { transform: scale(1.04); }

.founder-badge {
  position: absolute;
  right: -1rem;
  bottom: -1.1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 200px;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  animation: founderBadgeFloat 4.5s ease-in-out infinite;
}
.founder-badge strong { font-size: 0.82rem; line-height: 1.3; }
.founder-badge span { font-size: 0.68rem; color: rgba(255, 255, 255, 0.68); }

@keyframes founderBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.founder-copy h2 { margin-top: 0.5rem; font-size: clamp(2rem, 4vw, 2.9rem); }
.founder-copy p { margin-top: 1.1rem; color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }
.founder-copy .stats-row { margin-top: 1.8rem; }

/* ---------- About stacked layout (heading -> image -> text) ---------- */
.about-stack {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-stack-head { margin-bottom: 1.8rem; }
.about-stack-head h2 { margin-top: 0.6rem; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.about-stack .about-portrait {
  width: 100%;
  max-width: 320px;
  margin-bottom: 2rem;
}
.about-stack .about-copy { text-align: left; width: 100%; }
.about-stack .stats-row { justify-content: center; }
.about-stack .hero-actions { justify-content: center; }

.about-copy p { color: var(--ink-soft); line-height: 1.65; font-size: 1rem; }
.about-copy p + p { margin-top: 1rem; }

.about-meta {
  margin-top: 1.8rem;
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.about-meta strong { display: block; font-size: 1.2rem; }
.about-meta small { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Testimonial placeholder ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial-card {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 2rem 1.6rem;
  text-align: center;
  color: var(--ink-soft);
  background: var(--white);
}
.testimonial-card p { font-size: 1rem; font-style: italic; }
.testimonial-card small { display: block; margin-top: 0.9rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--ink); color: var(--white); padding: clamp(2.6rem, 6vw, 4rem) 0; }
.cta-banner .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); max-width: 22ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-top {
  padding-bottom: 2.2rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-brand { font-size: 1.15rem; font-weight: 800; }
.footer-brand span { color: var(--burnt); }
.footer-tag { margin-top: 0.8rem; font-size: 0.88rem; color: var(--ink-soft); max-width: 42ch; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--ink-soft); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-soft); flex-wrap: wrap; gap: 1rem; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(2.4rem, 5vw, 3.5rem) 0 2.2rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 0.8rem; }
.page-hero p { margin-top: 1rem; color: var(--ink-soft); max-width: 52ch; font-size: 1rem; line-height: 1.6; }

/* ---------- Portfolio grid ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 21, 26, 0.07);
}

.portfolio-card .tag { font-size: 0.72rem; font-weight: 600; color: var(--burnt); text-transform: uppercase; letter-spacing: 0.03em; }
.portfolio-placeholder {
  flex: 1;
  margin: 1.1rem 0;
  border: 1px dashed var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.4rem;
  background: var(--bg);
}
.portfolio-shot {
  margin: 1.1rem 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 170px;
}
.portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.portfolio-card h3 { font-size: 1.2rem; }
.portfolio-card p.desc { margin-top: 0.4rem; font-size: 0.9rem; color: var(--ink-soft); }

.portfolio-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--burnt);
  transition: transform 0.2s ease;
}
.portfolio-link:hover { transform: translateX(2px); }

/* ---------- Hero Plain (text-only) ---------- */
.hero-plain {
  background: var(--ink);
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
}

.hero-social-rail {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}
.hero-social-rail a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hero-social-rail a:hover { border-color: var(--burnt); color: var(--burnt); }

.hero-plain h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  max-width: 16ch;
}
.hero-plain h1 span { color: var(--burnt); }

.hero-plain .hero-sub {
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}

@media (max-width: 720px) {
  .hero-social-rail { display: none; }
}

/* ---------- Dark section shell ---------- */

/* ---------- Stats row ---------- */
.stats-row {
  margin-top: 1.8rem;
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.stats-row strong {
  display: block;
  font-size: 1.25rem;
  color: var(--white);
}
.stats-row small {
  font-size: 0.78rem;
  color: #C9C0B4;
}

/* ---------- Browser-mockup portfolio cards ---------- */
.browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.browser-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.browser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(22,21,26,0.08);
}
.browser-bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.browser-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line-dark, #D8CDBB);
}
.browser-shot {
  height: 150px;
  overflow: hidden;
  background: var(--bg);
}
.browser-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.browser-info { padding: 1.4rem; }
.browser-info h3 { font-size: 1.1rem; }
.browser-info p { margin-top: 0.5rem; font-size: 0.88rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .browser-grid { grid-template-columns: 1fr; }
}

/* ---------- Services 6-col variant ---------- */
.services-grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .services-grid-6 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid-6 { grid-template-columns: 1fr; }
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
}
.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.2rem; }
.why-item {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.why-item:first-of-type { border-top: none; }
.why-num { color: var(--burnt); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.why-item strong { color: var(--white); font-size: 0.95rem; display: block; }
.why-item p { color: #C9C0B4; font-size: 0.86rem; margin-top: 0.3rem; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Industries marquee ---------- */
.industries-marquee {
  margin-top: 1.8rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.industries-track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  animation: industriesScroll 28s linear infinite;
}
.industries-marquee:hover .industries-track { animation-play-state: paused; }
.industries-track span {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.6em 1.3em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.industries-track span:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
@keyframes industriesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .industries-track { animation: none; }
}

/* ---------- Highlight CTA (orange band) ---------- */
.highlight-cta {
  background: var(--burnt);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.highlight-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}
.highlight-cta h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.2rem); }
.highlight-cta p { color: rgba(255,255,255,0.85); margin-top: 0.9rem; font-size: 0.92rem; }
.highlight-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}
.highlight-price { color: var(--burnt); font-size: 1.5rem; font-weight: 800; }
.highlight-card h3 { font-size: 1.1rem; margin-top: 0.5rem; }
.highlight-card p { color: var(--ink-soft); font-size: 0.88rem; margin: 0.6rem 0 1.2rem; }

@media (max-width: 900px) {
  .highlight-cta-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  cursor: pointer;
  font-family: var(--font);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.faq-icon {
  color: var(--burnt);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.faq-item[aria-expanded="true"] .faq-a {
  max-height: 200px;
  margin-top: 0.9rem;
}

/* ---------- Dark testimonials ---------- */
.testimonial-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.testimonial-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.8rem;
}
.testimonial-card-dark p {
  color: #E5E0D8;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card-dark strong {
  display: block;
  margin-top: 1.1rem;
  color: var(--burnt);
  font-size: 0.95rem;
}
.testimonial-card-dark small {
  display: block;
  margin-top: 0.3rem;
  color: #8A8178;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .testimonial-grid-dark { grid-template-columns: 1fr; }
}

/* ---------- Video placeholder ---------- */
.video-section {
  background: var(--ink);
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}
.video-placeholder {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
}
.video-placeholder-note {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem;
  pointer-events: none;
}

/* ---------- Image carousel ---------- */
.carousel {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 4/5;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--white); width: 20px; border-radius: 4px; }

/* ---------- Light-mode variants (for sections converted from dark) ---------- */
.stats-row-light strong { color: var(--ink); }
.stats-row-light small { color: var(--ink-soft); }

.why-card-light {
  background: var(--white);
  border: 1px solid var(--line);
}
.why-card-light h3 { color: var(--ink); }
.why-card-light .why-item { border-top-color: var(--line); }
.why-card-light strong { color: var(--ink); }
.why-card-light p { color: var(--ink-soft); }

.testimonial-card-light {
  background: var(--white);
  border: 1px solid var(--line);
}
.testimonial-card-light p { color: var(--ink); }
.testimonial-card-light strong { color: var(--burnt); }
.testimonial-card-light small { color: var(--ink-soft); }

/* ---------- Legal pages ---------- */
.legal-block {
  margin-bottom: 2.2rem;
}
.legal-block h2 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.legal-block p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.legal-block ul {
  margin: 0 0 0.8rem;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-block li { margin-bottom: 0.4rem; }

/* ---------- Currency toggle ---------- */
.currency-toggle-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.currency-toggle {
  display: inline-flex;
  background: var(--bg);
  border-radius: 30px;
  padding: 4px;
}

.currency-btn {
  border: none;
  background: transparent;
  padding: 0.55em 1.6em;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.currency-btn.active {
  background: var(--burnt);
  color: var(--white);
}

.pricing-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 21, 26, 0.07);
}

.pricing-card.featured { border-color: var(--burnt); box-shadow: 0 0 0 1px var(--burnt); }
.pricing-card.featured .pricing-badge {
  display: inline-block;
  background: var(--burnt);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3em 0.8em;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  width: fit-content;
}

.pricing-name { font-size: 1.25rem; font-weight: 700; }
.pricing-price { margin-top: 0.5rem; font-size: 2rem; font-weight: 800; color: var(--ink); }
.pricing-price sup { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.pricing-desc { margin-top: 0.6rem; font-size: 0.88rem; color: var(--ink-soft); }

.pricing-features { list-style: none; margin: 1.5rem 0 1.8rem; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.pricing-features li { font-size: 0.9rem; padding-left: 1.3rem; position: relative; color: var(--ink-soft); }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--burnt); font-weight: 700; }

.pricing-note {
  margin-top: 2.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--bg);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.field label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.8em 1em;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 8px;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--burnt);
  outline-offset: 1px;
  border-color: var(--burnt);
}

.contact-info-card { background: var(--bg); border-radius: 14px; padding: 2.2rem; }
.contact-info-card h3 { font-size: 1.2rem; }

.contact-channel { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.contact-channel:first-of-type { border-top: none; padding-top: 0; margin-top: 1.6rem; }

.channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-channel small { display: block; color: var(--ink-soft); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.contact-channel a, .contact-channel span.value { font-size: 0.94rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .about-portrait { max-width: 340px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .founder-split { grid-template-columns: 1fr; gap: 3rem; }
  .founder-media { max-width: 320px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.2rem; }
  .cta-banner .wrap { flex-direction: column; align-items: flex-start; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered child entrance — pair with .reveal on the same element */
.stagger-children > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(.2,.7,.2,1), transform 0.65s cubic-bezier(.2,.7,.2,1);
}
.stagger-children.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.23s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.32s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.41s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .stagger-children > * { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer { position: fixed; inset: 0; background: var(--white); z-index: 200; display: none; flex-direction: column; padding: 1.6rem var(--gutter); }
.mobile-drawer.open { display: flex; }
.mobile-drawer-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer ul { list-style: none; margin: 2.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-drawer ul a { font-size: 1.6rem; font-weight: 700; }
.drawer-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink); }
