/* ============================================================
   DESIGN TOKENS — warm light theme (BeaSocial-inspired)
   ============================================================ */
:root {
  --bg:           #FAFAF8;
  --bg-2:         #F4F3F0;
  --bg-3:         #EDECEA;
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.16);

  --text:         #1A1714;
  --text-2:       #5C564F;
  --text-3:       #9C948C;

  --accent:       #E8471A;
  --accent-2:     #F06030;
  --accent-glow:  rgba(232,71,26,0.20);

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;

  --nav-h:        94px;
  --banner-h:     40px;
  --transition:   0.2s ease;

  --font-serif:   'Raveo', Georgia, serif;
  --font-sans:    'Raveo', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.serif { font-family: var(--font-serif); font-weight: 400; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: var(--font-sans);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  justify-content: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 0 0 1px var(--accent) inset;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 24px var(--accent-glow), 0 0 0 1px var(--accent-2) inset;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  box-shadow: 0 0 0 1px var(--border) inset;
}
.btn-ghost:hover {
  color: var(--text);
  box-shadow: 0 0 0 1px var(--border-hover) inset;
  background: rgba(0,0,0,0.02);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 120px 0; }
.section-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,71,26,0.08);
  color: var(--accent);
  border: 1px solid rgba(232,71,26,0.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text);
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
/* ── ANNOUNCEMENT BANNER ──────────────────────────── */
.announce-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--banner-h);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.announce-banner.hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.announce-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}
.announce-link:hover { opacity: 0.85; }
.announce-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.7;
}
.announce-close:hover { opacity: 1; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: calc(var(--banner-h) + 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  height: 70px;
  width: calc(100% - 48px);
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 8px 0 20px;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-cta { flex-shrink: 0; }
.nav-cta-pill {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  height: 44px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-cta-pill:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  gap: 4px;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { margin-top: 12px; align-self: stretch; }
.nav-mobile.open {
  max-height: 600px;
  padding: 16px 32px 24px;
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav {
    top: var(--banner-h);
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
  }
  .nav-inner { padding: 0 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--banner-h) + var(--nav-h) + 60px) 24px 48px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(232,71,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 90%, rgba(240,96,48,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.hero-orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,71,26,0.18) 0%, transparent 70%);
  top: -120px; left: 50%; transform: translateX(-60%);
}
.hero-orb--2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(240,96,48,0.12) 0%, transparent 70%);
  top: 30%; right: -80px;
}
.hero-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,71,26,0.10) 0%, transparent 70%);
  bottom: 8%; left: -60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(22,163,74,0.5);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  will-change: transform;
  font-family: var(--font-serif);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: var(--text);
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.hero-sub {
  will-change: transform;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.hero-trust-dots {
  display: inline-flex;
}
.hero-trust-dots span {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-left: -8px;
}
.hero-trust-dots span:first-child { margin-left: 0; }
.hero-trust-dots span:nth-child(2) { background: linear-gradient(135deg, #d4a574, #c89968); }
.hero-trust-dots span:nth-child(3) { background: linear-gradient(135deg, #6b8e7f, #4a6b5d); }
.hero-trust-dots span:nth-child(4) { background: linear-gradient(135deg, #b87f4f, #9a6938); }

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 36px; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   WHY US — editorial 2-col
   ============================================================ */
.why-section {
  padding: 120px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left { position: sticky; top: 120px; }
.why-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  margin-top: 16px;
}
.why-heading em {
  font-style: italic;
  color: var(--accent);
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-intro {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.why-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.why-list-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.why-list-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS — numbered process
   ============================================================ */
.process-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 10%, var(--border) 90%, transparent);
  pointer-events: none;
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  transition: all var(--transition);
}
.process-step:hover .step-number {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 8px;
}
.process-step p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   SEE US IN ACTION — phone carousel (warm restyle)
   ============================================================ */
.action-section {
  padding: 120px 0;
  background-color: #1A1714;
  background-image: none;
}
.action-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 64px;
  color: #fff;
}
.phones-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.phones-track {
  display: flex;
  gap: 24px;
  overflow: visible;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.phones-track .phone-wrap {
  flex: 0 0 calc(25% - 18px);
  min-width: 180px;
}
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-mockup {
  width: 100%;
  max-width: 240px;
  background: #1a1a1a;
  border-radius: 36px;
  border: 3px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(60,40,20,0.12), 0 8px 16px rgba(60,40,20,0.06);
  position: relative;
  aspect-ratio: 9/19;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.phone-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(60,40,20,0.18), 0 12px 24px rgba(60,40,20,0.08);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
}
.phone-screen video,
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   WORK / CASE STUDIES
   ============================================================ */
.work-section { padding: 120px 0; background: var(--bg); }

/* ============================================================
   SELECTED WORK SECTION
   ============================================================ */
.selected-work-section {
  padding: 120px 0;
  background: var(--bg-2);
}
.selected-work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.selected-work-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.selected-work-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}
.selected-work-title em {
  font-style: italic;
  color: var(--accent);
}
.selected-work-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.selected-work-all:hover { opacity: 0.7; }
.selected-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sw-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.sw-card--link { text-decoration: none; color: inherit; cursor: pointer; }
.sw-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}
.sw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sw-card-img--emf    { object-position: 50% 55%; }
.sw-card-img--fuzzoff { object-position: 50% 20%; }
.sw-card-img--petibo  { object-position: 50% 40%; }
.sw-card-img--exploded { object-position: 50% 45%; }
.sw-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sw-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sw-card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.sw-card-result {
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}
.sw-card-brand {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.sw-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.sw-card-stats {
  display: flex;
  gap: 28px;
  padding-top: 16px;
  margin-top: auto;
}
.sw-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sw-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sw-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  perspective: 1200px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(60,40,20,0.08);
}
.case-card--large {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(232,71,26,0.06) 0%, #fff 60%);
  border-color: rgba(232,71,26,0.20);
}
.case-tag {
  display: inline-block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-brand {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}
.case-result {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.case-desc { font-size: 15px; color: var(--text-2); line-height: 1.7; flex: 1; }

.case-growth-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: auto;
}
.case-growth-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.case-growth-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.case-growth-val { font-size: 15px; font-weight: 700; color: var(--text-2); letter-spacing: -0.01em; }
.case-growth-val--up { color: var(--accent); }
.case-growth-arrow { color: var(--accent); font-size: 18px; flex-shrink: 0; }

.brands-section {
  padding: 0;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
}
.brands-label-wrap { text-align: center; margin-bottom: 20px; }
.brands-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin: 0;
}
.brands-ticker {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: brandScroll 28s linear infinite;
  will-change: transform;
}
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  border-radius: 4px;
  flex-shrink: 0;
  pointer-events: none;
}
.brands-grid { display: none; }
.brand-placeholder { display: none; }
.featured-case-section {
  padding: 100px 0;
  background: #E8471A;
  border: none;
}
.featured-case-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.featured-case-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.featured-case-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.70);
  display: block;
}
.featured-case-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.featured-case-title em {
  font-style: italic;
  color: #FFFFFF;
}
.featured-case-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin: 0;
  max-width: 480px;
}
.featured-case-stats {
  display: flex;
  gap: 40px;
  padding-top: 8px;
}
.featured-case-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.featured-case-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1;
}
.featured-case-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.featured-case-cta {
  align-self: start;
  background: #FFFFFF;
  color: #E8471A;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.featured-case-cta:hover {
  background: rgba(255,255,255,0.88);
}
.featured-case-media {
  position: relative;
}
.featured-case-img-wrap {
  width: 100%;
  height: 640px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.featured-case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

/* ============================================================
   ABOUT — paid ads / founder
   ============================================================ */
.about-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   MEET THE FOUNDER
   ============================================================ */
.founder-section {
  padding: 100px 0;
  background: #1A1714;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.founder-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.founder-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}
.founder-photo {
  display: flex;
  justify-content: center;
}
.founder-photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.30);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.founder-photo-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.30);
}
.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 28px;
  background: #fff;
  color: #E8471A;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease;
  align-self: start;
}
.founder-cta:hover { background: rgba(255,255,255,0.88); }
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.about-desc {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ads-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}
.ads-stat {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ads-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.ads-stat-label {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.ads-dashboard-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(60,40,20,0.12);
  border: 1px solid var(--border);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 120px 0; background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  min-height: 44px;
}
.faq-q:hover { color: var(--accent); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 240px; padding: 0 4px 24px; }
.faq-a p { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 640px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232,71,26,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--text);
}
.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: var(--text-3);
}
.cta-trust strong { color: var(--text); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-img  { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tagline   { font-size: 14px; color: var(--text-3); margin-bottom: 24px; line-height: 1.6; max-width: 280px; }
.footer-social    { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-width: 44px;
  min-height: 44px;
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 14px; color: var(--text-3); padding: 6px 0; transition: color var(--transition); min-height: 32px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
  color: var(--text-3);
}

/* ============================================================
   BUTTON SHINE
   ============================================================ */
.btn-shine {
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
  pointer-events: none;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: linear-gradient(to top, var(--bg) 80%, rgba(250,250,248,0.6));
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s, color 0.2s;
  box-shadow: 0 4px 14px rgba(60,40,20,0.08);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
@media (min-width: 769px) {
  .scroll-top { bottom: 24px; }
}

/* ============================================================
   FLOATING EMAIL BUTTON
   ============================================================ */
.floating-email {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 996;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}
.floating-email:hover { transform: translateY(-2px); background: var(--accent-2); box-shadow: 0 10px 28px rgba(232,71,26,0.35); }
@media (min-width: 769px) {
  .floating-email { display: inline-flex; bottom: 24px; }
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 80px;
  left: 16px;
  right: 16px;
  max-width: 480px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(60,40,20,0.12);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-notice.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.cookie-notice p { font-size: 13px; color: var(--text-2); line-height: 1.5; flex: 1; margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cookie-dismiss { font-size: 12px; color: var(--text-3); text-decoration: underline; cursor: pointer; }
.cookie-dismiss:hover { color: var(--text); }
@media (min-width: 769px) {
  .cookie-notice { bottom: 24px; left: 24px; right: auto; }
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  z-index: 1002;
  transition: width 0.1s linear;
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid       { grid-template-columns: 1fr; gap: 48px; }
  .why-left       { position: static; }
  .about-inner    { grid-template-columns: 1fr; gap: 48px; }
  .process-grid   { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .process-grid::before { display: none; }
  .footer-top     { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }

  .hero {
    padding: calc(var(--banner-h) + var(--nav-h) + 24px) 20px 60px;
    min-height: auto;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
    width: 100%;
  }
  .stat-divider { width: 60%; height: 1px; }
  .stat { padding: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-bottom: 48px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-sub {
  will-change: transform; max-width: 100%; }

  .why-section, .process-section, .action-section, .work-section, .about-section, .faq-section { padding: 72px 0; }
  .featured-case-section { padding: 72px 0; }
  .featured-case-inner { grid-template-columns: 1fr; gap: 48px; }
  .featured-case-stats { gap: 24px; }
  .featured-case-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-card--large { grid-row: span 1; }
  .case-card { padding: 28px; }
  .ads-stats-grid { grid-template-columns: 1fr 1fr; }

  .process-grid { grid-template-columns: 1fr; row-gap: 40px; }

  .cta-section { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-trust { flex-direction: column; align-items: center; gap: 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .phones-carousel { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 20px 20px; }
  .phones-carousel::-webkit-scrollbar { display: none; }
  .phones-track { justify-content: flex-start; }
  .phones-track .phone-wrap { scroll-snap-align: center; flex: 0 0 calc(60% - 12px); min-width: 200px; }
  .action-title { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--banner-h) + var(--nav-h) + 16px) 16px 48px; }
  .hero-badge { font-size: 12px; }
  .hero-sub {
  will-change: transform; font-size: 16px; }
  .hero-stats { padding: 20px 16px; }
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .footer-links { grid-template-columns: 1fr; }
  .ads-stats-grid { grid-template-columns: 1fr; }
  .case-card { padding: 24px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .phones-track .phone-wrap { flex: 0 0 80%; }
}

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


/* ── COMPARISON TABLE ─────────────────────────────── */
.comparison-section {
  background: #fff;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table thead th {
  padding: 14px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table .col-feature {
  text-align: left;
  width: 60%;
}

.comparison-table .col-tockit {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px 12px 0 0;
  width: 20%;
}

.comparison-table .col-others {
  color: #888;
  width: 20%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0ece4;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody td {
  padding: 16px 24px;
  vertical-align: middle;
  color: #2c2c2c;
}

.comparison-table tbody td:nth-child(2) {
  background: #1a1a1a;
  text-align: center;
}

.comparison-table tbody td:nth-child(3) {
  text-align: center;
  color: #aaa;
}

.comparison-table .check {
  color: #e8533a;
  font-size: 20px;
  font-weight: 700;
}

.comparison-table .cross {
  color: #ccc;
  font-size: 18px;
}

@media (max-width: 640px) {
  .comparison-table {
    font-size: 13px;
  }
  .comparison-table tbody td,
  .comparison-table thead th {
    padding: 12px 14px;
  }
}

/* ── PROBLEM / SOLUTION ───────────────────────────── */
.problem-section { padding: 80px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.problem-col, .solution-col {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.solution-col {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(255,45,85,0.1);
}
.problem-tag { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }
.solution-tag { color: var(--accent); }
.problem-title {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 24px;
  line-height: 1.3;
}
.problem-list, .solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-list li, .solution-list li {
  font-size: 15px;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
  font-size: 13px;
}
.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-col, .solution-col { padding: 24px; }
}

/* ── NAV DROPDOWN ─────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-chevron {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-dropdown-wrap.open .nav-chevron,
.nav-dropdown-wrap:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  list-style: none !important;
  min-width: 200px;
  padding: 12px 8px 8px;
  z-index: 9999;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-dropdown-menu li {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.nav-dropdown-wrap.open .nav-dropdown-menu,
.nav-dropdown-wrap:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  min-height: unset !important;
  white-space: nowrap;
  background: none;
}
.nav-dropdown-menu li a:hover {
  background: var(--bg-2) !important;
  color: var(--text);
}

/* ============================================================
   WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-grid .case-card--large {
  grid-column: span 3;
}
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid .case-card--large { grid-column: span 2; }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .case-card--large { grid-column: span 1; }
}
.case-card--link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.case-card--link:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.case-cta { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.03em; text-transform: uppercase; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.about-body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.about-stat { text-align: center; }
.about-stat-val { display: block; font-size: 36px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.about-model-box { background: var(--accent); border-radius: var(--radius); padding: 24px 28px; }
.about-model-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.about-model-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card--featured {
  grid-column: span 2;
  background: var(--text);
  color: #fff;
}
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.9); }
.testimonial-card--featured .testimonial-name { color: #fff; }
.testimonial-card--featured .testimonial-role { color: rgba(255,255,255,0.55); }
.testimonial-card--featured .testimonial-stars { color: #F59E0B; }
.testimonial-card--featured .testimonial-avatar { background: rgba(255,255,255,0.15); color: #fff; }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-stars { font-size: 14px; color: #F59E0B; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-role { display: block; font-size: 12px; color: var(--text-3); margin-top: 2px; }

@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 48px 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  transition: color var(--transition);
  min-height: 44px;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.25s ease, color 0.2s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq-q:hover { color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 22px;
}
.faq-a p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

