/* ══════════════════════════════════════════════════════════════
   FUTUREBRIDGE ADVISORY — Premium Landing Page CSS
   Brand Colors: Navy #0B1F3A | Gold #C9A14A | White | Gray #F5F7FA
   Fonts: Montserrat (Headings) | Open Sans (Body)
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --navy: #0B1F3A;
  --navy-light: #132D52;
  --navy-dark: #071428;
  --gold: #C9A14A;
  --gold-light: #D4B56A;
  --gold-dark: #A8853A;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --gray-100: #E8ECF1;
  --gray-200: #D1D8E0;
  --gray-300: #A0AEC0;
  --gray-text: #4A5568;
  --gray-dark: #2D3748;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 31, 58, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 161, 74, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 161, 74, 0.2); }
  50% { box-shadow: 0 0 40px rgba(201, 161, 74, 0.4); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(11, 31, 58, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  position: relative;
}

.logo-icon svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text strong {
  color: var(--gold);
  font-weight: 800;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
  font-family: 'Montserrat', sans-serif;
}

/* Nav */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
}

.cta-nav {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  transition: var(--transition) !important;
}

.cta-nav:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}


/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(201, 161, 74, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 161, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 161, 74, 0.08);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 1.1em;
}


/* ─── SECTION COMMON ───────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: var(--gold);
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-intro {
  font-size: 1.15rem;
  color: var(--gray-text);
  max-width: 680px;
  margin-bottom: 50px;
  line-height: 1.8;
}


/* ─── GLASS CARD ───────────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 161, 74, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}


/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201, 161, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201, 161, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(19, 45, 82, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Geometric decorative elements */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 161, 74, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 161, 74, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
  border: 1px solid rgba(201, 161, 74, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-section h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-micro-trust {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero Visual Card */
.hero-visual {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 161, 74, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(201, 161, 74, 0.15);
  padding-top: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201, 161, 74, 0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollDown 1.5s ease-in-out infinite;
}


/* ─── SERVICES SECTION ─────────────────────────────────────── */
.services-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  transition: 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(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 161, 74, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 161, 74, 0.1), rgba(201, 161, 74, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(201, 161, 74, 0.2), rgba(201, 161, 74, 0.1));
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
  letter-spacing: 0.5px;
}


/* ─── INLINE CTA ───────────────────────────────────────────── */
.inline-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 48px 0;
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inline-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.inline-cta-dark {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}


/* ─── WHY CHOOSE US ────────────────────────────────────────── */
.solution-section {
  padding: 100px 0;
  background: var(--white);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.solution-card {
  padding: 36px;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 161, 74, 0.2);
}

.solution-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
}

.solution-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.solution-card p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
}


/* ─── TRUST SECTION ────────────────────────────────────────── */
.trust-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 161, 74, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.trust-section h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 60px;
  position: relative;
}

.trust-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 161, 74, 0.1);
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 161, 74, 0.25);
  transform: translateY(-4px);
}

.trust-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.trust-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 161, 74, 0.08);
  border: 1px solid rgba(201, 161, 74, 0.15);
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.badge:hover {
  background: rgba(201, 161, 74, 0.15);
  border-color: rgba(201, 161, 74, 0.3);
}


/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-bg);
  overflow: hidden;
}

.testimonials-section h2 {
  text-align: center;
}

.testimonials-section .section-tag {
  text-align: center;
  display: block;
  padding-left: 0;
}

.testimonials-section .section-tag::before {
  display: none;
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 50px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scroll-left 35s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 380px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 161, 74, 0.25);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-300);
}


/* ─── OFFER SECTION ────────────────────────────────────────── */
.offer-section {
  padding: 100px 0;
  background: var(--white);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.offer-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.offer-value {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: 28px;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--gray-300);
}

.offer-list {
  margin-bottom: 36px;
}

.offer-list li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.offer-guarantee {
  padding: 36px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.offer-guarantee h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.offer-guarantee p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}


/* ─── FAQ SECTION ──────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

.faq-section h2 {
  text-align: center;
}

.faq-section .section-tag {
  text-align: center;
  display: block;
  padding-left: 0;
}

.faq-section .section-tag::before {
  display: none;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 161, 74, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.7;
}


/* ─── FINAL CTA + CONTACT FORM ─────────────────────────────── */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 161, 74, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-trust-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-trust-points span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Form */
.form-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 161, 74, 0.15);
}

.form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A14A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.form-success p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}


/* ─── BRAND DIFFERENTIATION SECTION ────────────────────────── */
.differentiation-section {
  padding: 100px 0;
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diff-content .section-tag {
  margin-bottom: 16px;
}

.diff-content h2 {
  margin-bottom: 24px;
}

.diff-content > p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.diff-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.diff-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-item p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.diff-item strong {
  color: var(--navy);
}

.diff-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diff-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  border-color: rgba(201, 161, 74, 0.2);
  box-shadow: var(--shadow-md);
}

.diff-card.highlighted {
  background: var(--navy);
  border-color: rgba(201, 161, 74, 0.2);
}

.diff-card.highlighted h4 {
  color: var(--gold);
}

.diff-card.highlighted p {
  color: rgba(255,255,255,0.7);
}

.diff-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
}


/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}


/* ─── WHATSAPP FAB ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}


/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-section h1 { font-size: 2.6rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr; }
  .offer-inner { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .cta-nav {
    font-size: 1rem !important;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  section h2 { font-size: 2rem; }
  .hero-section h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-inner { padding: 60px 0; }
  .hero-micro-trust { flex-direction: column; gap: 8px; }

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

  .inline-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .inline-cta p { font-size: 1.1rem; }
  .testimonial-card { flex: 0 0 320px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }

  .cta-content h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-section h1 { font-size: 1.8rem; }
  section h2 { font-size: 1.6rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 28px; }
  .hero-card-stats { grid-template-columns: 1fr; gap: 12px; }
  .trust-badges { flex-direction: column; align-items: center; }
  .form-card { padding: 28px 20px; }
  .logo-text { font-size: 1rem; }
}
