/* =====================================================
   AMDG Core — Shared Stylesheet
   Making Complex Simple
   ===================================================== */

/* ---------- CSS Variables (Dark Mode Default) ---------- */
:root {
  /* brand colours — warm navy + rich gold */
  --navy:       #1a2836;
  --red:        #ff1a1a;
  --red-dark:   #c20000;
  --gold:       #ecc865;
  --gold-dark:  #e1ad48;
  --white:      #ffffff;
  --blue:       #2563eb;
  --blue-light: #60a5fa;
  --blue-dark:  #1e40af;

  /* semantic – dark mode (warmer tones) */
  --bg:            #111c28;
  --bg-alt:        #182838;
  --bg-card:       #1e2f42;
  --text:          #eaeff4;
  --text-muted:    #9aabbf;
  --text-inv:      #1a2836;
  --border:        #2e4052;
  --shadow:        rgba(0,0,0,.25);
  --shadow-lg:     rgba(0,0,0,.4);
  --header-bg:     rgba(17,28,40,.96);
  --header-border: rgba(255,255,255,.07);
  --overlay:       rgba(0,0,0,.6);
  --footer-bg:     #0c1520;
  --footer-text:   #8a9db2;
  --breadcrumb-bg: #182838;

  /* spacing scale */
  --sp-xs:  .4rem;
  --sp-sm:  .8rem;
  --sp-md:  1.6rem;
  --sp-lg:  3.2rem;
  --sp-xl:  6.4rem;

  /* typography */
  --ff-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-xs:   .75rem;
  --fs-sm:   .875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.75rem;
  --fs-3xl:  3.5rem;

  /* radii & transitions */
  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  --header-h: 72px;
}

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

img, svg { display:block; max-width:100%; height:auto; }
a { color: inherit; text-decoration:none; transition: color var(--transition); }
ul,ol { list-style:none; }
button, input, textarea, select {
  font:inherit; color:inherit; background:none; border:none; outline:none;
}

/* ---------- Utility ---------- */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 var(--sp-md); box-sizing:border-box; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* reveal-on-scroll */
.reveal { opacity:0; transform:translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(50px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* stagger delay for sequential reveals */
.reveal:nth-child(2), .reveal-left:nth-child(2), .reveal-right:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3), .reveal-left:nth-child(3), .reveal-right:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4), .reveal-left:nth-child(4), .reveal-right:nth-child(4) { transition-delay: .3s; }

/* animated gradient line under section titles */
.section-title h2::after {
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--gold), var(--blue));
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  width: 80px;
  height: 3px;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* floating glow animation for hero */
@keyframes float-glow {
  0%,100% { transform:translateY(0); filter: drop-shadow(0 0 40px rgba(236,200,101,.12)); }
  50% { transform:translateY(-12px); filter: drop-shadow(0 20px 60px rgba(236,200,101,.3)); }
}

/* pulse animation for WhatsApp button */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

.section-title {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-title h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-sm);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content:'';
  position:absolute;
  bottom: -8px;
  left:50%;
  transform:translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-full);
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--sp-md) auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,7,7,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(255,7,7,.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: #223a52;
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: .55rem 1.2rem; font-size: var(--fs-xs); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1005;
  height: var(--header-h);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-md);
  position: relative;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 0; }
.header-logo-main {
  height: 23px;
  width: auto;
  transition: transform var(--transition);
}
.header-logo:hover .header-logo-main { transform: scale(1.03); }
.header-tagline {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
  white-space: nowrap;
  flex-shrink: 0;
}

/* nav */
.main-nav { margin-left: auto; display: flex; align-items: center; }
.nav-list { display: flex; gap: .2rem; align-items: center; }
.nav-list a {
  padding: .5rem .85rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--red);
  background: rgba(255,7,7,.06);
}
.nav-list a.active::after {
  content:'';
  position:absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* header controls */
.header-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

/* user menu (login icon) */
.user-menu { position:relative; }
.user-menu-btn {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border); background:transparent;
  color:var(--text-muted); cursor:pointer; transition:all var(--transition);
}
.user-menu-btn:hover { border-color:var(--gold); color:var(--gold); }
.user-menu-dropdown {
  display:none; position:absolute; top:calc(100% + 8px); right:0;
  min-width:220px; background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-md); box-shadow:0 8px 24px rgba(0,0,0,.3); z-index:999; overflow:hidden;
}
.user-menu.open .user-menu-dropdown { display:block; }
.user-menu-dropdown a {
  display:flex; align-items:center; gap:10px; padding:12px 16px;
  color:var(--text); text-decoration:none; font-size:var(--fs-sm);
  font-weight:500; transition:background var(--transition);
}
.user-menu-dropdown a:hover { background:rgba(236,200,101,.08); color:var(--gold); }
.user-menu-dropdown a svg { color:var(--gold); flex-shrink:0; }

/* language + currency toggles */
.toggle-group {
  display: flex;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-full);
  padding: 2px;
  border: 1px solid var(--border);
}
.toggle-group button {
  padding: .3rem .65rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
}
.toggle-group button.active {
  background: var(--gold);
  color: var(--navy);
}

/* currency selector */
.currency-select {
  position: relative;
}
.currency-btn {
  display: flex; align-items:center; gap:.3rem;
  padding: .35rem .7rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor:pointer;
  transition: all var(--transition);
}
.currency-btn:hover { border-color: var(--gold); }
.currency-btn svg { width:12px; height:12px; transition: transform var(--transition); }
.currency-select.open .currency-btn svg { transform:rotate(180deg); }
.currency-dropdown {
  position:absolute; top:calc(100% + 6px); right:0;
  background: var(--bg-card);
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition: all var(--transition);
  min-width: 120px;
  z-index: 100;
}
.currency-select.open .currency-dropdown {
  opacity:1; visibility:visible; transform:translateY(0);
}
.currency-dropdown button {
  display:block; width:100%; text-align:left;
  padding: .55rem .85rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  cursor:pointer;
  transition: background var(--transition);
}
.currency-dropdown button:hover { background: rgba(236,200,101,.15); }
.currency-dropdown button.active { color: var(--gold-dark); font-weight:700; }

/* mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}
.burger span {
  display:block; width:24px; height:2px;
  background: var(--text);
  border-radius:2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:1024px){
  .main-nav {
    position:fixed;
    top:0; right:0;
    width: min(340px,85vw);
    height:100vh; height: 100dvh;
    background: var(--bg-card);
    flex-direction:column;
    align-items:stretch;
    padding: calc(var(--header-h) + var(--sp-md)) var(--sp-md) var(--sp-md);
    transform:translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 30px var(--shadow-lg);
    z-index: 1004;
    overflow-y: auto;
  }
  .main-nav.open { transform:translateX(0); }
  .nav-list { flex-direction:column; gap:11px; }
  .nav-list a { padding: 1.4rem 1rem; font-size: var(--fs-lg); }
  .burger { display:flex; }
  .mobile-overlay {
    position:fixed; inset:0;
    background: var(--overlay);
    z-index:1002;
    opacity:0; visibility:hidden;
    transition: all var(--transition);
  }
  .mobile-overlay.active { opacity:1; visibility:visible; }
  .header-controls { gap: var(--sp-xs); margin-left: auto; }
  .header-controls .user-menu { display:none; }
  .mobile-controls .toggle-group, .mobile-controls .currency-select { display:none; }
  .mobile-controls { display:flex; flex-direction:column; gap:var(--sp-sm); padding-top:var(--sp-md); border-top:1px solid var(--border); margin-top:var(--sp-sm); }
}
.mobile-menu-link {
  display:flex; align-items:center; gap:10px; padding:12px 16px;
  color:var(--text); text-decoration:none; font-size:var(--fs-base);
  font-weight:500; border-radius:var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu-link:hover { background:rgba(236,200,101,.08); color:var(--gold); }
.mobile-menu-link svg { color:var(--gold); flex-shrink:0; }
@media(min-width:1025px){
  .mobile-controls { display:none; }
  .mobile-overlay { display:none; }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-bar {
  background: var(--breadcrumb-bg);
  padding: var(--sp-sm) 0;
  margin-top: var(--header-h);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--red); }
.breadcrumb-list .sep { margin: 0 .15rem; }
.breadcrumb-list .current { color: var(--text); font-weight: 600; }

/* ---------- HERO ---------- */
.hero {
  position:relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--sp-xl)) 0 var(--sp-xl);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(37,99,235,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(96,165,250,.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events:none;
  animation: hero-bg-shift 8s ease-in-out infinite alternate;
}
@keyframes hero-bg-shift {
  0% { opacity:.8; transform:scale(1); }
  100% { opacity:1; transform:scale(1.05); }
}
.hero-inner {
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  position: relative;
  z-index:1;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  padding: .4rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(236,200,101,.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-md);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(236,200,101,.06);
  box-shadow: 0 0 20px rgba(236,200,101,.08);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); }
.hero p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-lg);
  line-height: 1.8;
}
.hero-btns { display:flex; gap: var(--sp-md); flex-wrap:wrap; }

/* Hero lion watermark (CSS background to avoid LCP detection) */
.hero::after {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 717px;
  height: 876px;
  background: url('https://vnrhhlkvkohfwzstfvzd.supabase.co/storage/v1/object/public/AMDG-HomeWebsite/lion-watermark-opt.webp') no-repeat center / contain;
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 60% 65% at 25% 35%, rgba(0,0,0,1) 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 65% at 25% 35%, rgba(0,0,0,1) 10%, transparent 70%);
}

.hero-visual {
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-logo-showcase {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.hero-logo-img {
  width: 100%;
  max-width: 2416px;
  height: auto;
  position:relative;
  z-index:1;
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 80px rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.12);
  background: rgba(12,15,22,1);
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stat-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.hero-stat {
  text-align:center;
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.hero-stat .number {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.hero-stat .label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  line-height: 1.3;
}
.hero-stat-source {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
  font-style: italic;
}

@media(max-width:768px){
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-content { max-width:100%; }
  .hero-btns { justify-content:center; }
  .hero-logo-img { width:1470px; max-width:90vw; }
  .hero-visual { order: -1; }
  .hero::after { width: 520px; height: 520px; left: -10%; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(37,99,235,.08) 50%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-lg) 0;
}
.stats-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  text-align:center;
}
.stat-item .stat-number {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--gold);
}
.stat-item .stat-label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: .2rem;
}
.stat-item .stat-source {
  font-size: .65rem;
  color: var(--text-muted);
  opacity: .6;
  margin-top: .15rem;
  font-style: italic;
}
@media(max-width:600px){
  .stats-grid { grid-template-columns:1fr 1fr; }
}

/* ---------- Stats Carousel ---------- */
.stats-carousel-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--bg) 100%);
  padding: var(--sp-lg) 0;
  position: relative;
  overflow: hidden;
}
.stats-carousel-wrapper {
  position: relative;
  max-width: 100%;
}
.stats-carousel-track {
  display: flex;
  gap: var(--sp-md);
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: var(--sp-sm) 0;
}
.stats-carousel-track::-webkit-scrollbar { display: none; }
.stats-carousel-card {
  flex: 0 0 calc(25% - var(--sp-md) * 3 / 4);
  min-width: 220px;
  scroll-snap-align: start;
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stats-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37,99,235,.15);
}
.stats-carousel-card .stat-num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stats-carousel-card .stat-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.stats-carousel-card .stat-src {
  font-size: .6rem;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
  font-style: italic;
}
.stats-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
.stats-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.stats-carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.stats-carousel-btn svg { width: 18px; height: 18px; }
.stats-carousel-dots {
  display: flex;
  gap: 6px;
}
.stats-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 8px;
  background-clip: content-box;
  box-sizing: content-box;
}
.stats-carousel-dot.active {
  background: var(--gold);
  background-clip: content-box;
  width: 24px;
  border-radius: 4px;
}
@media(max-width:768px){
  .stats-carousel-card {
    flex: 0 0 calc(50% - var(--sp-md) / 2);
    min-width: 160px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
  }
  .stats-carousel-btn { width: 34px; height: 34px; }
  .stats-carousel-btn svg { width: 15px; height: 15px; }
}
@media(max-width:480px){
  .stats-carousel-card {
    flex: 0 0 85vw;
    min-width: 0;
    padding: var(--sp-lg) var(--sp-md);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
  }
  .stats-carousel-card .stat-num { font-size: var(--fs-2xl); }
  .stats-carousel-card .stat-text { font-size: var(--fs-base); line-height: 1.6; }
  .stats-carousel-card .stat-src { font-size: var(--fs-xs); }
}

/* ---------- Section spacing ---------- */
.section { padding: var(--sp-xl) 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Pricing Cards ---------- */
#pricing > .container { max-width: 1600px; }
.pricing-wrapper {
  position: relative;
}
.pricing-grid {
  display:flex;
  gap: var(--sp-md);
  align-items: stretch;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-sm);
}
.pricing-grid::-webkit-scrollbar { display:none; }
.pricing-grid > .pricing-card {
  flex: 0 0 calc(25% - var(--sp-md) * 3 / 4);
  min-width: 280px;
  scroll-snap-align: start;
}
.pricing-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  background: var(--gold);
  color: var(--navy);
  border:none;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  z-index:10;
  transition: all var(--transition);
  opacity: .9;
}
.pricing-arrow:hover { opacity:1; transform:translateY(-50%) scale(1.1); box-shadow: 0 6px 24px rgba(236,200,101,.4); }
.pricing-arrow svg { width:20px; height:20px; }
.pricing-arrow-left { left:-16px; }
.pricing-arrow-right { right:-16px; }
.pricing-arrow.hidden { opacity:0; pointer-events:none; }
@media(min-width:1200px){
  .pricing-grid > .pricing-card {
    flex: 0 0 calc(25% - var(--sp-md) * 3 / 4);
  }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  position:relative;
  overflow: visible;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card > a.btn { margin-top: auto; padding-top: .75rem; width: 100%; }
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 30px rgba(236,200,101,.15);
}
.pricing-card.featured::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.pricing-card .plan-badge {
  display:inline-block;
  padding: .25rem .7rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-sm);
  letter-spacing: .04em;
}
.pricing-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-xs);
}
.pricing-card .plan-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.pricing-card .plan-price {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-xs);
}
.pricing-card .plan-price .currency-symbol { font-size: var(--fs-lg); }
.pricing-card .plan-monthly {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.pricing-card .plan-features {
  margin-bottom: var(--sp-lg);
}
.pricing-card .plan-features li {
  padding: .4rem 0;
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.pricing-card .plan-features li::before {
  content:'✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-details-toggle {
  cursor:pointer;
  font-size: var(--fs-sm);
  color: #2563eb;
  font-weight: 600;
  display: inline-flex;
  align-items:center;
  gap:.3rem;
  margin-bottom: var(--sp-md);
  background: none; border: none;
}
.plan-details-toggle:hover { color: #1d4ed8; }
.plan-details-toggle svg { width:14px;height:14px; transition: transform var(--transition); }
.plan-details-toggle.open svg { transform: rotate(180deg); }
.plan-extra-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.plan-extra-details.open {
  max-height: 600px;
}
.plan-extra-details ul {
  padding-bottom: var(--sp-md);
}
.plan-extra-details li {
  padding: .35rem 0;
  font-size: var(--fs-sm);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.plan-extra-details li::before {
  content:'✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-change-info {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: var(--sp-sm);
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
}
.plan-change-info p { margin-bottom: .2rem; }
.plan-change-note { color: var(--red); font-weight: 600; }

/* Long price text (e.g. "Custom Quote") — smaller than numeric prices */
.plan-price.plan-price-long { font-size: var(--fs-xl); }
@media(max-width:768px){
  .plan-price.plan-price-long { font-size: var(--fs-lg); }
}

/* ---------- Plan Guide (Help Choosing) ---------- */
.plan-guide-toggle {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:14px 20px; border-radius:var(--radius-md);
  background:var(--bg-card); border:1px solid var(--border);
  color:var(--text); font-size:var(--fs-base); font-weight:600;
  cursor:pointer; transition:all var(--transition);
  font-family:inherit;
}
.plan-guide-toggle:hover { border-color:var(--gold); color:var(--gold); }
.plan-guide-toggle svg { width:16px; height:16px; transition:transform var(--transition); }
.plan-guide-toggle.open svg { transform:rotate(180deg); }

.plan-guide-content {
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .5s cubic-bezier(.4,0,.2,1), opacity .4s ease, margin .4s ease;
  margin-top:0;
}
.plan-guide-content.open { max-height:2000px; opacity:1; margin-top:var(--sp-md); }

.plan-guide-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:var(--sp-md);
}
@media(max-width:768px){ .plan-guide-grid { grid-template-columns:1fr; } }

.plan-guide-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:24px; transition:border-color var(--transition);
}
.plan-guide-card:hover { border-color:var(--gold); }
.plan-guide-card--featured { border-color:rgba(236,200,101,0.3); box-shadow:0 4px 30px rgba(236,200,101,0.1); }

.plan-guide-header { display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.plan-guide-header h4 { font-size:var(--fs-md); font-weight:700; margin:0; }
.plan-guide-tag {
  font-size:.7rem; padding:3px 10px; border-radius:var(--radius-full);
  background:rgba(255,255,255,.06); color:var(--text-muted); font-weight:600;
  text-transform:uppercase; letter-spacing:.04em;
}
.plan-guide-tag--gold { background:rgba(236,200,101,.12); color:var(--gold); }

.plan-guide-desc { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.7; margin-bottom:16px; }

.plan-guide-examples-label { display:block; font-size:var(--fs-sm); font-weight:600; color:var(--gold-dark); margin-bottom:6px; }
.plan-guide-examples ul { list-style:none; padding:0; margin:0; }
.plan-guide-examples li {
  font-size:var(--fs-sm); color:var(--text); padding:4px 0; padding-left:20px; position:relative;
}
.plan-guide-examples li::before {
  content:''; position:absolute; left:0; top:11px;
  width:8px; height:8px; border-radius:50%; background:var(--gold); opacity:.6;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: var(--sp-lg);
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity:0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity:1; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}
.service-card .service-icon {
  width: 56px; height: 56px;
  display:flex; align-items:center; justify-content:center;
  border-radius: var(--radius-md);
  background: rgba(255,7,7,.08);
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: var(--sp-md);
}
.service-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
}


/* ---------- Filter Buttons (FAQ) ---------- */
.filter-btn {
  padding: .5rem 1.2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  cursor:pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---------- About Page ---------- */
.about-logo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl) 0;
  position: relative;
}
.about-logo-showcase img {
  max-width: 380px;
  width: 100%;
  height: auto;
  
  animation: float-glow 4s ease-in-out infinite;
}
.about-logo-showcase::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: -50%;
  bottom: -50%;
  background: radial-gradient(ellipse at center, rgba(236,200,101,.14) 0%, rgba(236,200,101,.07) 45%, transparent 85%);
  pointer-events: none;
}
.about-intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-xl);
}
.about-intro-section p {
  color: var(--text-muted);
  font-size: var(--fs-md);
  line-height: 1.8;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media(max-width:768px){
  .about-values-grid { grid-template-columns: 1fr; }
}
.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37,99,235,.15);
}
.about-value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(236,200,101,.1);
  color: var(--gold);
}
.about-value-card .value-icon svg { width: 28px; height: 28px; }
.about-value-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-sm); }
.about-value-card p { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }

/* ---------- Contact Lion Watermark ---------- */
.contact-section-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-lg);
}
.contact-lion-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 473px;
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, transparent 70%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 30%, transparent 70%);
  z-index: 0;
}

/* ---------- Service Detail Sections ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-content h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-md);
}
.service-detail-content p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.service-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-card);
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,38,51,.4), rgba(37,99,235,.15));
  pointer-events: none;
}
@media(max-width:768px){
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-image { order: -1; }
}


/* ---------- Unsplash Background Utility ---------- */
.bg-unsplash {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-unsplash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,.92), rgba(24,38,51,.88));
  z-index: 0;
}
.bg-unsplash > * {
  position: relative;
  z-index: 1;
}

/* ---------- Contact AMDG Logo Decorative ---------- */
.contact-amdg-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 var(--sp-lg);
}
.contact-amdg-logo img {
  max-width: 179px;
  width: 100%;
  height: auto;
  opacity: .85;
  filter: drop-shadow(0 0 20px rgba(236,200,101,.15));
}

/* ---------- FAQ ---------- */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-sm);
  background: var(--bg-card);
  overflow:hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 4px 16px var(--shadow); }
.faq-question {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: var(--sp-md);
  cursor:pointer;
  font-weight:600;
  font-size: var(--fs-base);
  gap: var(--sp-md);
  transition: color var(--transition);
  background:none; border:none; width:100%; text-align:left;
  color: var(--text);
}
.faq-question:hover { color: var(--red); }
.faq-question svg {
  width:20px; height:20px; flex-shrink:0;
  transition: transform var(--transition);
  color: var(--gold-dark);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height:0; overflow:hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 var(--sp-md);
}
.faq-item.open .faq-answer {
  max-height:500px;
  padding: 0 var(--sp-md) var(--sp-md);
}
.faq-answer p {
  color: var(--text-muted);
  line-height:1.8;
  font-size: var(--fs-sm);
}
.faq-categories {
  display:flex; justify-content:center; gap:var(--sp-sm);
  margin-bottom:var(--sp-lg); flex-wrap:wrap;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--sp-xl);
  align-items: start;
}
@media(max-width:768px){ .contact-grid { grid-template-columns:1fr; } }

.form-group { margin-bottom: var(--sp-md); }
.form-group label {
  display:block;
  font-weight:600;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
}
.form-group input,
.form-group textarea,
.form-group select {
  width:100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: var(--fs-base);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(236,200,101,.2);
}
.form-group textarea { min-height:140px; resize:vertical; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: var(--sp-md); }
.contact-info-item {
  display:flex; align-items:flex-start; gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.contact-info-item .ci-icon {
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  flex-shrink:0;
  font-size: 1.1rem;
}
.contact-info-item p { font-size: var(--fs-sm); color: rgba(255,255,255,.8); }
.contact-info-item a { color: var(--gold); }
.contact-info-item a:hover { text-decoration:underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--sp-xl) 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media(max-width:768px){
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px){
  .footer-grid { grid-template-columns:1fr; }
}

.footer-col h3 {
  color: var(--white);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-md);
  position:relative;
  padding-bottom: var(--sp-sm);
}
.footer-col h3::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:30px; height:2px;
  background: var(--gold);
  border-radius:2px;
}
.footer-col p {
  font-size: var(--fs-sm);
  line-height:1.8;
  margin-bottom: var(--sp-sm);
}
.footer-col .footer-logo { display:flex; align-items:center; gap:.5rem; margin-bottom: var(--sp-md); }
.footer-col .footer-logo img { height:36px; }
.footer-col .footer-logo span { color:var(--white); font-weight:800; font-size:1rem; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--footer-text);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display:flex; align-items:center; gap:.5rem;
  font-size: var(--fs-sm);
  margin-bottom: .6rem;
}
.footer-contact-item svg { width:16px; height:16px; color: var(--gold); flex-shrink:0; }

.newsletter-form {
  display:flex;
  gap: var(--sp-xs);
}
.newsletter-form input {
  flex:1;
  padding: .65rem .85rem;
  border:1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: var(--fs-sm);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus {
  border-color: var(--gold);
  outline:none;
}
.newsletter-form button {
  padding: .65rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight:700;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  cursor:pointer;
  transition: background var(--transition);
  white-space:nowrap;
}
.newsletter-form button:hover { background: var(--gold-dark); }

.footer-bottom {
  padding: var(--sp-md) 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size: var(--fs-xs);
  flex-wrap:wrap;
  gap: var(--sp-sm);
}

.footer-legal {
  font-size: var(--fs-xs);
  opacity: .6;
}
.footer-legal a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); opacity:1; }
.footer-legal .sep { margin: 0 .5em; }

.footer-credit {
  font-style: italic;
  opacity: .7;
}
.footer-credit strong {
  color: var(--gold);
  font-style: normal;
}

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
  position:fixed;
  bottom:24px; right:24px;
  z-index:900;
  width:56px; height:56px;
  background:#25d366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}
.whatsapp-float {
  animation: pulse-ring 2.5s ease infinite;
}
.whatsapp-float:hover {
  transform:scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  animation: none;
}
.whatsapp-float svg { width:28px; height:28px; }

.back-to-top {
  position:fixed;
  bottom:90px; right:28px;
  z-index:900;
  width:42px; height:42px;
  background: var(--navy);
  color: var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  opacity:0; visibility:hidden;
  transform:translateY(10px);
  transition: all var(--transition);
  border:none;
  box-shadow: 0 2px 12px var(--shadow);
}
.back-to-top.visible {
  opacity:1; visibility:visible; transform:translateY(0);
}
.back-to-top:hover { background: var(--red); }
.back-to-top svg { width:18px; height:18px; }

/* ---------- Page Hero (internal pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: calc(var(--header-h) + var(--sp-lg)) 0 var(--sp-lg);
  text-align:center;
}
.page-hero h1 { color:var(--white); margin-bottom: var(--sp-sm); font-size: var(--fs-2xl); }
.page-hero p { color: rgba(255,255,255,.65); max-width:560px; margin:0 auto; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #182633, rgba(236,200,101,.12), #182633);
  color: var(--white);
  padding: var(--sp-xl) 0;
  text-align: center;
}
.cta-section h2 { color:var(--white); margin-bottom: var(--sp-md); }
.cta-section p { color: rgba(255,255,255,.7); max-width:550px; margin: 0 auto var(--sp-lg); }

/* ---------- Responsive Utilities ---------- */
@media(max-width:480px){
  :root { --sp-xl: 3.5rem; }
  h1 { font-size: var(--fs-xl); }
  h2 { font-size: var(--fs-lg); }
  .section-title h2 { font-size: var(--fs-lg); }
  .pricing-grid > .pricing-card { flex: 0 0 85vw; min-width: 0; }
  .services-grid { grid-template-columns:1fr; }
}
@media(max-width:768px){
  .pricing-grid > .pricing-card { flex: 0 0 calc(80vw); min-width: 260px; }
  .pricing-arrow { width:36px; height:36px; }
  .pricing-arrow-left { left:-8px; }
  .pricing-arrow-right { right:-8px; }
}

/* ---------- Mobile Responsiveness Fixes ---------- */
@media(max-width:1024px){
  .header-logo-main { height: 18px; }
  .header-tagline { display:none; }
  .toggle-group button { padding: .25rem .5rem; font-size: .65rem; }
  .currency-btn { padding: .25rem .5rem; font-size: .65rem; }
  .currency-btn svg { width: 10px; height: 10px; }
}

@media(max-width:768px){
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }
  .container { padding: 0 var(--sp-md); max-width: 100%; }

  .hero { min-height: auto; padding: calc(var(--header-h) + var(--sp-lg)) 0 var(--sp-lg); }
  .hero-inner { grid-template-columns:1fr; text-align:center; gap: var(--sp-lg); }
  .hero-content { max-width:100%; }
  .hero-btns { justify-content:center; }
  .hero-visual-card { max-width:100%; margin:0 auto; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); word-break: break-word; }
  .hero p { font-size: var(--fs-base); }

  .section-title h2 { font-size: var(--fs-lg); }
  .section-title p { font-size: var(--fs-sm); padding: 0; }

  .stats-grid { grid-template-columns:1fr 1fr; gap: var(--sp-sm); }
  .stat-item .stat-number { font-size: var(--fs-lg); }

  .services-grid { grid-template-columns:1fr; }

  .footer-grid { grid-template-columns:1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction:column; text-align:center; }

  .contact-grid { grid-template-columns:1fr; }

  .contact-lion-watermark { width: 236px; }

  .service-detail { gap: var(--sp-lg); padding: var(--sp-lg) 0; }

  .cta-section .btn { display: inline-block; margin: var(--sp-xs) var(--sp-xs); }

  .newsletter-form { flex-direction:column; }
  .newsletter-form input, .newsletter-form button { width:100%; }

  img, svg { max-width:100%; }

  .page-hero h1 { font-size: var(--fs-xl); word-break: break-word; }
  .page-hero p { font-size: var(--fs-sm); padding: 0 var(--sp-sm); }

}

@media(max-width:480px){
  .container { padding: 0 var(--sp-sm); }
  .hero-badge { font-size: .65rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
  .hero-stat .number { font-size: var(--fs-lg); }
  .hero-stat .label { font-size: .65rem; }
  .hero-content-card { padding: var(--sp-md); }
  .btn { padding: .7rem 1.2rem; font-size: var(--fs-xs); }
  .footer-col p { font-size: var(--fs-xs); }
  .faq-question { font-size: var(--fs-sm); padding: var(--sp-sm); }
  .about-logo-showcase img { max-width: 260px; }
  .contact-lion-watermark { width: 158px; }
  .about-value-card { padding: var(--sp-md); }
  .service-detail { gap: var(--sp-md); }
  .cta-section h2 { font-size: var(--fs-lg); }
  .cta-section p { font-size: var(--fs-sm); }
}

/* ---------- Blue Tone Enhancements ---------- */
/* Blue glow on card hover */
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(37,99,235,.18), 0 4px 16px var(--shadow-lg);
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(37,99,235,.15), 0 4px 12px var(--shadow-lg);
}
/* Blue-tinted footer top border */
.site-footer {
  border-top: 2px solid rgba(37,99,235,.25);
}

/* ---------- Hero Stats Section ---------- */
.hero-stats-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--bg) 100%);
  padding: var(--sp-lg) 0;
  position: relative;
}
.hero-stats-section .hero-stat-grid {
  max-width: 100%;
}

/* ---------- Hero Stagger Animations ---------- */
.hero-badge-anim,
.hero-h1-anim,
.hero-p-anim,
.hero-btns-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.hero-badge-anim {
  transform: translateX(-30px);
  transition-delay: 0s;
}
.hero-content.visible .hero-badge-anim {
  opacity: 1;
  transform: translateX(0);
}
.hero-content.visible .hero-h1-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}
.hero-content.visible .hero-p-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}
.hero-content.visible .hero-btns-anim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .45s;
}

/* Accent glow animation */
@keyframes accent-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(236,200,101,.3); }
  50% { text-shadow: 0 0 20px rgba(236,200,101,.6), 0 0 40px rgba(236,200,101,.2); }
}
.hero h1 .accent {
  animation: accent-glow 3s ease-in-out infinite;
}


/* ---------- Footer Full Logo ---------- */
.footer-logo-full {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-md);
}
.footer-logo-full img {
  height: 90px;
  width: auto;
  max-width: 400px;
}

/* ---------- Form Submit Spinner ---------- */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Form Success Message ---------- */
.form-success-message {
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-success-message h3 {
  color: var(--gold);
  margin-bottom: var(--sp-md);
}
.form-success-message p {
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}

/* ---------- Hero Content Card ---------- */
.hero-content-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.hero-content-card:hover {
  transform: scale(1.02);
}

/* ---------- Mobile Decorative Lion (disabled for performance) ---------- */
body::before { content: none; }

/* ---------- Stats section mobile 2x2 ---------- */
@media(max-width:768px){
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  box-shadow: 0 -4px 24px var(--shadow-lg);
  transform: translateY(100%);
  animation: cookie-slide-up .4s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes cookie-slide-up {
  to { transform: translateY(0); }
}
.cookie-banner-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner-buttons {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: .55rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.cookie-btn-accept:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  padding: .55rem 1.4rem;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
@media(max-width:600px){
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-md);
    gap: var(--sp-sm);
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Mobile Performance ---------- */
@media(max-width:768px){
  /* Disable expensive backdrop-filter on mobile */
  .hero-content-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,.06);
  }
  .stats-carousel-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Fix stats carousel vertical glitch: disable reveal and hover transforms */
  .stats-carousel-card.reveal,
  .stats-carousel-card.reveal.visible {
    opacity: 1;
    transform: none;
    transition: box-shadow var(--transition);
  }
  .stats-carousel-card:hover {
    transform: none;
  }

  /* Ensure last pricing card is fully scrollable */
  .pricing-grid::after {
    content: '';
    flex: 0 0 var(--sp-md);
  }
}

/* ========== Tablet Optimisation (768px – 1024px) ========== */
/* Overrides mobile (max-width:768px) rules so tablets keep a polished,
   two-column layout instead of collapsing to single-column mobile view. */
@media (min-width: 768px) and (max-width: 1024px) {

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + var(--sp-lg)) 0 var(--sp-lg);
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: var(--sp-md);
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: flex-start; }
  .hero-visual { order: 0; }
  .hero-logo-img { width: 100%; max-width: 100%; }
  .hero h1 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
  .hero p { font-size: var(--fs-sm); margin-bottom: var(--sp-md); }
  .hero::after { width: 400px; height: 490px; }

  /* Hero content card — tablets have enough GPU for blur */
  .hero-content-card {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,.04);
    padding: var(--sp-md);
  }

  /* Hero stats: compact 4-column */
  .hero-stat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-sm);
  }
  .hero-stat { padding: var(--sp-sm); }
  .hero-stat .number { font-size: var(--fs-lg); }
  .hero-stat .label { font-size: .65rem; }

  /* ── Stats Bar ── */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-sm);
  }
  .stat-item .stat-number { font-size: var(--fs-lg); }

  /* ── Stats Carousel: 3 cards ── */
  .stats-carousel-card {
    flex: 0 0 calc(33.333% - var(--sp-md) * 2 / 3);
    min-width: 180px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .stats-carousel-btn { width: 40px; height: 40px; }
  .stats-carousel-btn svg { width: 18px; height: 18px; }

  /* ── Pricing: 2 cards side-by-side ── */
  .pricing-grid > .pricing-card {
    flex: 0 0 calc(50% - var(--sp-md) / 2);
    min-width: 260px;
  }
  .pricing-arrow { width: 40px; height: 40px; }
  .pricing-arrow-left { left: -12px; }
  .pricing-arrow-right { right: -12px; }
  .plan-price.plan-price-long { font-size: var(--fs-xl); }

  /* ── Plan Guide: keep 2-column ── */
  .plan-guide-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Services: 2-column ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── About Values: 2-column ── */
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Service Detail: keep 2-column side-by-side ── */
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    padding: var(--sp-lg) 0;
  }
  .service-detail.reverse { direction: rtl; }
  .service-detail.reverse > * { direction: ltr; }
  .service-detail-image { order: 0; }

  /* ── Contact: 2-column ── */
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-lion-watermark { width: 350px; }

  /* ── Footer: 2-column ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: row; text-align: left; }

  /* ── Newsletter: horizontal ── */
  .newsletter-form { flex-direction: row; }
  .newsletter-form input { flex: 1; width: auto; }
  .newsletter-form button { width: auto; }

  /* ── Section Titles ── */
  .section-title h2 { font-size: var(--fs-xl); }

  /* ── Page Hero (internal pages) ── */
  .page-hero h1 { font-size: var(--fs-xl); }
  .page-hero p { font-size: var(--fs-sm); }

  /* ── CTA ── */
  .cta-section .btn { display: inline-flex; }
}

/* ---------- 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;
  }
}

   PREMIUM DESIGN SYSTEM (StoryBrand)
   Extracted from homepage — shared across all pages
   ===================================================== */


/* ── GLOBAL OVERFLOW FIX ── */
html { overflow-x:hidden; }

/* ── PREMIUM DESIGN SYSTEM ── */
.sb-section { padding: clamp(5rem,12vw,9rem) 0; position: relative; overflow: hidden; }
.sb-section--alt { background: linear-gradient(180deg, #111d2b 0%, #0f1923 100%); }
.sb-section--navy { background: linear-gradient(160deg, #081220 0%, #0e1f30 30%, #162d42 70%, #0d1a28 100%); }
.sb-section--dark { background: linear-gradient(180deg, #0b1520 0%, #0f1923 100%); }
.sb-section--light { background: linear-gradient(180deg, #f9f8f5 0%, #f3f1ec 100%); }
.sb-section--light .sb-display, .sb-section--light h2, .sb-section--light h3 { color: #1a2836; }
.sb-section--light .sb-body, .sb-section--light p { color: #4a5968; }
.sb-section--light .sb-label { color: var(--gold-dark); }
.sb-section--light .sb-label::before { background: linear-gradient(90deg, transparent, var(--gold-dark)); }
.sb-section--light .sb-label::after { background: linear-gradient(90deg, var(--gold-dark), transparent); }
.sb-section--light .sb-header p { color: #5a6b7d; }
.sb-section--light .sb-problem-card,
.sb-section--light .sb-step,
.sb-section--light .sb-testimonial,
.sb-section--light .sb-pricing-tier,
.sb-section--light .sb-portfolio-card { background: #fff; border-color: rgba(0,0,0,0.06); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.sb-section--light .sb-problem-card:hover,
.sb-section--light .sb-step:hover,
.sb-section--light .sb-testimonial:hover,
.sb-section--light .sb-portfolio-card:hover { border-color: rgba(212,168,67,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.sb-section--light .sb-problem-card h3,
.sb-section--light .sb-step h3,
.sb-section--light .sb-portfolio-body h3 { color: #1a2836; }
.sb-section--light .sb-problem-card p,
.sb-section--light .sb-step p,
.sb-section--light .sb-portfolio-body p { color: #5a6b7d; }
.sb-section--light .sb-problem-type { color: var(--gold-dark); }
.sb-section--light .sb-problem-icon { background: rgba(212,168,67,0.08); border-color: rgba(212,168,67,0.2); }
.sb-section--light .sb-step-connector { background: rgba(212,168,67,0.2); }
.sb-section--light .sb-stakes-card--success { background: rgba(212,168,67,0.04); border-color: rgba(212,168,67,0.15); }
.sb-section--light .sb-stakes-card--failure { background: rgba(255,26,26,0.03); border-color: rgba(255,26,26,0.1); }
.sb-section--light .sb-stakes-card h3 { color: #1a2836; }
.sb-section--light .sb-stakes-card--success h3 { color: var(--gold-dark); }
.sb-section--light .sb-stakes-card--failure h3 { color: #c00; }
.sb-section--light .sb-stakes-list li { color: #4a5968; }
.sb-section--light .sb-stakes-card--success .sb-stakes-list li svg { stroke: var(--gold-dark); }
.sb-section--light .sb-stakes-card--failure .sb-stakes-list li svg { stroke: #c00; }
.sb-section--light .sb-testimonial blockquote { color: #3a4a5a; }
.sb-section--light .sb-testimonial::before { color: rgba(212,168,67,0.15); }
.sb-section--light .sb-testimonial-name { color: #1a2836; }
.sb-section--light .sb-testimonial-role { color: #7a8a9a; }
.sb-section--light .sb-testimonial-stars svg { fill: var(--gold-dark); }
.sb-section--light .sb-portfolio-tag { color: var(--gold-dark); }
.sb-section--light .sb-pricing-tier--featured { background: linear-gradient(160deg, #1a2836 0%, #111c28 100%); }
.sb-section--light .sb-pricing-tier--featured h3,
.sb-section--light .sb-pricing-tier--featured .sb-pricing-desc,
.sb-section--light .sb-pricing-tier--featured p,
.sb-section--light .sb-pricing-tier--featured .sb-pricing-features li { color: rgba(232,236,241,0.85); }
.sb-section--light .sb-pricing-tier .sb-pricing-desc { color: #5a6b7d; }
.sb-section--light .sb-pricing-tier .sb-pricing-amount { color: #1a2836; }
.sb-section--light .sb-pricing-anchor { color: rgba(0,0,0,0.3); }
.sb-section--light .sb-pricing-features li { color: #4a5968; }
.sb-section--light .sb-pricing-features li svg { stroke: var(--gold-dark); }
.sb-section--light .sb-pricing-tier .sb-pricing-hosting { color: #7a8a9a; }
.sb-section--light .sb-pricing-tier .sb-pricing-hosting strong { color: var(--gold-dark); }
.sb-section--light .sb-btn--outline { color: var(--gold-dark); border-color: rgba(212,168,67,0.3); }
.sb-section--light .sb-btn--outline:hover { border-color: var(--gold-dark); background: rgba(212,168,67,0.06); }
.sb-section--light .sb-section--gold-accent::before { background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3), transparent); }
.sb-section--light details { background: #fff !important; border-color: rgba(0,0,0,0.06) !important; }
.sb-section--light details summary { color: #1a2836 !important; }
.sb-section--light details div { color: #5a6b7d !important; }
.sb-section--light .sb-stat { background: #fff; border-color: rgba(0,0,0,0.06); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.sb-section--light .sb-stat:hover { border-color: rgba(212,168,67,0.3); }
.sb-section--light .sb-stat-label { color: #7a8a9a; }
.sb-section--light .sb-guide-text h2 em { color: var(--gold-dark); }
.sb-section--gold-accent::before { content:''; position:absolute; top:0; left:10%; right:10%; height:1px; background:linear-gradient(90deg, transparent, rgba(236,200,101,0.4), transparent); }

/* Noise texture overlay for depth */
.sb-section::after { content:''; position:absolute; inset:0; opacity:0.015; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); pointer-events:none; z-index:0; }
.sb-section > .container { position:relative; z-index:1; }

/* ── PREMIUM TYPOGRAPHY ── */
.sb-display { font-family:var(--ff-heading); font-weight:700; line-height:1.1; letter-spacing:-0.01em; }
.sb-body { font-family:'Outfit','Inter',sans-serif; font-weight:400; }
.sb-label { font-family:'Outfit',sans-serif; font-size:0.65rem; font-weight:600; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; display:inline-flex; align-items:center; gap:12px; }
.sb-label::before { content:''; display:inline-block; width:32px; height:1px; background:linear-gradient(90deg, transparent, var(--gold)); }
.sb-label::after { content:''; display:inline-block; width:32px; height:1px; background:linear-gradient(90deg, var(--gold), transparent); }

/* ── HERO PREMIUM ── */
.sb-hero { min-height:100vh; display:flex; flex-direction:column; justify-content:center; position:relative; padding-top:calc(var(--header-h) + 2rem); padding-bottom:2rem; }
.sb-hero::before { content:''; position:absolute; top:-20%; right:-10%; width:70vw; height:70vw; border-radius:50%; background:radial-gradient(circle, rgba(236,200,101,0.03) 0%, transparent 60%); pointer-events:none; }
.sb-hero::after { content:''; position:absolute; bottom:-30%; left:-20%; width:60vw; height:60vw; border-radius:50%; background:radial-gradient(circle, rgba(37,99,235,0.02) 0%, transparent 60%); pointer-events:none; z-index:0; }
.sb-hero-inner { display:grid; grid-template-columns:1fr 1.25fr; gap:4rem; align-items:center; position:relative; z-index:2; }
.sb-hero-content { max-width:620px; }
.sb-hero-showreel { display:flex; justify-content:center; align-items:center; }

/* ── HERO DEVICE MOCKUP ── */
.hv-scene { position:relative; width:100%; max-width:520px; padding:2rem 0; }

.hv-desktop { position:relative; }
.hv-browser { border-radius:10px; overflow:hidden; background:#0c1219; border:1px solid rgba(255,255,255,0.06); box-shadow:0 40px 80px rgba(0,0,0,0.4),0 0 60px rgba(236,200,101,0.03); }
.hv-browser-bar { height:28px; background:linear-gradient(180deg,#1a2636,#152030); display:flex; align-items:center; padding:0 10px; gap:5px; border-bottom:1px solid rgba(255,255,255,0.04); }
.hv-browser-bar span { width:7px; height:7px; border-radius:50%; }
.hv-browser-bar span:nth-child(1) { background:#ff5f57; }
.hv-browser-bar span:nth-child(2) { background:#febc2e; }
.hv-browser-bar span:nth-child(3) { background:#28c840; }
.hv-screen { aspect-ratio:16/10; background:#0a1018; padding:5%; display:flex; flex-direction:column; gap:5%; }
.hv-nav { display:flex; align-items:center; height:8%; }
.hv-nav-logo { width:16%; height:60%; border-radius:3px; background:linear-gradient(135deg,rgba(236,200,101,0.4),rgba(212,168,67,0.2)); }
.hv-nav-links { margin-left:auto; display:flex; gap:5%; }
.hv-nav-links i { width:20px; height:2px; background:rgba(255,255,255,0.2); border-radius:1px; display:block; }
.hv-hero-area { flex:1; display:flex; flex-direction:column; justify-content:center; gap:6px; }
.hv-h1 { width:70%; height:10px; border-radius:3px; background:linear-gradient(90deg,rgba(255,255,255,0.2),rgba(255,255,255,0.08)); }
.hv-h1s { width:50%; height:8px; border-radius:3px; background:linear-gradient(90deg,rgba(236,200,101,0.35),rgba(236,200,101,0.12)); }
.hv-p { width:85%; height:4px; border-radius:2px; background:rgba(255,255,255,0.06); margin-top:2px; }
.hv-btn { width:22%; height:14px; border-radius:5px; background:linear-gradient(135deg,#d4a843,#c49630); margin-top:8px; box-shadow:0 3px 10px rgba(212,168,67,0.2); }
.hv-cards { display:flex; gap:3%; height:20%; }
.hv-card { flex:1; border-radius:6px; background:linear-gradient(160deg,rgba(22,38,56,0.7),rgba(14,26,42,0.8)); border:1px solid rgba(255,255,255,0.03); }
.hv-stand { width:30%; height:16px; margin:0 auto; background:linear-gradient(180deg,rgba(255,255,255,0.04),rgba(255,255,255,0.01)); border-radius:0 0 8px 8px; }

/* Phone */
.hv-phone { position:absolute; bottom:-10px; right:-30px; width:22%; border-radius:12px; background:#0c1219; border:2px solid rgba(255,255,255,0.08); box-shadow:0 20px 50px rgba(0,0,0,0.5); overflow:hidden; z-index:2; }
.hv-phone-screen { aspect-ratio:9/16; background:#0a1018; padding:8%; display:flex; flex-direction:column; gap:6%; }
.hv-ph-nav { height:6%; border-radius:2px; background:rgba(236,200,101,0.15); }
.hv-ph-hero { flex:1; border-radius:4px; background:linear-gradient(180deg,rgba(22,45,66,0.6),rgba(15,25,35,0.5)); }
.hv-ph-btn { height:8%; border-radius:4px; background:linear-gradient(135deg,#d4a843,#c49630); }
.hv-ph-cards { display:flex; gap:4%; height:18%; }
.hv-ph-card { flex:1; border-radius:3px; background:rgba(22,38,56,0.5); border:1px solid rgba(255,255,255,0.02); }

/* Floating metrics */
.hv-metric { position:absolute; display:flex; align-items:center; gap:6px; padding:5px 12px; border-radius:8px; background:rgba(8,18,32,0.9); backdrop-filter:blur(8px); border:1px solid rgba(236,200,101,0.1); font-family:'Outfit',sans-serif; font-size:0.6rem; color:rgba(168,183,204,0.7); font-weight:400; z-index:3; box-shadow:0 8px 24px rgba(0,0,0,0.3); }
.hv-metric strong { color:var(--gold); font-weight:600; }
.hv-metric--1 { top:15%; right:-15px; animation:hv-float 4s ease-in-out infinite; }
.hv-metric--2 { top:50%; left:-20px; animation:hv-float 5s ease-in-out 1s infinite; }
.hv-metric--2 strong { color:#28c840; }
.hv-metric--3 { bottom:18%; right:5%; animation:hv-float 4.5s ease-in-out 0.5s infinite; }
@keyframes hv-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
.sb-hero h1 { font-size:clamp(2rem,4.5vw,3.2rem); color:var(--white); margin-bottom:1rem; line-height:1.08; }
.sb-hero h1 em { color:var(--gold); font-style:normal; font-weight:700; display:block; margin-top:0.1em; }
.sb-hero-sub { font-size:clamp(0.9rem,1.4vw,1.05rem); color:rgba(168,183,204,0.9); line-height:1.7; margin-bottom:1.5rem; font-weight:400; }
/* Hero alert card */
.sb-hero-alert { display:inline-flex; align-items:center; gap:0.6rem; padding:0.5rem 1.4rem; border-radius:50px; background:rgba(40,200,64,0.06); border:1px solid rgba(40,200,64,0.2); font-family:'Outfit',sans-serif; font-size:0.72rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:rgba(40,200,64,0.85); margin-bottom:1.4rem; }
.sb-hero-alert-dot { width:7px; height:7px; border-radius:50%; background:#28c840; animation:sb-pulse 2s ease-in-out infinite; flex-shrink:0; box-shadow:0 0 8px rgba(40,200,64,0.4); }

.sb-hero-ctas { display:flex; gap:1.2rem; flex-wrap:wrap; justify-content:center; }
.sb-hero-ctas .sb-btn { flex:1 1 0; min-width:200px; max-width:260px; justify-content:center; text-align:center; }
.sb-hero-visual { display:flex; justify-content:center; align-items:center; perspective:1200px; }

/* ── CINEMATIC SHOWREEL ── */
.sr-wrap { width:100%; max-width:680px; position:relative; transform:perspective(1600px) rotateX(3deg) rotateY(-1.5deg); animation:sr-float 7s ease-in-out infinite; transition:transform 0.6s cubic-bezier(0.4,0,0.2,1); transform-style:preserve-3d; }
.sr-wrap:hover { transform:perspective(1600px) rotateX(0) rotateY(0) scale(1.02); }
/* Strong ambient gold glow — the "halo" that makes the floating screen feel premium */
.sr-wrap::before { content:''; position:absolute; left:50%; top:50%; width:140%; height:160%; transform:translate(-50%,-50%); background:radial-gradient(ellipse at center, rgba(236,200,101,0.18) 0%, rgba(236,200,101,0.08) 25%, rgba(96,165,250,0.04) 50%, transparent 70%); filter:blur(60px); z-index:-1; pointer-events:none; }
/* Soft cool under-glow reinforcing depth */
.sr-wrap::after { content:''; position:absolute; left:50%; bottom:-8%; width:80%; height:30px; transform:translateX(-50%); background:radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 70%); filter:blur(20px); z-index:-1; pointer-events:none; }

/* Screen — minimal 2px bezel, infinity-display look */
.sr-screen { border-radius:12px; overflow:hidden; position:relative; background:#080e17; border:2px solid rgba(255,255,255,0.06); box-shadow:0 60px 120px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(236,200,101,0.08) inset, 0 0 120px rgba(236,200,101,0.08); }
/* Subtle vignette + diagonal light reflection on the screen surface */
.sr-screen::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 70% 0%, rgba(255,255,255,0.05) 0%, transparent 40%), linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.15) 100%); pointer-events:none; mix-blend-mode:overlay; z-index:4; border-radius:12px; }

/* Browser bar */
.sr-bar { height:30px; background:linear-gradient(180deg,#15202e,#111c28); display:flex; align-items:center; padding:0 12px; gap:6px; border-bottom:1px solid rgba(255,255,255,0.04); }
.sr-dot { width:7px; height:7px; border-radius:50%; }
.sr-dot:nth-child(1) { background:#ff5f57; }
.sr-dot:nth-child(2) { background:#febc2e; }
.sr-dot:nth-child(3) { background:#28c840; }
.sr-url { margin-left:10px; flex:1; height:16px; border-radius:3px; background:rgba(255,255,255,0.05); display:flex; align-items:center; padding:0 8px; font-family:'Outfit',monospace; font-size:0.5rem; color:rgba(148,163,184,0.4); letter-spacing:0.03em; overflow:hidden; }
.sr-url-text { opacity:0; transition:opacity 0.4s; }
.sr-url-text.active { opacity:1; }

/* Viewport */
.sr-body { aspect-ratio:16/10; position:relative; overflow:hidden; background:#0a1018; }

/* Slides */
.sr-slide { position:absolute; inset:0; opacity:0; transform:scale(1.04); transition:opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 6s cubic-bezier(0.4,0,0.2,1); will-change:opacity,transform; }
.sr-slide.active { opacity:1; transform:scale(1); }
.sr-slide img { width:100%; height:100%; object-fit:cover; object-position:top; }

/* Scan line overlay */
.sr-scan { position:absolute; inset:0; pointer-events:none; background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,0.03) 2px,rgba(0,0,0,0.03) 4px); z-index:2; }
.sr-scan::after { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(236,200,101,0.15),transparent); animation:sr-scanline 4s linear infinite; z-index:3; }

/* Corner glow */
.sr-glow { position:absolute; top:-1px; left:-1px; right:-1px; bottom:-1px; border-radius:14px; pointer-events:none; z-index:3; }
.sr-glow::before { content:''; position:absolute; inset:0; border-radius:14px; border:1px solid transparent; background:linear-gradient(135deg,rgba(236,200,101,0.15),transparent 30%,transparent 70%,rgba(236,200,101,0.08)) border-box; -webkit-mask:linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; animation:sr-glow-pulse 4s ease-in-out infinite; }

/* Label overlay */
.sr-label { position:absolute; bottom:12px; left:12px; z-index:4; background:rgba(8,14,23,0.85); backdrop-filter:blur(12px); border:1px solid rgba(236,200,101,0.12); border-radius:8px; padding:6px 14px; display:flex; align-items:center; gap:8px; opacity:0; transform:translateY(8px); transition:opacity 0.6s 0.3s, transform 0.6s 0.3s; }
.sr-label.active { opacity:1; transform:translateY(0); }
.sr-label-dot { width:6px; height:6px; border-radius:50%; background:var(--gold); animation:sr-pulse 2s ease-in-out infinite; }
.sr-label-text { font-family:'Outfit',sans-serif; font-size:0.65rem; color:rgba(255,255,255,0.7); letter-spacing:0.06em; font-weight:500; }
.sr-label-name { color:var(--gold); font-weight:600; }

/* Progress dots */
.sr-dots { position:absolute; bottom:12px; right:12px; z-index:4; display:flex; gap:4px; }
.sr-nav-dot { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,0.15); transition:all 0.4s; cursor:pointer; }
.sr-nav-dot.active { background:var(--gold); box-shadow:0 0 6px rgba(236,200,101,0.4); transform:scale(1.2); }

/* Counter */
.sr-counter { position:absolute; top:10px; right:12px; z-index:4; font-family:'Outfit',sans-serif; font-size:0.6rem; color:rgba(255,255,255,0.35); letter-spacing:0.08em; font-weight:500; }

/* Reflection */
.sr-reflection { height:50px; background:linear-gradient(180deg,rgba(236,200,101,0.03),transparent); border-radius:0 0 50% 50%; margin:-1px 8% 0; filter:blur(10px); }

/* Keyframes */
@keyframes sr-float { 0%,100% { transform:rotateY(-3deg) rotateX(1.5deg) translateY(0); } 50% { transform:rotateY(-3deg) rotateX(1.5deg) translateY(-10px); } }
@keyframes sr-scanline { 0% { top:-1px; } 100% { top:100%; } }
@keyframes sr-glow-pulse { 0%,100% { opacity:0.5; } 50% { opacity:1; } }
@keyframes sr-pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.sb-hero-scroll { position:absolute; bottom:7.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:0.6rem; color:rgba(148,163,184,0.5); font-family:'Outfit',sans-serif; font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; font-weight:500; animation:sb-bounce 2.5s ease-in-out infinite; }
.sb-hero-scroll svg { width:18px; height:18px; stroke:var(--gold); opacity:0.6; }
@keyframes sb-bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ── PROBLEM CARDS PREMIUM ── */
.sb-problem-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.5rem; }
.sb-problem-card { background:linear-gradient(160deg, rgba(22,34,49,0.9) 0%, rgba(11,21,32,0.95) 100%); border:1px solid rgba(255,255,255,0.04); border-radius:16px; padding:2.8rem 2.2rem; position:relative; transition:all 0.5s cubic-bezier(0.4,0,0.2,1); backdrop-filter:blur(10px); }
.sb-problem-card:hover { border-color:rgba(236,200,101,0.2); transform:translateY(-8px); box-shadow:0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(236,200,101,0.05) inset; }
.sb-problem-card::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(236,200,101,0.3), transparent); opacity:0; transition:opacity 0.5s; }
.sb-problem-card:hover::before { opacity:1; }
.sb-problem-icon { width:52px; height:52px; border-radius:14px; background:rgba(236,200,101,0.05); border:1px solid rgba(236,200,101,0.1); display:flex; align-items:center; justify-content:center; margin-bottom:1.8rem; color:var(--gold); transition:all 0.4s; }
.sb-problem-card:hover .sb-problem-icon { background:rgba(236,200,101,0.1); border-color:rgba(236,200,101,0.25); transform:scale(1.05); }
.sb-problem-type { font-family:'Outfit',sans-serif; font-size:0.6rem; letter-spacing:0.25em; text-transform:uppercase; color:rgba(236,200,101,0.7); margin-bottom:0.8rem; font-weight:600; }
.sb-problem-card h3 { font-size:1.35rem; color:var(--white); margin-bottom:1.2rem; line-height:1.35; font-weight:500; }
.sb-problem-card p { font-size:0.9rem; color:rgba(168,183,204,0.8); line-height:1.8; font-weight:400; }

/* ── GUIDE PREMIUM ── */
.sb-guide-inner { display:grid; grid-template-columns:1.2fr 0.8fr; gap:5rem; align-items:center; }
.sb-guide-text h2 { font-size:clamp(2rem,4vw,3rem); color:var(--white); margin-bottom:1.8rem; }
.sb-guide-text h2 em { color:var(--gold); font-style:normal; font-weight:700; }
.sb-guide-text p { color:rgba(168,183,204,0.85); font-size:1.05rem; line-height:1.9; margin-bottom:1.5rem; font-weight:400; }
.sb-guide-stats { display:grid; grid-template-columns:1fr; gap:1.2rem; }
.sb-stat { text-align:center; padding:2rem 1.5rem; background:linear-gradient(145deg, rgba(22,34,49,0.8) 0%, rgba(11,21,32,0.9) 100%); border:1px solid rgba(255,255,255,0.04); border-radius:16px; transition:all 0.4s; }
.sb-stat:hover { border-color:rgba(236,200,101,0.15); transform:translateY(-3px); }
.sb-stat-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:700; color:var(--gold); line-height:1; }
.sb-stat-label { font-family:'Outfit',sans-serif; font-size:0.65rem; color:rgba(148,163,184,0.6); text-transform:uppercase; letter-spacing:0.2em; margin-top:0.6rem; font-weight:500; }

/* ── PLAN PREMIUM ── */
.sb-plan-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.5rem; counter-reset:step; }
.sb-step { position:relative; padding:3rem 2rem 2.5rem; text-align:center; counter-increment:step; background:linear-gradient(160deg, rgba(22,34,49,0.5) 0%, rgba(11,21,32,0.6) 100%); border:1px solid rgba(255,255,255,0.03); border-radius:16px; transition:all 0.4s; }
.sb-step:hover { border-color:rgba(236,200,101,0.12); transform:translateY(-4px); }
.sb-step::before { content:counter(step); font-family:'Cormorant Garamond',serif; font-size:6rem; font-weight:700; color:rgba(236,200,101,0.04); position:absolute; top:-0.5rem; left:50%; transform:translateX(-50%); line-height:1; pointer-events:none; }
.sb-step-icon { width:60px; height:60px; border-radius:50%; background:linear-gradient(135deg, var(--gold) 0%, #d4a843 100%); display:flex; align-items:center; justify-content:center; margin:0 auto 1.8rem; position:relative; z-index:1; box-shadow:0 8px 24px rgba(236,200,101,0.15); }
.sb-step-icon svg { width:26px; height:26px; stroke:var(--navy); stroke-width:2; fill:none; }
.sb-step h3 { font-size:1.2rem; color:var(--white); margin-bottom:0.8rem; font-weight:500; }
.sb-step p { font-size:0.88rem; color:rgba(168,183,204,0.75); line-height:1.75; font-weight:400; }
.sb-step-connector { display:none; }
@media(min-width:769px) {
  .sb-step-connector { display:block; position:absolute; top:5rem; right:-0.75rem; width:1.5rem; height:1px; background:rgba(236,200,101,0.15); }
  .sb-step:last-child .sb-step-connector { display:none; }
}

/* ── PORTFOLIO PREMIUM ── */
.sb-portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.5rem; }
.sb-portfolio-card { border-radius:16px; overflow:hidden; background:linear-gradient(160deg, rgba(22,34,49,0.8) 0%, rgba(11,21,32,0.9) 100%); border:1px solid rgba(255,255,255,0.04); transition:all 0.5s cubic-bezier(0.4,0,0.2,1); }
.sb-portfolio-card:hover { border-color:rgba(236,200,101,0.2); transform:translateY(-8px); box-shadow:0 30px 60px rgba(0,0,0,0.4); }
.sb-portfolio-img { height:240px; overflow:hidden; position:relative; }
.sb-portfolio-card:hover .sb-portfolio-img img { transform:scale(1.08); }
.sb-portfolio-overlay { position:absolute; inset:0; background:linear-gradient(0deg, rgba(8,18,32,0.9) 0%, rgba(8,18,32,0.3) 40%, transparent 60%); display:flex; align-items:flex-end; padding:1.8rem; opacity:0; transition:all 0.5s; }
.sb-portfolio-card:hover .sb-portfolio-overlay { opacity:1; }
.sb-portfolio-overlay a { color:var(--gold); font-family:'Outfit',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; text-decoration:none; display:flex; align-items:center; gap:0.5rem; transition:gap 0.3s; }
.sb-portfolio-overlay a:hover { gap:0.8rem; }
.sb-portfolio-body { padding:1.8rem; }
.sb-portfolio-tag { font-family:'Outfit',sans-serif; font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(236,200,101,0.7); font-weight:600; margin-bottom:0.6rem; }
.sb-portfolio-body h3 { font-size:1.25rem; color:var(--white); margin-bottom:0.6rem; font-weight:500; }
.sb-portfolio-body p { font-size:0.85rem; color:rgba(168,183,204,0.75); line-height:1.7; font-weight:400; }

/* ── STAKES PREMIUM ── */
.sb-stakes { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:3.5rem; }
.sb-stakes-card { padding:3rem; border-radius:16px; backdrop-filter:blur(10px); }
.sb-stakes-card--success { background:linear-gradient(160deg, rgba(236,200,101,0.06) 0%, rgba(236,200,101,0.01) 100%); border:1px solid rgba(236,200,101,0.1); }
.sb-stakes-card--failure { background:linear-gradient(160deg, rgba(255,26,26,0.04) 0%, rgba(255,26,26,0.005) 100%); border:1px solid rgba(255,26,26,0.08); }
.sb-stakes-card h3 { font-size:1.5rem; margin-bottom:1.8rem; font-weight:500; }
.sb-stakes-card--success h3 { color:var(--gold); }
.sb-stakes-card--failure h3 { color:rgba(255,26,26,0.8); }
.sb-stakes-list { list-style:none; display:flex; flex-direction:column; gap:1.2rem; }
.sb-stakes-list li { display:flex; gap:0.85rem; align-items:flex-start; font-size:0.9rem; color:rgba(168,183,204,0.85); line-height:1.7; font-weight:400; }
.sb-stakes-list li svg { flex-shrink:0; width:18px; height:18px; margin-top:3px; }
.sb-stakes-card--success .sb-stakes-list li svg { stroke:var(--gold); }
.sb-stakes-card--failure .sb-stakes-list li svg { stroke:rgba(255,26,26,0.6); }

/* ── PRICING PREMIUM ── */
.sb-pricing-card { max-width:640px; margin:3.5rem auto 0; background:linear-gradient(160deg, rgba(22,34,49,0.85) 0%, rgba(11,21,32,0.95) 100%); border:1px solid rgba(236,200,101,0.1); border-radius:20px; padding:3.5rem; text-align:center; position:relative; backdrop-filter:blur(10px); }
.sb-pricing-card::before { content:''; position:absolute; top:-1px; left:4rem; right:4rem; height:1px; background:linear-gradient(90deg, transparent, var(--gold), transparent); }
.sb-pricing-card::after { content:''; position:absolute; inset:0; border-radius:20px; background:radial-gradient(ellipse at 50% 0%, rgba(236,200,101,0.03) 0%, transparent 50%); pointer-events:none; }
.sb-pricing-from { font-family:'Outfit',sans-serif; font-size:0.7rem; color:rgba(148,163,184,0.6); text-transform:uppercase; letter-spacing:0.2em; margin-bottom:0.6rem; font-weight:500; }
.sb-pricing-amount { font-family:'Cormorant Garamond',serif; font-size:clamp(3.5rem,7vw,5rem); font-weight:700; color:var(--white); line-height:1; position:relative; z-index:1; }
.sb-pricing-desc { font-size:0.95rem; color:rgba(148,163,184,0.7); margin:1.8rem auto; line-height:1.8; max-width:440px; font-weight:300; position:relative; z-index:1; }
.sb-pricing-includes { display:flex; flex-wrap:wrap; justify-content:center; gap:0.6rem 1.2rem; margin:2rem 0; position:relative; z-index:1; }
.sb-pricing-includes span { font-family:'Outfit',sans-serif; font-size:0.8rem; color:rgba(232,236,241,0.85); display:flex; align-items:center; gap:0.4rem; font-weight:400; }
.sb-pricing-includes svg { width:14px; height:14px; stroke:var(--gold); fill:none; }
.sb-pricing-hosting { font-family:'Outfit',sans-serif; font-size:0.8rem; color:rgba(148,163,184,0.6); margin-bottom:2.2rem; font-weight:400; position:relative; z-index:1; }
.sb-pricing-hosting strong { color:var(--gold); font-weight:600; }

/* ── FINAL CTA PREMIUM ── */
.sb-final-cta { text-align:center; }
.sb-final-cta h2 { font-size:clamp(2.2rem,4.5vw,3.5rem); color:var(--white); margin-bottom:1.2rem; }
.sb-final-cta h2 em { color:var(--gold); font-style:normal; font-weight:700; }
.sb-final-cta > p { font-size:1.05rem; color:rgba(168,183,204,0.8); margin-bottom:2.8rem; max-width:520px; margin-left:auto; margin-right:auto; font-weight:400; line-height:1.8; }
.sb-final-ctas { display:flex; gap:1.2rem; justify-content:center; flex-wrap:wrap; }
.sb-final-divider { width:48px; height:1px; background:linear-gradient(90deg, transparent, var(--gold), transparent); margin:2.5rem auto; }
.sb-final-email { font-family:'Outfit',sans-serif; font-size:0.85rem; color:rgba(148,163,184,0.5); font-weight:400; }
.sb-final-email a { color:rgba(236,200,101,0.7); text-decoration:none; font-weight:500; transition:color 0.3s; }
.sb-final-email a:hover { color:var(--gold); }

/* ── BUTTONS PREMIUM ── */
.sb-btn { display:inline-flex; align-items:center; gap:0.7rem; padding:0.95rem 2.2rem; font-family:'Outfit',sans-serif; font-size:0.82rem; font-weight:600; border-radius:8px; text-decoration:none; transition:all 0.4s cubic-bezier(0.4,0,0.2,1); border:none; cursor:pointer; letter-spacing:0.06em; text-transform:uppercase; }
.sb-btn--gold { background:linear-gradient(135deg, var(--gold) 0%, #d4a843 100%); color:var(--navy); box-shadow:0 4px 16px rgba(236,200,101,0.15); }
.sb-btn--gold:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(236,200,101,0.25); filter:brightness(1.05); }
.sb-btn--outline { background:transparent; color:var(--gold); border:1px solid rgba(236,200,101,0.25); }
.sb-btn--outline:hover { border-color:rgba(236,200,101,0.6); background:rgba(236,200,101,0.04); transform:translateY(-2px); }
.sb-btn--whatsapp { background:linear-gradient(135deg, #25D366 0%, #1ea952 100%); color:#fff; box-shadow:0 4px 16px rgba(37,211,102,0.15); }
.sb-btn--whatsapp:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(37,211,102,0.25); filter:brightness(1.05); }
.sb-btn svg { width:16px; height:16px; }

/* ── SECTION HEADERS PREMIUM ── */
.sb-header { text-align:center; max-width:680px; margin:0 auto 1rem; }
.sb-header h2 { font-size:clamp(2rem,4vw,3rem); color:var(--white); margin-bottom:1.2rem; }
.sb-header h2 em { color:var(--gold); font-style:normal; font-weight:700; }
.sb-header p { font-size:1rem; color:rgba(168,183,204,0.75); line-height:1.8; font-weight:400; }

/* ── SCROLL REVEAL ── */
.sb-reveal { opacity:0; transform:translateY(35px); transition:opacity 1s cubic-bezier(0.25,0.46,0.45,0.94), transform 1s cubic-bezier(0.25,0.46,0.45,0.94); }
.sb-reveal.visible { opacity:1; transform:translateY(0); }

/* ── PRICING GRID PREMIUM ── */
.sb-pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-top:3.5rem; align-items:stretch; }
.sb-pricing-tier { background:linear-gradient(160deg, rgba(22,34,49,0.85) 0%, rgba(11,21,32,0.95) 100%); border:1px solid rgba(255,255,255,0.04); border-radius:20px; padding:3rem 2.2rem 2.5rem; text-align:center; position:relative; backdrop-filter:blur(10px); display:flex; flex-direction:column; transition:all 0.5s cubic-bezier(0.4,0,0.2,1); }
.sb-pricing-tier:hover { border-color:rgba(236,200,101,0.15); transform:translateY(-6px); box-shadow:0 30px 60px rgba(0,0,0,0.4); }
.sb-pricing-tier--featured { border-color:rgba(236,200,101,0.3); box-shadow:0 4px 30px rgba(236,200,101,0.1); transform:scale(1.04); z-index:2; }
.sb-pricing-tier--featured:hover { transform:scale(1.04) translateY(-6px); box-shadow:0 30px 60px rgba(236,200,101,0.15); }
.sb-pricing-tier--featured::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--gold), #d4a843); border-radius:20px 20px 0 0; }
.sb-pricing-badge { display:inline-block; padding:0.3rem 1rem; font-family:'Outfit',sans-serif; font-size:0.65rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--navy); background:var(--gold); border-radius:30px; margin-bottom:1.2rem; }
.sb-pricing-tier h3 { font-family:'Outfit',sans-serif; font-size:1.3rem; font-weight:600; color:var(--white); margin-bottom:0.5rem; }
.sb-pricing-tier .sb-pricing-desc { font-size:0.82rem; color:rgba(148,163,184,0.6); margin-bottom:1.5rem; line-height:1.6; font-weight:300; max-width:none; }
.sb-pricing-tier .sb-pricing-amount { font-family:'Cormorant Garamond',serif; font-size:3.2rem; font-weight:700; color:var(--white); line-height:1; margin-bottom:0.3rem; }
.sb-pricing-tier--featured .sb-pricing-amount { color:var(--gold); }
.sb-pricing-anchor { text-decoration:line-through; color:rgba(148,163,184,0.35); font-size:1.1rem; font-family:'Outfit',sans-serif; font-weight:400; margin-bottom:0.2rem; }
.sb-pricing-features { list-style:none; text-align:left; display:flex; flex-direction:column; gap:0.7rem; margin-bottom:2rem; flex-grow:1; }
.sb-pricing-features li { display:flex; align-items:flex-start; gap:0.6rem; font-family:'Outfit',sans-serif; font-size:0.82rem; color:rgba(232,236,241,0.8); font-weight:400; line-height:1.5; }
.sb-pricing-features li svg { flex-shrink:0; width:16px; height:16px; stroke:var(--gold); fill:none; margin-top:2px; }
.sb-pricing-tier .sb-btn { width:100%; justify-content:center; margin-top:auto; }

/* ── TESTIMONIALS PREMIUM ── */
.sb-testimonials-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3.5rem; max-width:1000px; margin-left:auto; margin-right:auto; }
.sb-testimonial { background:linear-gradient(160deg, rgba(22,34,49,0.8) 0%, rgba(11,21,32,0.9) 100%); border:1px solid rgba(255,255,255,0.04); border-radius:16px; padding:2.5rem 2rem; position:relative; transition:all 0.4s; }
.sb-testimonial:hover { border-color:rgba(236,200,101,0.15); transform:translateY(-4px); }
.sb-testimonial::before { content:'\201C'; position:absolute; top:1.2rem; left:1.5rem; font-family:'Cormorant Garamond',serif; font-size:4rem; color:rgba(236,200,101,0.12); line-height:1; }
.sb-testimonial blockquote { font-size:0.92rem; color:rgba(232,236,241,0.85); line-height:1.8; font-weight:400; font-style:italic; margin-bottom:1.5rem; position:relative; z-index:1; }
.sb-testimonial-author { display:flex; align-items:center; gap:0.8rem; }
.sb-testimonial-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg, var(--gold), #d4a843); display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-size:0.75rem; font-weight:700; color:var(--navy); flex-shrink:0; }
.sb-testimonial-name { font-family:'Outfit',sans-serif; font-size:0.85rem; font-weight:600; color:var(--white); }
.sb-testimonial-role { font-family:'Outfit',sans-serif; font-size:0.7rem; color:rgba(148,163,184,0.6); margin-top:0.15rem; }
.sb-testimonial-stars { display:flex; gap:2px; margin-bottom:1rem; }
.sb-testimonial-stars svg { width:14px; height:14px; fill:var(--gold); }

/* ── GUARANTEE PREMIUM ── */
.sb-guarantee { text-align:center; max-width:680px; margin:0 auto; }
.sb-guarantee-icon { width:80px; height:80px; margin:0 auto 1.8rem; border-radius:50%; background:rgba(236,200,101,0.06); border:2px solid rgba(236,200,101,0.15); display:flex; align-items:center; justify-content:center; }
.sb-guarantee-icon svg { width:36px; height:36px; stroke:var(--gold); fill:none; }
.sb-guarantee h2 { font-size:clamp(1.8rem,3.5vw,2.5rem); color:var(--white); margin-bottom:1.2rem; }
.sb-guarantee h2 em { color:var(--gold); font-style:normal; font-weight:700; }
.sb-guarantee p { font-size:1rem; color:rgba(168,183,204,0.8); line-height:1.9; font-weight:400; max-width:560px; margin:0 auto; }

/* ── URGENCY PULSE ── */
@keyframes sb-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

/* ── RESPONSIVE PREMIUM ── */

/* Tablet */
@media(max-width:1024px) {
  .sb-hero-inner { grid-template-columns:1fr; text-align:center; gap:2rem; }
  .sb-hero-showreel { display:flex !important; justify-content:center; margin-top:1rem; }
  .sr-wrap { transform:none !important; animation:none !important; max-width:420px; }
  .sb-hero-content { max-width:100%; }
  .sb-hero h1 em { display:inline; }
  .sb-hero-ctas { justify-content:center; }
  .sb-guide-inner { grid-template-columns:1fr; gap:3rem; }
  .sb-guide-stats { grid-template-columns:repeat(3,1fr); }
  .sb-portfolio-grid { grid-template-columns:repeat(2,1fr) !important; }
  .sb-testimonials-grid { grid-template-columns:repeat(2,1fr); }
  .sb-pricing-grid { grid-template-columns:repeat(2,1fr); }
}

/* Mobile hero video — hidden on desktop, replaces showreel on phones */
.sb-hero-mobile-video { display:none; }
.sb-hero-mobile-video-frame { background:#0a1018; border:1px solid rgba(236,200,101,0.18); border-radius:14px; overflow:hidden; box-shadow:0 24px 60px -28px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03); }
.sb-hero-mobile-video-frame .sr-bar { display:flex; align-items:center; gap:6px; height:28px; padding:0 10px; background:linear-gradient(180deg,#1a2332,#111726); border-bottom:1px solid rgba(255,255,255,0.05); }
.sb-hero-mobile-video-frame .sr-dot { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.2); }
.sb-hero-mobile-video-frame .sr-url { flex:1; height:16px; background:rgba(0,0,0,0.3); border-radius:4px; display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-size:0.55rem; color:rgba(232,236,241,0.6); }
.sb-hero-mobile-video-body { aspect-ratio:16/10; position:relative; overflow:hidden; background:#0a1018; }
.sb-hero-mobile-video-body video { width:100%; height:100%; object-fit:cover; display:block; }

/* Mobile */
@media(max-width:768px) {
  .sb-section { padding:clamp(3rem,8vw,5rem) 0; }
  .sb-problem-grid, .sb-plan-steps, .sb-testimonials-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .sb-portfolio-grid { grid-template-columns:1fr !important; max-width:400px; margin-left:auto; margin-right:auto; }
  .sb-stakes { grid-template-columns:1fr; }
  .sb-pricing-grid { grid-template-columns:1fr; max-width:400px; margin-left:auto; margin-right:auto; }
  .sb-pricing-tier--featured { transform:none; }
  .sb-pricing-tier--featured:hover { transform:translateY(-6px); }
  .sb-hero-mobile-video { display:block; margin:1.4rem 0 1.6rem; }
  .sb-hero-showreel { display:none !important; }
  .sb-hero-content { max-width:100% !important; min-width:0 !important; box-sizing:border-box; overflow:hidden; word-break:break-word; }
  .sb-hero-inner { max-width:100%; overflow:hidden; }
  .sb-hero-inner > * { min-width:0; }
  .trust-bar-inner { gap:1rem !important; font-size:0.72rem !important; }
  .trust-sep { display:none; }
  .sr-wrap { max-width:100% !important; }
  .sr-bar { height:26px; padding:0 8px; gap:4px; }
  .sr-dot { width:6px; height:6px; }
  .sr-url { height:14px; font-size:0.45rem; }
  .sr-counter { font-size:0.5rem; top:8px; right:8px; }
  .sr-label { bottom:6px; left:6px; padding:3px 8px; gap:5px; border-radius:6px; }
  .sr-label-dot { width:5px; height:5px; }
  .sr-label-text { font-size:0.5rem; }
  .sr-dots { bottom:6px; right:6px; gap:3px; }
  .sr-nav-dot { width:4px; height:4px; }
}

/* Small mobile */
@media(max-width:480px) {
  .sb-hero { min-height:auto; padding-top:calc(var(--header-h) + 1rem); padding-bottom:0; overflow:hidden; }
  .trust-bar { margin-top:1.5rem !important; }
  .sb-hero-inner { gap:1rem; }
  .sb-hero-content { padding:0 0.5rem; }
  .sb-label { font-size:0.55rem; margin-bottom:0.6rem; gap:8px; }
  .sb-label::before, .sb-label::after { width:20px; }
  .sb-hero h1 { font-size:clamp(1.6rem,5.8vw,2.2rem); margin-bottom:0.6rem; word-wrap:break-word; line-height:1.12; }
  .sb-hero-sub { font-size:0.78rem; margin-bottom:1rem; line-height:1.6; }
  .sb-hero-ctas, .sb-final-ctas { flex-direction:column; align-items:stretch; gap:0.6rem; }
  .sb-btn { width:100%; max-width:100%; justify-content:center; font-size:0.75rem; padding:0.7rem 1rem; white-space:normal !important; text-align:center; box-sizing:border-box; }
  .sb-guide-stats { grid-template-columns:1fr; }
  .trust-bar { padding:0.6rem 0 !important; }
  .trust-bar-inner { font-size:0.65rem !important; gap:0.6rem 1rem !important; }
  /* Urgency badge */
  .sb-urgency { font-size:0.65rem !important; padding:0.4rem 0.7rem !important; margin-top:0.8rem !important; display:flex !important; text-align:center; justify-content:center; }
  /* Showreel compact */
  .sr-body { aspect-ratio:16/9; }
  .sr-bar { height:22px; }
  .sr-dot { width:5px; height:5px; }
  .sr-url { height:12px; font-size:0.4rem; }
  .sr-wrap { max-width:100% !important; transform:none !important; animation:none !important; }
  .sr-reflection { display:none; }
  .sb-hero-showreel { margin-top:0.5rem; }
  .sb-hero-scroll { position:relative !important; bottom:auto !important; left:auto !important; transform:translateY(0); margin:0.8rem auto 0; padding-bottom:0.5rem; animation:sb-bounce-mobile 2.5s ease-in-out infinite !important; }
  .sb-hero-scroll span { font-size:0.55rem; }
  .sb-hero-scroll svg { width:14px; height:14px; }
  @keyframes sb-bounce-mobile { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(8px); } }
}

/* print */
@media print {
  .site-header, .site-footer, .whatsapp-float, .back-to-top, .mobile-overlay, .cookie-banner { display:none !important; }
  body { color:#000; background:#fff; }
}

/* ── Accent glow (matching production) ── */
.accent { color:var(--gold); }
.accent-glow { animation:accent-glow 3s ease-in-out infinite; }
@keyframes accent-glow { 0%,100% { text-shadow:0 0 8px rgba(236,200,101,.3); } 50% { text-shadow:0 0 20px rgba(236,200,101,.6),0 0 40px rgba(236,200,101,.2); } }


/* ── Plan Guide (collapsible help chooser) ── */
.plan-guide-toggle { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:14px 20px; border-radius:16px; background:linear-gradient(160deg, rgba(22,34,49,0.85) 0%, rgba(11,21,32,0.95) 100%); border:1px solid rgba(255,255,255,0.04); backdrop-filter:blur(10px); color:var(--text); font-size:var(--fs-base); font-weight:600; cursor:pointer; transition:all var(--transition); font-family:inherit; }
.plan-guide-toggle:hover { border-color:var(--gold); color:var(--gold); }
.plan-guide-toggle svg { width:16px; height:16px; transition:transform var(--transition); }
.plan-guide-toggle.open svg { transform:rotate(180deg); }
.plan-guide-content { max-height:0; overflow:hidden; opacity:0; transition:max-height .5s cubic-bezier(.4,0,.2,1), opacity .4s ease, margin .4s ease; margin-top:0; }
.plan-guide-content.open { max-height:2000px; opacity:1; margin-top:var(--sp-md); }
.plan-guide-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--sp-md); }
.plan-guide-card { background:linear-gradient(160deg, rgba(22,34,49,0.85) 0%, rgba(11,21,32,0.95) 100%); border:1px solid rgba(255,255,255,0.04); border-radius:16px; backdrop-filter:blur(10px); padding:24px; transition:border-color var(--transition); }
.plan-guide-card:hover { border-color:var(--gold); }
.plan-guide-card--featured { border-color:rgba(236,200,101,0.3); box-shadow:0 4px 30px rgba(236,200,101,0.1); }
.plan-guide-header { display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.plan-guide-header h4 { font-size:var(--fs-md); font-weight:700; margin:0; }
.plan-guide-tag { font-size:.7rem; padding:3px 10px; border-radius:var(--radius-full); background:rgba(255,255,255,.06); color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.04em; }
.plan-guide-tag--gold { background:rgba(236,200,101,.12); color:var(--gold); }
.plan-guide-desc { font-size:var(--fs-sm); color:var(--text-muted); line-height:1.7; margin-bottom:16px; }
.plan-guide-examples-label { display:block; font-size:var(--fs-sm); font-weight:600; color:var(--gold-dark); margin-bottom:6px; }
.plan-guide-examples ul { list-style:none; padding:0; margin:0; }
.plan-guide-examples li { font-size:var(--fs-sm); color:var(--text); padding:4px 0; padding-left:20px; position:relative; }
.plan-guide-examples li::before { content:''; position:absolute; left:0; top:11px; width:8px; height:8px; border-radius:50%; background:var(--gold); opacity:.6; }
@media(max-width:768px) { .plan-guide-grid { grid-template-columns:1fr; } }

.footer-social{display:flex;gap:10px;margin-top:1.4rem;flex-wrap:wrap}.footer-social a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.04);border:1px solid rgba(236,200,101,0.1);color:rgba(148,163,184,0.7);transition:all .3s ease}.footer-social a:hover{color:var(--gold);border-color:rgba(236,200,101,0.5);background:rgba(236,200,101,0.08);transform:translateY(-2px)}.footer-social svg{width:18px;height:18px;display:block}
