/* ==========================================================================
   ADBI STUDIO — QUIET LUXURY & ARCHITECTURAL DARK DESIGN SYSTEM v2.5
   Palette: Deep Velvet Charcoal #0a0a0f · Warm Architectural Gold #D4A574
   Cashmere Silk #C7B8AD · Nordic Slate #A0BCC7 · Crisp Ivory #FAF9F7
   100% Free of harsh/garish red. Pure elegance, calm authority & high conversion.
   ========================================================================== */

/* --- 1. DESIGN TOKENS --- */
:root {
  /* Warm Architectural Gold & Cashmere Palette */
  --gold: #D4A574;
  --gold-light: #F5E6D3;
  --gold-dark: #B8884E;
  --gold-subtle: rgba(212, 165, 116, 0.10);
  --gold-border: rgba(212, 165, 116, 0.28);
  --gold-glow: rgba(212, 165, 116, 0.25);

  --cashmere: #C7B8AD;
  --cashmere-light: #E2D8D0;
  --cashmere-dark: #9E8E82;
  --cashmere-subtle: rgba(199, 184, 173, 0.12);
  --cashmere-border: rgba(199, 184, 173, 0.26);

  --slate: #A0BCC7;
  --slate-light: #C4D7E0;
  --slate-dark: #7A98A4;
  --slate-subtle: rgba(160, 188, 199, 0.10);
  --slate-border: rgba(160, 188, 199, 0.25);

  /* Backgrounds */
  --bg-void: #050508;
  --bg-deep: #0a0a0f;
  --bg-main: #0e0e14;
  --bg-surface: #14141c;
  --bg-card: rgba(18, 18, 28, 0.82);
  --bg-card-hover: rgba(26, 26, 40, 0.94);
  --bg-glass: rgba(14, 14, 22, 0.78);
  --bg-input: #0c0c12;

  /* Text */
  --text-white: #FAF9F7;
  --text-main: #DAD5CE;
  --text-muted: #9494A0;
  --text-dim: #5C5C68;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(212, 165, 116, 0.16);
  --border-gold: rgba(212, 165, 116, 0.32);
  --border-slate: rgba(160, 188, 199, 0.28);

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 32px rgba(212, 165, 116, 0.18);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --max-w: 1240px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. BASE RESET & BODY --- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: #1e1e2a; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.3px;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-light) !important; }
.text-cashmere { color: var(--cashmere-light) !important; }
.text-slate { color: var(--slate-light) !important; }
.text-emerald { color: #7dcea0 !important; }
.text-muted { color: var(--text-muted) !important; }
.text-dim { color: var(--text-dim) !important; }

.text-gradient-gold {
  background: linear-gradient(135deg, #F5F0EB 0%, #D4A574 60%, #B8884E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 120px 0;
  position: relative;
}

/* Section Headers */
.section-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge.badge-emerald {
  background: rgba(125, 206, 160, 0.08);
  border-color: rgba(125, 206, 160, 0.25);
  color: #7dcea0;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Insight Box in Section Header */
.insight-box-wrapper {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.insight-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 680px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(160, 188, 199, 0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  text-align: left;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.insight-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  line-height: 1.5;
}
.insight-content strong { color: var(--text-white); font-weight: 700; }
.insight-content span { color: var(--text-muted); font-size: 12.5px; }

/* --- 3. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4A574 0%, #B8884E 100%);
  color: #090b0e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F5E6D3 0%, #D4A574 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 165, 116, 0.32);
}

.btn-glow {
  background: linear-gradient(135deg, #D4A574 0%, #B8884E 100%);
  color: #090b0e;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  padding: 10px 22px;
  font-size: 13.5px;
  border-radius: 100px;
}
.btn-glow:hover {
  background: linear-gradient(135deg, #F5E6D3 0%, #D4A574 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-subtle {
  background: rgba(212, 165, 116, 0.08);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}
.btn-subtle:hover {
  background: rgba(212, 165, 116, 0.18);
  border-color: var(--gold-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 34px; font-size: 15.5px; }
.btn-block { width: 100%; }

/* --- 4. TOP ANNOUNCEMENT BAR --- */
.top-announcement {
  background: var(--bg-void);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  padding: 9px 0;
  position: relative;
  z-index: 100;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.announcement-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}
.announcement-badge strong { color: var(--gold-light); }

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.top-contacts { display: flex; align-items: center; gap: 24px; }

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.top-link:hover { color: var(--gold-light); }

/* --- 5. HEADER & BRAND --- */
.agency-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(10, 10, 15, 0.90);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.agency-header.scrolled {
  background: rgba(5, 5, 8, 0.97);
  border-bottom-color: var(--border-card);
  box-shadow: var(--shadow-sm);
}

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

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-icon {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: filter 0.3s ease, transform 0.3s ease;
  display: block;
  flex-shrink: 0;
}
.brand-logo-icon:hover {
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(212, 165, 116, 0.35));
  transform: scale(1.05);
}

.footer-logo-icon {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
}

.brand-text { display: flex; flex-direction: column; }

.brand-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}

.brand-adb { color: var(--gold-light); font-weight: 800; letter-spacing: 1.2px; }

.brand-s-split {
  display: inline-block;
  background: linear-gradient(135deg, #D4A574 0%, #D4A574 48%, #A0BCC7 52%, #A0BCC7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 23px;
  margin: 0 1px;
}

.brand-tudio { color: var(--text-white); font-weight: 600; letter-spacing: 0.6px; }

.brand-sub {
  font-size: 9.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.nav-item {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-item:hover { color: #fff; }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-item:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-btn:hover { border-color: var(--gold); }

/* --- 6. MOBILE DRAWER --- */
.mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-card);
  z-index: 200;
  transition: right 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: none;
  border: 1px solid var(--border-card);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.drawer-links { padding: 16px 0; flex: 1; }

.drawer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.drawer-item:hover { color: #fff; background: rgba(255,255,255,0.03); }

.drawer-footer { padding: 20px; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* --- 7. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Ambient glow spheres */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}
.sphere-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.09) 0%, transparent 70%);
  top: -10%; left: -10%;
}
.sphere-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(160, 188, 199, 0.07) 0%, transparent 70%);
  bottom: -10%; right: -5%;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 0 70px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 100px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 38px;
  line-height: 1.75;
}
.hero-subtitle strong { color: var(--text-white); }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Trust Metrics — Big Numbers */
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.metric-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.metric-icon {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--gold);
}

.metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.metric-label {
  display: block;
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Trust Logos & Integrations Bar */
.trust-logos-bar {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(14, 14, 24, 0.75);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  text-align: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.trust-logos-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.trust-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
}

.trust-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}
.trust-logo-item:hover {
  border-color: var(--gold-border);
  background: var(--gold-subtle);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.12);
}

/* --- 8. AUDIENCE / INDUSTRIES SECTION --- */
.audience-section {
  background: var(--bg-main);
  position: relative;
}
.audience-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.audience-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--slate));
  opacity: 0;
  transition: var(--transition);
}
.audience-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(212, 165, 116, 0.08);
}
.audience-card:hover::before { opacity: 1; }

.audience-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.audience-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  white-space: nowrap;
}

.audience-icon-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.audience-card:hover .audience-icon-img {
  transform: scale(1.12) rotate(3deg);
}

.audience-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
  line-height: 1.25;
}

.audience-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.audience-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.audience-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-main);
}
.audience-bullets li i {
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- 9. SHOWCASE / PORTFOLIO SECTION --- */
.showcase-section {
  background: var(--bg-deep);
  position: relative;
}

.showcase-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
}
.showcase-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 165, 116, 0.1);
}

.showcase-card.showcase-highlight {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.14);
}
.showcase-card.showcase-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--slate));
  z-index: 6;
}

.card-badge {
  position: absolute;
  top: 42px; left: 14px;
  background: linear-gradient(135deg, #D4A574 0%, #B8884E 100%);
  color: #090b0e;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 8;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mockup Browser Window Frame */
.mockup-browser-window {
  background: #0c0c14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 14px;
  background: rgba(10, 10, 16, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ctrl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.25);
}
.ctrl-dot:nth-child(1) { background: rgba(212, 165, 116, 0.6); }
.ctrl-dot:nth-child(2) { background: rgba(199, 184, 173, 0.4); }
.ctrl-dot:nth-child(3) { background: rgba(160, 188, 199, 0.4); }

.browser-address-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 165, 116, 0.16);
  border-radius: 100px;
  padding: 2px 12px;
  color: var(--gold-light);
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.2px;
}

.browser-meta {
  display: flex;
  align-items: center;
}

.browser-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #7dcea0;
  letter-spacing: 0.5px;
}

.dot-online {
  width: 6px; height: 6px;
  background: #7dcea0;
  border-radius: 50%;
  box-shadow: 0 0 8px #7dcea0;
  animation: pulse 1.5s infinite;
}

.showcase-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showcase-card:hover .showcase-img {
  transform: scale(1.06);
}

/* Inside Mockup UI Overlays */
.mockup-ui-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.72) 0%, transparent 40%, transparent 60%, rgba(10, 10, 15, 0.88) 100%);
  z-index: 3;
}

.mockup-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-logo-badge {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--text-white);
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.mockup-pill-btn {
  font-size: 10px;
  font-weight: 700;
  color: #090b0e;
  background: linear-gradient(135deg, #D4A574, #B8884E);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mockup-ui-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.status-live-chip, .price-live-chip {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(14, 14, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.price-live-chip {
  color: var(--gold-light);
  border-color: var(--gold-border);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 15, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 5;
}
.showcase-card:hover .visual-overlay { opacity: 1; }

.showcase-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-gold {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.showcase-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
  line-height: 1.25;
}

.showcase-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.showcase-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-main);
}
.showcase-features li i {
  color: var(--gold);
  font-size: 13px;
}

.showcase-action {
  margin-top: auto;
}

/* --- 10. CALCULATOR SECTION --- */
.calculator-section {
  background: var(--bg-main);
  position: relative;
}

.calculator-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.calc-steps-col {
  padding: 40px;
  border-right: 1px solid var(--border-subtle);
}

.calc-step-group { margin-bottom: 36px; }
.calc-step-group:last-child { margin-bottom: 0; }

.calc-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-white);
}

.calc-step-badge {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #D4A574 0%, #B8884E 100%);
  color: #090b0e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
}

.calc-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calc-industry-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.calc-industry-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-white);
  background: var(--gold-subtle);
}
.calc-industry-btn.selected {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.10);
}

.calc-ind-icon { font-size: 16px; color: var(--gold); }
.calc-ind-label { font-size: 12.5px; }

.calc-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.calc-type-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  text-align: left;
}
.calc-type-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-white);
}
.calc-type-btn.selected {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold-light);
}
.calc-type-btn i { font-size: 18px; color: var(--gold); }

.calc-type-info { display: flex; flex-direction: column; }
.calc-type-title { font-size: 13px; font-weight: 700; color: inherit; }
.calc-type-sub { font-size: 11px; color: var(--text-dim); }

/* Dynamic Features */
.calc-features-dynamic-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--transition);
}
.calc-feature-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--gold-border);
}
.calc-feature-row.checked {
  background: var(--gold-subtle);
  border-color: var(--gold-border);
}
.calc-feature-row.locked { opacity: 0.85; cursor: default; }

.calc-feature-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-checkbox {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 2px solid var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.calc-feature-row.checked .feature-checkbox {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0f;
}

.feature-label { font-size: 13px; color: var(--text-main); font-weight: 500; }

.feature-price-tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-dim);
  white-space: nowrap;
}
.calc-feature-row.checked .feature-price-tag {
  background: var(--gold-subtle);
  color: var(--gold-light);
}

/* Plan Selection */
.calc-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-plan-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-muted);
}
.calc-plan-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-white);
}
.calc-plan-btn.selected {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.12);
  color: var(--gold-light);
}

/* Summary Column */
.calc-summary-col {
  padding: 40px;
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.95) 0%, rgba(14, 14, 22, 0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-header {
  margin-bottom: 28px;
}

.summary-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.summary-desc {
  font-size: 13px;
  color: var(--text-dim);
}

.calc-live-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13.5px;
}
.breakdown-row span { color: var(--text-dim); }
.breakdown-row strong { color: var(--text-white); font-size: 13px; text-align: right; }

.calc-price-box {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(160, 188, 199, 0.04) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 26px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.price-box-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-total-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}
.calc-total-amount small {
  font-size: 22px;
  color: var(--text-muted);
}

.calc-recurring-note {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
}

/* Calculator Guarantee Terms */
.calc-guarantee-terms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.terms-row i {
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.terms-row strong {
  color: var(--text-white);
  display: inline;
}

.calc-actions {
  margin-top: auto;
}

/* --- 11. STANDARD FEATURES SECTION --- */
.standard-section {
  background: var(--bg-deep);
}

.features-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.standard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: var(--transition);
}
.standard-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.standard-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-subtle), var(--slate-subtle));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
}

.standard-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.standard-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- 12. STEPS / TIMELINE SECTION --- */
.steps-section {
  background: var(--bg-main);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--slate), var(--gold));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(212, 165, 116, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-light);
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(212, 165, 116, 0.2);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 36px rgba(212, 165, 116, 0.35);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 13. GUARANTEE SECTION --- */
.guarantee-section {
  background: var(--bg-deep);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.guarantee-card:hover {
  border-color: rgba(125, 206, 160, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(125, 206, 160, 0.08);
}

.guarantee-badge-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(125, 206, 160, 0.08);
  border: 1px solid rgba(125, 206, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #7dcea0;
  margin: 0 auto 16px;
}

.guarantee-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.guarantee-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 14. REVIEWS SECTION --- */
.reviews-section {
  background: var(--bg-main);
}

.reviews-header-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.google-g-icon { font-size: 28px; color: #4285F4; }

.stars-row {
  display: inline-flex;
  gap: 3px;
  color: #F4B400;
  font-size: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reviewer-meta { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #0a0a0f;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.reviewer-business {
  font-size: 12px;
  color: var(--text-dim);
}

.review-badge-verified {
  font-size: 11px;
  font-weight: 700;
  color: #4285F4;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.review-quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* --- 15. COMPARISON TABLE --- */
.comparison-section {
  background: var(--bg-deep);
}

.comparison-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

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

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.comparison-table thead th {
  background: var(--bg-surface);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}

.highlight-col { color: var(--text-white); }
.dimmed-col { color: var(--text-dim); }

.badge-good {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7dcea0;
  font-weight: 600;
  font-size: 13px;
}
.badge-bad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 13px;
}

/* --- 16. PRICING SECTION --- */
.pricing-section {
  background: var(--bg-main);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured-pricing {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(212, 165, 116, 0.14);
  transform: scale(1.03);
}
.pricing-card.featured-pricing:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 70px rgba(212, 165, 116, 0.22);
}

.pricing-ribbon {
  background: linear-gradient(135deg, #D4A574 0%, #B8884E 100%);
  color: #090b0e;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px;
}

.pricing-header { padding: 32px 28px 24px; }

.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.photo-session-badge-box {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.5;
}

.price-box {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-md);
}

.price-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-white);
}
.price-num small {
  font-size: 20px;
  color: var(--text-dim);
}

.price-period {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

.sub-price {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 8px;
}

.pricing-features {
  padding: 0 28px 28px;
}
.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-features li i {
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-action {
  padding: 0 28px 28px;
}

/* --- 17. FAQ SECTION --- */
.faq-section {
  background: var(--bg-deep);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold-border); }
.faq-item.active { border-color: var(--gold); }

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-toggle i {
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
  color: var(--gold-light);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}
.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- 18. CONTACT SECTION --- */
.contact-section {
  background: var(--bg-main);
}

.contact-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-col {
  padding: 48px 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(160, 188, 199, 0.03) 100%);
  border-right: 1px solid var(--border-subtle);
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: var(--transition);
}
.contact-method-item:hover {
  border-color: var(--gold-border);
  background: var(--gold-subtle);
}

.method-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.method-text { display: flex; flex-direction: column; }
.method-label { font-size: 12px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.method-val { font-size: 15px; color: var(--text-white); font-weight: 600; }

.contact-form-col { padding: 40px; }

.form-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.agency-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(212, 165, 116, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* --- 19. FOOTER --- */
.agency-footer {
  background: var(--bg-void);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-slogan {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* --- 20. TOAST --- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 14px 22px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: toastIn 0.35s var(--ease);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- 21. SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 22. RESPONSIVE --- */
@media (max-width: 1100px) {
  .audience-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .features-standard-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-card.featured-pricing { transform: none; }
  .pricing-card.featured-pricing:hover { transform: translateY(-6px); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .calculator-card { grid-template-columns: 1fr; }
  .calc-steps-col { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .contact-card-wrapper { grid-template-columns: 1fr; }
  .contact-info-col { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .calc-structure-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  .hero-content { padding: 60px 0; }
  .hero-title { font-size: clamp(28px, 7vw, 44px); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .trust-metrics { grid-template-columns: repeat(2, 1fr); }
  .audience-grid-8 { grid-template-columns: 1fr; }
  .showcase-grid-6 { grid-template-columns: 1fr; }
  .features-standard-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table th,
  .comparison-table td { padding: 12px 10px; }

  /* Nav mobile */
  .agency-nav { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .btn-glow span { display: none; }
  .btn-glow { padding: 12px; }

  /* Top bar mobile */
  .top-contacts { display: none; }

  .calc-industries-grid { grid-template-columns: 1fr; }
  .calc-steps-col { padding: 24px; }
  .calc-summary-col { padding: 24px; }
  .contact-info-col { padding: 28px; }
  .contact-form-col { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 24px; }
  .trust-metrics { grid-template-columns: 1fr; gap: 12px; }
  .metric-val { font-size: 26px; }
  .calc-total-amount { font-size: 36px; }
}

/* --- 23. COOKIE CONSENT BANNER (RODO) --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0 16px 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(14, 14, 22, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 165, 116, 0.08);
}

.cookie-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.cookie-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.cookie-link:hover {
  color: var(--gold-light);
}

/* Cookie Details (expandable) */
.cookie-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.cookie-details.open {
  max-height: 220px;
  opacity: 1;
  margin-top: 16px;
}

.cookie-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cookie-detail-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}

.cookie-detail-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}
.cookie-detail-header strong {
  color: var(--text-white);
  font-weight: 700;
}
.cookie-detail-header i {
  font-size: 13px;
}

.cookie-always {
  font-size: 10px;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: auto;
}

.cookie-detail-item p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Cookie Buttons */
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 11px 20px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--gold);
  color: #0d0a0f;
}
.cookie-btn-accept:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.cookie-btn-necessary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.cookie-btn-necessary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-white);
  border-color: var(--gold-border);
}

.cookie-btn-details {
  background: transparent;
  color: var(--text-dim);
  padding: 11px 14px;
  margin-left: auto;
}
.cookie-btn-details:hover {
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .cookie-inner {
    padding: 20px;
  }
  .cookie-main {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
  }
  .cookie-detail-grid {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
  .cookie-btn-details {
    margin-left: 0;
  }
}

