/* ============================================================
   LaunchLift — Design System
   Palette: Deep Forest Green + Neon Lime (per approved Figma reference)
   Display: Space Grotesk | Body: Inter | Data: JetBrains Mono
   ============================================================ */

:root {
  --ink: #0a1f44;
  --ink-soft: #112255;
  --paper: #f0f7ff;
  --paper-raised: #FFFFFF;
  --marigold: #38bdf8;
  --marigold-deep: #0284c7;
  --teal: #0ea5e9;
  --teal-soft: #e0f2fe;
  --slate: #475569;
  --line: #cbd5e1;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-card: 0 2px 20px rgba(10, 31, 68, 0.07);
  --shadow-lift: 0 14px 40px rgba(10, 31, 68, 0.16);
  --max-width: 1180px;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--marigold); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--slate); }

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

section { padding: 88px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-alt { background: var(--paper-raised); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink p { color: #C7D2C9; }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink .eyebrow, .section-ink .ticker-label, .section-ink .breadcrumb a { color: var(--marigold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-lime { background: var(--marigold); color: var(--ink); }
.btn-lime:hover { background: var(--marigold-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(244,245,240,0.3); }
.btn-ghost:hover { border-color: var(--marigold); color: var(--marigold); }
.btn-outline-ink { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 31, 68,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(240,237,228,0.08);
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper);
}
.logo span { color: var(--marigold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > li { position: relative; list-style: none; }
.nav-links a.top-link {
  color: #D8D9E6; font-size: 0.93rem; font-weight: 500;
  padding: 8px 0; display: flex; align-items: center; gap: 5px;
}
.nav-links a.top-link:hover { color: var(--marigold); }
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; }

.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: -20px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  min-width: 240px;
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.18s ease;
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-panel a {
  display: block; padding: 9px 14px; border-radius: var(--radius-sm);
  color: var(--ink); font-size: 0.9rem;
}
.dropdown-panel a:hover { background: var(--teal-soft); color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--paper); margin: 5px 0; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 62px 0 0 0; background: var(--ink);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 4px;
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-links > li { width: 100%; }
  .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; display: none; padding-left: 12px; }
  .dropdown.open .dropdown-panel { display: block; }
  .dropdown-panel a { color: #C4C6DA; }
  .hamburger { display: block; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 76px 0 40px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy p.lead { font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Signature: rank ticker */
.rank-ticker {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
}
.ticker-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.ticker-track { display: flex; gap: 14px; animation: ticker-scroll 22s linear infinite; width: max-content; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-chip {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 10px 20px; white-space: nowrap;
  height: 44px; min-width: 90px;
}
.ticker-chip.dark { background: var(--ink); border-color: transparent; }
.ticker-chip img { max-height: 26px; max-width: 90px; object-fit: contain; }
.ticker-chip b { color: var(--ink); font-family: var(--font-mono); font-size: 0.85rem; }
.ticker-chip.dark b { color: #fff; }

.stat-row { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-mono); font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.stat-label { font-size: 0.82rem; color: var(--slate); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.card .icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-soft); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card .icon-badge svg { width: 24px; height: 24px; }
.card a.learn { font-weight: 600; color: var(--ink); font-size: 0.9rem; display: inline-flex; gap: 6px; margin-top: 8px; }
.card a.learn:hover { color: var(--teal); }

.logo-chip {
  border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius-sm); padding: 16px 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--slate);
  font-size: 0.95rem; text-align: center;
}

.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Numbered process (real sequences only) */
.process-list { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.process-item {
  counter-increment: step;
  display: grid; grid-template-columns: 60px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-item > div:first-child::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 1rem; color: var(--marigold-deep); font-weight: 700;
}

.checklist { list-style: none; padding: 0; margin: 18px 0; }
.checklist li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink); font-size: 0.95rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ---------- Marketplace hub strip ---------- */
.mkt-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .mkt-hub-grid { grid-template-columns: repeat(2, 1fr); } }
.mkt-pill {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; background: var(--white);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.mkt-pill:hover { border-color: var(--marigold); transform: translateY(-2px); }
.mkt-pill .tag { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); }
.mkt-pill .tag.soon { color: var(--marigold-deep); }
.mkt-pill h4 { margin: 2px 0 0; font-family: var(--font-display); font-size: 1.05rem; }
.mkt-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  margin-bottom: 6px;
}
.mkt-logo-wrap-OLD {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 10px;
  display: flex; align-items: center; justify-content: center;
  height: 56px; margin-bottom: 10px;
}
.mkt-logo-wrap.dark { background: var(--ink); border-color: transparent; }
.mkt-logo-wrap img { max-height: 32px; max-width: 100%; object-fit: contain; }

/* Client / marketplace logo image with text fallback */
.logo-chip { flex-direction: column; gap: 8px; padding: 20px 12px; }
.logo-chip img { max-height: 34px; max-width: 100%; object-fit: contain; }
.logo-chip .logo-fallback { display: none; font-family: var(--font-display); font-weight: 700; color: var(--slate); font-size: 0.92rem; }

/* Hero illustration */
.hero-illustration { width: 100%; height: auto; margin-bottom: 18px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 56px; text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #C4C6DA; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--marigold-deep); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 12px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--slate); margin-bottom: 18px; }
.breadcrumb a { color: var(--teal); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-lift); border: 1px solid var(--line);
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  background: var(--paper-raised);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--teal); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C4C6DA; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--marigold); }
.footer-bottom { border-top: 1px solid rgba(240,237,228,0.1); margin-top: 46px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: #8B8FA6; }
.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(240,237,228,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.social-row a:hover { border-color: var(--marigold); color: var(--marigold); }

/* ---------- Top bar ---------- */
.top-bar { background: var(--ink-soft); color: #C4C6DA; font-size: 0.82rem; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; flex-wrap: wrap; gap: 8px; }
.top-bar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-links a:hover { color: var(--marigold); }
.top-bar-social { display: flex; gap: 12px; }
@media (max-width: 720px) { .top-bar .container { justify-content: center; text-align: center; } }

/* ---------- Floating action buttons ---------- */
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.floating-actions a {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); font-size: 1.3rem; color: #fff;
}
.floating-actions .fab-call { background: var(--marigold); }
.floating-actions .fab-whatsapp { background: #25D366; }

/* ---------- Marquee logos (clients / marketplaces) ---------- */
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: ticker-scroll 30s linear infinite; align-items: center; }
.marquee-track img { height: 42px; max-width: 140px; object-fit: contain; opacity: 0.85; transition: opacity 0.15s ease; }
.marquee-track img:hover { opacity: 1; }

/* ---------- Alternating feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-top: 1px solid var(--line); }
.feature-row:first-of-type { border-top: none; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-visual {
  background: var(--ink); border-radius: var(--radius-lg); padding: 50px;
  display: flex; align-items: center; justify-content: center; min-height: 220px;
}
.feature-visual svg { width: 90px; height: 90px; color: var(--marigold); }
@media (max-width: 800px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; } .feature-row.reverse .feature-visual { order: 0; } }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); }
.stats-band .grid-4 { text-align: center; }
.stats-band .stat-num { color: var(--white); font-size: 2.4rem; }
.stats-band .stat-label { color: #A9ACC2; }

/* ---------- Who we help ---------- */
.who-card { border-top: 3px solid var(--marigold); padding-top: 18px; }
.tag-marquee-wrap { overflow: hidden; margin-top: 40px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.tag-marquee-track { display: flex; gap: 14px; width: max-content; animation: ticker-scroll 40s linear infinite; }
.tag-pill { background: var(--teal-soft); color: var(--teal); font-family: var(--font-mono); font-size: 0.8rem; padding: 8px 18px; border-radius: 999px; white-space: nowrap; }

/* ---------- Testimonials (placeholder) ---------- */
.testimonial-card { background: var(--white); border: 1px dashed var(--line); border-radius: var(--radius-md); padding: 30px; }
.testimonial-card .stars { color: var(--marigold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card p.quote { font-style: italic; color: var(--ink); }
.testimonial-card .who { margin-top: 14px; font-size: 0.85rem; color: var(--slate); font-family: var(--font-mono); }

/* ---------- Two-column link list ---------- */
.link-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .link-columns { grid-template-columns: 1fr; } }
.link-columns ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.link-columns li a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.link-columns li a:hover { color: var(--marigold-deep); }

/* ---------- Map embed ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Eyebrow icon (twin-dot toggle, matches reference) ---------- */
.eyebrow-row { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow-icon { display: inline-flex; align-items: center; }
.eyebrow-row .eyebrow { margin-bottom: 0; }

/* ---------- Sparkle accents ---------- */
.sparkle { position: absolute; color: var(--marigold); }
.sparkle svg { width: 100%; height: 100%; }

/* ---------- Photo collage (placeholder-safe) ---------- */
.photo-slot {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot .photo-fallback {
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--slate);
  font-family: var(--font-mono); font-size: 0.72rem; text-align: center; padding: 10px;
}
.photo-slot .photo-fallback svg { width: 30px; height: 30px; opacity: 0.5; }

.hero-collage { position: relative; height: 420px; }
.hero-collage .photo-slot { position: absolute; }
.hero-collage .p1 { width: 46%; height: 52%; left: 0; bottom: 0; border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0; }
.hero-collage .p2 { width: 40%; height: 40%; right: 6%; top: 0; border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); }
.hero-collage .p3 { width: 34%; height: 34%; right: 0; top: 42%; border-radius: var(--radius-lg); }

/* ---------- HIRE US rotating badge ---------- */
.hire-badge { position: absolute; left: 8%; bottom: 6%; width: 96px; height: 96px; }
.hire-badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hire-badge .arrow-center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 1.1rem;
}

/* ---------- Progress bars (illustrative capability focus, not fixed claims) ---------- */
.progress-row { margin-bottom: 22px; }
.progress-row .progress-label { display: flex; justify-content: space-between; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.progress-track { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--ink); border-radius: 999px; }

/* ---------- Step cards (work process) ---------- */
.step-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.step-card-body { padding: 26px; min-height: 140px; }
.step-card-foot { background: var(--ink); color: #fff; display: flex; justify-content: space-between; padding: 12px 26px; font-family: var(--font-mono); font-size: 0.85rem; }
.step-card-foot b { color: var(--marigold); }

/* ---------- Portfolio-style cards (marketplace tiles reused as case-style cards) ---------- */
.portfolio-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.portfolio-card .pf-media { height: 170px; }
.portfolio-card .pf-body { padding: 20px; }
.portfolio-card .pf-tag { display: inline-block; background: var(--ink); color: #fff; font-size: 0.72rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 12px; }
.portfolio-card .pf-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--marigold); color: var(--ink);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ---------- FAQ with side contact card ---------- */
.faq-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 800px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-side-card { background: var(--ink); color: #fff; border-radius: var(--radius-md); padding: 30px; text-align: center; }
.faq-side-card p { color: #C7D2C9; }
.faq-side-card .bubble { width: 54px; height: 54px; border-radius: 50%; background: var(--marigold); color: var(--ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.faq-phone-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; display: flex; gap: 14px; align-items: center; margin-top: 16px; }
.faq-phone-card .bubble-sm { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-soft); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-item.accent { background: var(--ink); color: #fff; border-radius: var(--radius-md); padding: 20px 24px; border-top: none; }
.faq-item.accent summary { color: #fff; }
.faq-item.accent p { color: #C7D2C9; }
.faq-item.accent summary::after { color: var(--marigold); }

/* ---------- Newsletter strip ---------- */
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-body); }
