/* ============================================================
   IT EU SOU CHARLES – PREMIUM LIGHT THEME STYLESHEET
   Design System: Fintech Premium – White & Gold
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #d69200;
  --gold-light: #F2D27A;
  --gold-dark: #a87200;
  --gold-pale: #FEF5E0;

  /* LIGHT THEME */
  --bg: #FFFFFF;
  --bg-soft: #F7F8FC;
  --bg-alt: #EFF1F8;
  --card-bg: #FFFFFF;
  --border: #E4E5F0;
  --border-strong: #C8C9DC;

  /* TEXT */
  --text: #0B0B1A;
  --text-soft: #2E2E45;
  --text-muted: #6B6B88;
  --text-faint: #A0A0B8;

  /* Legacy aliases (used throughout) */
  --black: #0B0B1A;
  --black-soft: #F7F8FC;
  --black-card: #FFFFFF;
  --black-border: #E4E5F0;
  --gray-dark: #DDDDE8;
  --gray-mid: #A0A0B8;
  --gray-light: #6B6B88;
  --white: #FFFFFF;
  --white-soft: #F7F8FC;
  --white-muted: rgba(0, 0, 0, 0.04);

  --gradient-gold: linear-gradient(135deg, #d69200 0%, #F2D27A 50%, #c08000 100%);
  --shadow-gold: 0 4px 24px rgba(214, 146, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(11, 11, 26, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(11, 11, 26, 0.14);
  --shadow-soft: 0 2px 12px rgba(11, 11, 26, 0.06);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --container: 1240px;
  --header-h: 76px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Pagine istituzionali: footer sempre nel flusso, in fondo alla colonna anche con poco contenuto */
body.page-with-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.page-with-footer .site-main {
  flex: 1 0 auto;
}
body.page-with-footer .footer {
  flex-shrink: 0;
  margin-top: auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Prevent scroll when mobile menu is open – works on iOS too */
body.menu-open { overflow: hidden; height: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(214, 146, 0, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--bg-soft);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 1rem; }

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border: 1px solid rgba(214, 146, 0, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 700px;
  background: var(--text);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: none;
}
.cookie-banner.visible { display: block; animation: slideUp 0.4s ease; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); flex: 1; }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gradient-gold);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-decline:hover { color: rgba(255,255,255,0.9); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 150;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Logo no footer escuro das páginas internas */
.footer .logo-img {
  height: 40px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}
/* Legacy text fallbacks */
.logo-icon { color: var(--gold); font-size: 1rem; }
.logo-text { color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.logo-highlight { color: var(--gold-dark); }

/* Desktop: nav sits fixed over the header bar, centered */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 160; /* above header (150) so links are not blurred by backdrop-filter */
  pointer-events: none; /* container doesn't block clicks on logo/button */
}
.nav-list { display: flex; gap: 4px; align-items: center; pointer-events: auto; }
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: auto;
}
.nav-link:hover { color: var(--text); background: var(--bg-alt); }
.nav-link.active { color: var(--gold-dark); background: var(--gold-pale); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Drawer-only elements: hidden everywhere except inside open mobile drawer */
.nav-drawer-header { display: none; }
.nav-drawer-cta    { display: none; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  background: var(--gold);
  border: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 3px 12px rgba(214, 146, 0, 0.35);
  cursor: pointer;
}
.hamburger:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 18px rgba(214, 146, 0, 0.5);
  transform: scale(1.05);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.open {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV DRAWER ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 15, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 250; /* below nav (300) but above everything else */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  background: var(--bg);
}

/* Decorative background for hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 40%, rgba(214, 146, 0, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 10%, rgba(214, 146, 0, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(214, 146, 0, 0.04) 0%, transparent 60%);
}
/* Dot grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(214, 146, 0, 0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
/* Decorative circles */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1.5px solid rgba(214, 146, 0, 0.12);
  top: -100px;
  right: -100px;
}
.hero-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(214, 146, 0, 0.08);
  bottom: 60px;
  left: -60px;
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(214, 146, 0, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== HERO VISUAL – Cards ===== */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 360px; height: 360px; }

.floating-card {
  width: 295px;
  height: 182px;
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255,255,255,0.1);
}
.card-main {
  background: linear-gradient(135deg, #1a1000 0%, #3a2800 40%, #d69200 100%);
  top: 20px; left: 20px;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
}
.card-secondary {
  background: linear-gradient(135deg, #0f0f20 0%, #1e1e38 50%, #2e2e52 100%);
  top: 60px; right: 0px;
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite 1.5s;
}
.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-chip {
  width: 36px; height: 26px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 5px;
}
.card-chip-dark { background: linear-gradient(135deg, #3a3a5a, #5a5a7a); }
.card-brand { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }
.card-brand-dark { color: rgba(255,255,255,0.35); }
.card-number { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.2em; color: rgba(255,255,255,0.9); }
.card-number-dark { color: rgba(255,255,255,0.45); }
.card-bottom { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.card-bottom-dark { color: rgba(255,255,255,0.35); }

.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.badge-roi { bottom: 70px; left: -10px; animation: floatCard 5s ease-in-out infinite 0.5s; }
.badge-savings { top: 0; right: -10px; animation: floatCard 5s ease-in-out infinite 2s; }
.floating-badge svg { color: var(--gold); flex-shrink: 0; }
.badge-value { display: block; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.badge-sub { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ===== HERO MOBILE CARD (only on mobile) ===== */
.hero-visual-mobile {
  display: none;
  margin: 0 auto;
  position: relative;
  width: 320px;
  height: 230px;
  overflow: visible;
}
.hero-visual-mobile .hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-visual-mobile .floating-card {
  width: 240px;
  height: 150px;
  padding: 20px 16px;
  border-radius: 16px;
}
.hero-visual-mobile .card-main {
  top: 10px;
  left: 0;
  z-index: 2;
}
.hero-visual-mobile .card-secondary {
  top: 50px;
  right: 0;
  width: 220px;
  height: 140px;
  z-index: 1;
}
.hero-visual-mobile .floating-badge {
  padding: 8px 11px;
  gap: 7px;
  border-radius: 10px;
}
.hero-visual-mobile .badge-roi {
  bottom: 0;
  left: 0;
  z-index: 3;
}
.hero-visual-mobile .badge-savings {
  top: 0;
  right: 0;
  z-index: 3;
}
.hero-visual-mobile .badge-value { font-size: 0.8rem; }
.hero-visual-mobile .badge-sub { font-size: 0.62rem; }

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2s ease infinite;
}
.hero-scroll-indicator span { font-size: 0.68rem; color: var(--text-faint); letter-spacing: 0.12em; text-transform: uppercase; }

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-label { font-size: 0.8rem; color: var(--text-faint); white-space: nowrap; }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== SERVICES SECTION ===== */
.servizi { padding: 100px 0; background: var(--bg-soft); position: relative; overflow: hidden; }
.servizi::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,146,0,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 146, 0, 0.35);
  box-shadow: var(--shadow-card-hover), 0 0 0 0 transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border: 1.5px solid rgba(214, 146, 0, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(214,146,0,0.15); border-color: rgba(214,146,0,0.4); }
.service-icon { color: var(--gold-dark); }
.service-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-soft); }
.service-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; font-size: 0.72rem; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--gold-dark); transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== PERCHÉ SCEGLIERCI ===== */
.perche { padding: 100px 0; background: var(--bg); }
.perche-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.perche-left { position: sticky; top: 100px; }
.perche-intro { font-size: 0.98rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 32px; }
.perche-right { display: flex; flex-direction: column; }
.differenziale {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.differenziale:first-child { padding-top: 0; }
.differenziale:last-child { border-bottom: none; padding-bottom: 0; }
.differenziale:hover .differenziale-icon { background: var(--gold-pale); border-color: rgba(214,146,0,0.35); }
.differenziale-icon {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  transition: var(--transition);
}
.differenziale-content h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.differenziale-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; }

/* ===== BLOG SECTION — DARK THEME ===== */
.blog-section {
  padding: 100px 0;
  background: #0B0B1A;
  position: relative;
  overflow: hidden;
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(214,146,0,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}
.blog-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,146,0,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Dark section header overrides */
.section-tag-dark {
  background: rgba(214,146,0,0.15);
  color: var(--gold-light);
  border-color: rgba(214,146,0,0.3);
}
.section-title-light { color: #ffffff; }
.section-subtitle-light { color: rgba(255,255,255,0.55); }

/* Gold outline button for dark bg */
.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: rgba(214,146,0,0.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  min-height: 200px;
  position: relative;
  z-index: 1;
}
.blog-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}
.loader-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Blog cards — dark style */
.blog-card {
  background: #16161E;
  border: 1px solid #2A2A3A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,146,0,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(214,146,0,0.1);
}
.blog-card-img { width: 100%; height: 195px; object-fit: cover; }
.blog-card-img-placeholder {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, #1E1E2A 0%, #2A2A3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 9px; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.blog-card-date { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.blog-card-link:hover { gap: 9px; color: var(--gold-light); }
.blog-cta { text-align: center; position: relative; z-index: 1; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(214,146,0,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(214,146,0,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-badge {
  display: inline-block;
  background: rgba(214,146,0,0.15);
  border: 1px solid rgba(214,146,0,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.02em; color: #fff; }
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-section .btn-ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.14); }
.cta-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ===== ABOUT PREVIEW — redesign ===== */
.about-preview {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-preview-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(214,146,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 100%, rgba(214,146,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Headline centralizada */
.about-headline {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

/* 4 pilastri */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.about-pillar {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.about-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(214,146,0,0.3);
  box-shadow: var(--shadow-card-hover);
}
.about-pillar:hover::after { transform: scaleX(1); }

.about-pillar-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border: 1.5px solid rgba(214,146,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.about-pillar:hover .about-pillar-icon {
  background: rgba(214,146,0,0.18);
  border-color: rgba(214,146,0,0.4);
}
.about-pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.about-pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Bottom: stats + CTA */
.about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-bottom::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(214,146,0,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-stat-plus {
  font-size: 1.3rem;
  color: var(--gold);
}
.about-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.about-bottom .btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Responsive about */
@media (max-width: 1100px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-bottom { flex-direction: column; padding: 28px 24px; border-radius: var(--radius-lg); }
  .about-stats-row { justify-content: center; gap: 20px; }
  .about-stat-divider { display: none; }
  .about-bottom .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .about-pillars { grid-template-columns: 1fr; }
  .about-stats-row { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== AD SECTION ===== */
.ad-section { padding: 36px 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ad-slot { display: flex; justify-content: center; }
.ad-slot-horizontal { min-height: 90px; }
.ad-placeholder {
  width: 100%; max-width: 728px; min-height: 90px;
  background: var(--bg);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  background: #0A0A14;
  position: relative;
}

/* Gold top accent line */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

.footer .container { padding-top: 64px; padding-bottom: 0; }

/* Main grid: brand | servizi | legale | contatto */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* Brand column */
.footer-col-brand {}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
  line-height: 0;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo tem fundo branco — adicionar fundo arredondado no footer escuro */
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
}
/* Legacy */
.footer-logo-icon { color: var(--gold); }
.footer-logo-text { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.footer-logo-text span { color: var(--gold); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-disclaimer-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  background: rgba(214,146,0,0.06);
  border: 1px solid rgba(214,146,0,0.12);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
}
.footer-disclaimer-note svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-disclaimer-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }

/* Nav columns */
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s ease;
  flex-shrink: 0;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-links a:hover::before { width: 12px; }

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.footer-contact-icon {
  width: 26px;
  height: 26px;
  background: rgba(214,146,0,0.1);
  border: 1px solid rgba(214,146,0,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  word-break: break-all;
}
.footer-contact-list a:hover { color: var(--gold-light); }

/* Company badge */
.footer-company-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.footer-company-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 4px;
}
.footer-company-cnpj {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 100%);
  margin-bottom: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-bottom-links span {
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
}

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .footer-col:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .footer-company-badge { align-self: start; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: span 1; display: flex; flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col:last-child { grid-column: 1; }
  .footer-bottom { align-items: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--header-h) + 60px) 0 60px;
}
.page-hero-inner { max-width: 760px; }
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.page-hero-inner p { font-size: 1rem; color: var(--text-muted); }
.page-hero-meta { display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.page-hero-meta span { font-size: 0.78rem; color: var(--text-faint); }
.page-content { padding: 60px 0 100px; background: var(--bg); }

.prose { max-width: 760px; color: var(--text-soft); }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--text);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--text); margin: 26px 0 10px; }
.prose p { font-size: 0.95rem; line-height: 1.82; margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 7px; }
.prose li { font-size: 0.95rem; line-height: 1.7; color: var(--text-soft); }
.prose a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose .highlight-box {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 26px 0;
}
.prose .highlight-box p { margin: 0; color: var(--text-soft); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex; gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.contact-info-card:hover { border-color: rgba(214,146,0,0.3); box-shadow: var(--shadow-card); }
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border: 1px solid rgba(214,146,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); font-weight: 700; margin-bottom: 5px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.contact-info-card a { color: var(--gold-dark); }

/* ===== ANIMATIONS ===== */
@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-visual-mobile { display: block; }
  .perche-inner { grid-template-columns: 1fr; }
  .perche-left { position: static; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  /* =====================================================
     MOBILE DRAWER — premium dark design
     ===================================================== */
  .nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(320px, 88vw) !important;
    height: 100% !important;

    /* Premium dark background */
    background: #0D0D18 !important;
    border-left: 1px solid rgba(214, 146, 0, 0.2) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45) !important;
    z-index: 300 !important;

    display: flex !important;
    flex: none !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    pointer-events: auto !important;

    transform: translateX(110%) !important;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
    visibility: hidden !important;
  }

  .nav.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Gold accent bar at the very top of drawer */
  .nav::before {
    content: '' !important;
    display: block !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) !important;
    flex-shrink: 0 !important;
  }

  /* Drawer header — branding area */
  .nav .nav-drawer-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 22px 12px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: rgba(214, 146, 0, 0.7) !important;
    margin-bottom: 0 !important;
  }
  .nav .nav-drawer-header::before {
    content: '◆' !important;
    font-size: 0.8rem !important;
    color: var(--gold) !important;
  }

  /* Nav list */
  .nav .nav-list {
    flex-direction: column !important;
    gap: 2px !important;
    padding: 12px 10px !important;
    flex: 1 !important;
    align-items: stretch !important;
    text-align: left !important;
  }

  /* Individual links */
  .nav .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 14px 12px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent !important;
    position: relative !important;
  }
  .nav .nav-link::before {
    content: '' !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: rgba(214, 146, 0, 0.4) !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
  }
  .nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(214, 146, 0, 0.1) !important;
    border-color: rgba(214, 146, 0, 0.2) !important;
  }
  .nav .nav-link:hover::before {
    background: var(--gold) !important;
    box-shadow: 0 0 6px rgba(214, 146, 0, 0.6) !important;
  }
  .nav .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, rgba(214, 146, 0, 0.18), rgba(214, 146, 0, 0.08)) !important;
    border-color: rgba(214, 146, 0, 0.3) !important;
    font-weight: 600 !important;
  }
  .nav .nav-link.active::before {
    background: var(--gold) !important;
    box-shadow: 0 0 8px rgba(214, 146, 0, 0.8) !important;
  }

  /* CTA footer */
  .nav .nav-drawer-cta {
    display: block !important;
    padding: 16px 10px 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  }
  .nav .nav-drawer-cta .btn {
    width: 100% !important;
    justify-content: center !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 4px 20px rgba(214, 146, 0, 0.3) !important;
  }
  .nav .nav-drawer-cta .btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 28px rgba(214, 146, 0, 0.45) !important;
  }

  .services-grid { grid-template-columns: 1fr; }
  .trust-band .container { justify-content: center; }
  .trust-label { display: none; }
  .trust-items { justify-content: center; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Hero mobile improvements */
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 40px) 0 60px;
  }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-stats { justify-content: center; }
  .hero-visual-mobile { margin-top: 40px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: space-around; }
  .stat-divider { display: none; }
  .cta-trust { flex-direction: column; align-items: center; gap: 8px; }
  .trust-items { gap: 12px; }
  .trust-item span { font-size: 0.78rem; }
  .hero-visual-mobile { width: min(320px, 88vw); height: 200px; }
  .hero-visual-mobile .floating-card { width: min(220px, 66vw); height: 138px; }
  .hero-visual-mobile .card-secondary { width: min(200px, 60vw); height: 128px; right: 0; }
}
