/* ==========================================================================
   sonic.css - Sonic Dark design system for soundsystemonrent.in
   Pro-audio aesthetic: ink backgrounds, electric cyan + magenta accents,
   glassy cards, waveform motifs. Fully custom, no framework.
   ========================================================================== */

/* ---- Design tokens ----------------------------------------------------- */
:root {
  /* Surfaces */
  --ink:        #0B0E14;
  --ink-2:      #10141D;
  --ink-3:      #151B27;
  --panel:      rgba(255, 255, 255, 0.04);
  --panel-2:    rgba(255, 255, 255, 0.06);
  --line:       rgba(255, 255, 255, 0.09);
  --line-strong:rgba(255, 255, 255, 0.16);

  /* Brand accents */
  --cyan:       #00E0C6;
  --cyan-soft:  #4af0db;
  --magenta:    #FF3D7F;
  --magenta-soft:#ff6fa0;
  --grad:       linear-gradient(115deg, #00E0C6 0%, #36c6ff 45%, #FF3D7F 100%);
  --grad-soft:  linear-gradient(115deg, rgba(0,224,198,0.18), rgba(255,61,127,0.18));

  /* Text */
  --text:       #F4F6FB;
  --muted:      #9AA6B8;
  --muted-2:    #6f7c90;

  /* Status */
  --green:      #3ddc84;

  /* Type */
  --font-head:  "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:  "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadow / glow */
  --shadow:     0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-sm:  0 8px 24px rgba(0, 0, 0, 0.35);
  --glow-cyan:  0 0 0 1px rgba(0,224,198,0.35), 0 14px 40px rgba(0,224,198,0.18);
  --glow-mag:   0 0 0 1px rgba(255,61,127,0.35), 0 14px 40px rgba(255,61,127,0.18);

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(16px, 4vw, 28px);
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }

/* Ambient background glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60vw 60vw at 85% -10%, rgba(0,224,198,0.10), transparent 60%),
    radial-gradient(50vw 50vw at 0% 20%, rgba(255,61,127,0.08), transparent 60%);
}

/* ---- Layout helpers ---------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; z-index: 1; padding: clamp(56px, 8vw, 110px) 0; }
.section.tight { padding-block: clamp(40px, 6vw, 70px); }
.center { text-align: center; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan);
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(0,224,198,0.08);
  border: 1px solid rgba(0,224,198,0.25);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(0,224,198,0.6); animation: pulse 2.2s infinite; }

.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin: 18px 0 14px; }
.section-title .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { color: var(--muted); max-width: 620px; font-size: 1.05rem; }
.center .section-sub { margin-inline: auto; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: #04110f; background: var(--grad); box-shadow: 0 10px 30px rgba(0,224,198,0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,224,198,0.4); }
.btn-ghost { color: var(--text); background: var(--panel); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn-wa { color: #04110f; background: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,0.25); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.4); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }

/* ---- Top strip --------------------------------------------------------- */
.topbar { position: relative; z-index: 2; background: var(--ink-2); border-bottom: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 9px; }
.topbar a { color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--cyan); }
.topbar .right { display: flex; gap: 20px; }
.topbar svg { width: 15px; height: 15px; }
@media (max-width: 760px) { .topbar .left { display: none; } .topbar .container { justify-content: center; } }

/* ---- Navbar ------------------------------------------------------------ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(11,14,20,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.02em; }
.brand .mark { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; box-shadow: var(--glow-cyan); }
.brand .mark svg { width: 21px; height: 21px; }
.brand b { color: var(--cyan); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--r-sm); color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color .2s, background .2s; }
.nav-links > li > a:hover { color: var(--text); background: var(--panel); }
.nav-links .caret { width: 14px; height: 14px; opacity: .7; }

.has-drop { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--r);
  padding: 8px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 13px; border-radius: var(--r-sm); color: var(--muted); font-size: 0.92rem; transition: color .2s, background .2s; }
.dropdown a:hover { color: var(--text); background: var(--panel-2); padding-left: 17px; }
.dropdown .grp { font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); padding: 10px 13px 4px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--panel); border: 1px solid var(--line-strong); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.nav.open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 14px var(--gut) 22px;
    max-height: calc(100vh - 70px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .25s ease;
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links > li > a { padding: 13px 12px; font-size: 1rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 2px 0 6px 10px; min-width: 0; }
  .has-drop > a .caret { display: none; }
  .burger { display: block; }
  .nav-cta .btn:not(.btn-wa) { display: none; }
}

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; z-index: 1; overflow: hidden; padding: clamp(48px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); }
.hero::after { content: ""; position: absolute; left: 50%; bottom: -40%; width: 120%; height: 80%; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(0,224,198,0.10), transparent); pointer-events: none; z-index: 0; }
.hero-slider { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.hero-slider .slide.is-active { opacity: 1; }
.hero-slider::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(11,14,20,0.78), rgba(11,14,20,0.92) 70%, var(--ink)),
  linear-gradient(110deg, rgba(11,14,20,0.95) 30%, rgba(11,14,20,0.45)); }
.hero .hero-grid { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); margin: 20px 0 18px; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--font-head); font-size: 1.5rem; color: var(--text); }
.hero-trust .ht span { font-size: 0.82rem; color: var(--muted); }
.hero-trust .stars { color: #FFC93C; letter-spacing: 2px; }

/* Quote card in hero */
.quote-card { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow); position: relative; }
.quote-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.quote-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.quote-card .qsub { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.field .input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; color: var(--text);
  background: rgba(0,0,0,0.25); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
}
.field .input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field .input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,224,198,0.15); }
.field select option { background: var(--ink-3); color: var(--text); }
.form-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 10px; text-align: center; }
.lead-success { background: rgba(61,220,132,0.12); color: #b7f5d0; border: 1px solid rgba(61,220,132,0.4); border-left: 4px solid var(--green); padding: 18px 20px; border-radius: var(--r-sm); font-weight: 600; }

/* Waveform */
.waveform { display: flex; align-items: flex-end; gap: 4px; height: 30px; margin-top: 8px; }
.waveform i { width: 4px; border-radius: 3px; background: var(--grad); opacity: .85; animation: wave 1.1s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .waveform i { animation: none; } .eyebrow .dot { animation: none; } }

@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .quote-card { order: -1; } }

/* ---- Trust bar --------------------------------------------------------- */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 26px 14px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.4rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 680px) { .statbar { grid-template-columns: repeat(2, 1fr); } }

/* ---- Cards / grids ----------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-3, .cols-2 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; transition: transform .25s ease, border-color .25s, box-shadow .25s; overflow: hidden;
}
.card:hover { transform: translateY(-7px); border-color: rgba(0,224,198,0.4); box-shadow: var(--glow-cyan); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--line-strong); margin-bottom: 16px; }
.card .ic svg { width: 26px; height: 26px; color: var(--cyan); }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--cyan); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .more svg { transform: translateX(4px); }

/* Image-top cards */
.card-media { margin: -26px -26px 18px; height: 188px; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.07); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,14,20,0.55)); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery a { position: relative; display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a:hover img { transform: scale(1.08); }
.gallery .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; background: linear-gradient(transparent, rgba(0,0,0,0.82)); }
.gallery a:hover { border-color: rgba(0,224,198,0.5); box-shadow: var(--glow-cyan); }
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* Tag chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { padding: 9px 16px; border-radius: var(--r-pill); background: var(--panel); border: 1px solid var(--line-strong); color: var(--muted); font-size: 0.88rem; transition: all .2s; }
.chip:hover { color: var(--text); border-color: var(--cyan); box-shadow: var(--glow-cyan); }

/* Brand strip */
.brandstrip { display: flex; flex-wrap: wrap; gap: 12px 14px; justify-content: center; }
.brandstrip .b { font-family: var(--font-head); font-weight: 600; color: var(--muted); padding: 10px 18px; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--panel); }

/* ---- Split feature (why us) ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.feat-list { display: grid; gap: 16px; margin-top: 8px; }
.feat { display: flex; gap: 14px; }
.feat .tick { flex: none; width: 28px; height: 28px; border-radius: 8px; background: rgba(0,224,198,0.12); border: 1px solid rgba(0,224,198,0.3); display: grid; place-items: center; }
.feat .tick svg { width: 16px; height: 16px; color: var(--cyan); }
.feat h4 { font-size: 1.05rem; margin-bottom: 2px; }
.feat p { color: var(--muted); font-size: 0.92rem; }

/* ---- Process steps ----------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; position: relative; }
.step .n { width: 46px; height: 46px; border-radius: 13px; background: var(--grad); color: #04110f; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 14px; box-shadow: 0 8px 20px rgba(0,224,198,0.25); }
.step h4 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---- Testimonials ------------------------------------------------------ */
.quote-t { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.quote-t .stars { color: #FFC93C; letter-spacing: 2px; margin-bottom: 12px; }
.quote-t p { font-size: 1rem; line-height: 1.8; }
.quote-t .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote-t .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: #04110f; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.quote-t .who b { display: block; font-size: 0.95rem; }
.quote-t .who span { color: var(--muted); font-size: 0.82rem; }

/* ---- FAQ --------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--panel); border: 1px solid var(--line-strong); display: grid; place-items: center; transition: .25s; color: var(--cyan); font-size: 1.1rem; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--grad); color: #04110f; }
.faq details > div { padding: 0 22px 20px; color: var(--muted); }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band { position: relative; z-index: 1; }
.cta-inner { background: linear-gradient(120deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: clamp(34px, 5vw, 60px); text-align: center; overflow: hidden; position: relative; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40vw 40vw at 80% 0%, rgba(0,224,198,0.14), transparent 60%), radial-gradient(40vw 40vw at 10% 100%, rgba(255,61,127,0.12), transparent 60%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.cta-inner p { color: var(--muted); margin: 12px auto 26px; max-width: 560px; position: relative; }
.cta-inner .hero-cta { justify-content: center; position: relative; }

/* ---- Footer ------------------------------------------------------------ */
.footer { position: relative; z-index: 1; background: var(--ink-2); border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 0.82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 0.93rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer .about p { color: var(--muted); font-size: 0.93rem; margin: 14px 0 18px; max-width: 320px; }
.footer .soc { display: flex; gap: 10px; }
.footer .soc a { width: 38px; height: 38px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .2s; }
.footer .soc a:hover { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.footer .soc svg { width: 18px; height: 18px; }
.fcontact li { display: flex; gap: 10px; color: var(--muted); font-size: 0.93rem; margin-bottom: 12px; }
.fcontact svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 3px; }
.copyright { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid var(--line); padding: 22px 0; }
.copyright .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }
.copyright a { color: var(--cyan); }

/* ---- Breadcrumb -------------------------------------------------------- */
.crumb { position: relative; z-index: 1; border-bottom: 1px solid var(--line); }
.crumb .container { display: flex; align-items: center; gap: 9px; padding-block: 14px; font-size: 0.86rem; color: var(--muted); flex-wrap: wrap; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--cyan); }
.crumb .sep { color: var(--muted-2); }
.crumb [aria-current] { color: var(--text); }

/* ---- Page hero (interior) --------------------------------------------- */
.page-hero { position: relative; z-index: 1; padding: clamp(40px, 6vw, 72px) 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--muted); max-width: 640px; margin-top: 14px; font-size: 1.08rem; }
.page-hero .hero-cta { margin-top: 26px; }
.page-hero.has-img .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 52px); align-items: center; }
.page-hero .ph-img { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.page-hero .ph-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; }
.page-hero .ph-slider { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.page-hero .ph-slider .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.page-hero .ph-slider .slide.is-active { opacity: 1; }
.page-hero.has-img p { max-width: none; }
@media (max-width: 860px) { .page-hero.has-img .container { grid-template-columns: 1fr; } .page-hero .ph-img, .page-hero .ph-slider { order: -1; } }

/* ---- Client logos marquee --------------------------------------------- */
.clients { 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); }
.clients-track { display: flex; align-items: center; gap: 22px; width: max-content; animation: marquee 38s linear infinite; }
.clients:hover .clients-track { animation-play-state: paused; }
/* Logos sit on white tiles so any background (white, gray, transparent) reads cleanly on the dark theme. */
.clients img { height: 64px; width: auto; max-width: 168px; object-fit: contain; background: #fff; border-radius: 10px; padding: 11px 20px; opacity: 0.9; transition: transform .3s, opacity .3s, box-shadow .3s; }
.clients img:hover { opacity: 1; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .clients-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; } }

/* Hero table-of-contents tiles (hub directory) */
.hero-toc { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; justify-content: center; }
.hero-toc a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: var(--r-pill); background: var(--panel); border: 1px solid var(--line-strong); font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; transition: transform .2s, border-color .2s, box-shadow .2s; }
.hero-toc a:hover { transform: translateY(-2px); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.hero-toc svg { width: 18px; height: 18px; color: var(--cyan); }
.hero-center { position: relative; z-index: 1; text-align: center; max-width: 880px; margin-inline: auto; }
.hero-center .lede { margin-inline: auto; }
.hero-center .hero-cta { justify-content: center; }

/* Two-column quote band (form + reasons-to-contact) */
.quote-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 54px); align-items: center; }
@media (max-width: 900px) { .quote-split { grid-template-columns: 1fr; } .quote-split .quote-card { order: -1; } }
.quote-pitch .section-title { margin-top: 14px; }
.pitch-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.pitch-stats .ps { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.pitch-stats .ps b { display: block; font-family: var(--font-head); font-size: 1.7rem; line-height: 1.1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pitch-stats .ps span { color: var(--muted); font-size: 0.84rem; }
.pitch-list { display: grid; gap: 11px; margin-bottom: 24px; }
.pitch-list li { display: flex; gap: 11px; align-items: flex-start; color: #cdd5e2; font-size: 0.96rem; }
.pitch-list svg { width: 20px; height: 20px; color: var(--cyan); flex: none; margin-top: 2px; }

/* ---- Content + sidebar layout (interior pages) ------------------------ */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(28px, 4vw, 48px); align-items: start; }
@media (max-width: 980px) { .layout { grid-template-columns: 1fr; } }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 32px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { color: #cdd5e2; margin-bottom: 16px; }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { position: relative; padding-left: 32px; color: #cdd5e2; }
.prose ul.ticks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 6px; background: rgba(0,224,198,0.14); border: 1px solid rgba(0,224,198,0.35); }
.prose ul.ticks li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 5px; height: 9px; border: solid var(--cyan); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.prose a { color: var(--cyan); }
.prose a:hover { text-decoration: underline; }

.aside { position: sticky; top: 90px; display: grid; gap: 18px; }
.panel { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.panel h3 { font-size: 1.1rem; margin-bottom: 14px; }
.panel.accent { border-color: rgba(0,224,198,0.35); box-shadow: var(--glow-cyan); }
.spec { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.spec:last-child { border-bottom: none; }
.spec span { color: var(--muted); }
.spec b { color: var(--text); font-family: var(--font-head); }

/* ---- Floating WhatsApp + mobile bottom nav ---------------------------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 760px) { .wa-float { bottom: 78px; right: 16px; width: 52px; height: 52px; } .wa-float svg { width: 27px; height: 27px; } }

.mobile-nav { display: none; }
@media (max-width: 760px) {
  .mobile-nav { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; background: rgba(11,14,20,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .mobile-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px; font-size: 0.68rem; color: var(--muted); }
  .mobile-nav a svg { width: 20px; height: 20px; }
  .mobile-nav a:active, .mobile-nav a:hover { color: var(--cyan); }
  body { padding-bottom: 62px; }
}

/* ---- Animations -------------------------------------------------------- */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,224,198,0.55); } 70% { box-shadow: 0 0 0 9px rgba(0,224,198,0); } 100% { box-shadow: 0 0 0 0 rgba(0,224,198,0); } }
@keyframes wave { 0%, 100% { height: 30%; } 50% { height: 100%; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
