@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C06A;
  --gold-dark: #A08530;
  --navy: #1C2B4A;
  --navy-dark: #111D33;
  --navy-light: #2A3D5E;
  --off-white: #F5F0E8;
  --white: #FFFFFF;
  --gray-50: #FAFAF9;
  --gray-100: #F5F5F4;
  --gray-200: #E7E5E4;
  --gray-300: #D6D3D1;
  --gray-400: #A8A29E;
  --gray-500: #78716C;
  --gray-600: #57534E;
  --gray-700: #44403C;
  --gray-800: #292524;
  --gray-900: #1C1917;
  --green: #10b981;
  --yellow: #f59e0b;
  --red: #ef4444;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Aliases for blog compatibility */
  --gold-500: #C9A84C;
  --gold-600: #A08530;
  --navy-800: #111D33;
  --navy-700: #1C2B4A;
  --gray-900: #1C1917;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes kenBurns {
  0% { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.09) translate(-1.5%, -0.5%); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(13px); opacity: 0; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.30);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  color: var(--gray-500);
  padding: 0.75rem 1rem;
}
.btn-ghost:hover { color: var(--navy); }
.btn-whatsapp {
  background: #25d366;
  color: white;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Hero CTA buttons (mockup style) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 17px 34px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.30);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--gold-light); }
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.75rem; } }
.section-desc {
  font-family: 'Raleway', sans-serif;
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 400;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   NAVBAR (Prestigious style)
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: hsla(220,35%,12%,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
}
/* Legacy container — kept for older article pages */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Primary inner container used by blog index and guide pages */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: .15rem;
}
.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 1200px) { .nav-brand-name { font-size: 1.55rem; letter-spacing: .28em; } }
.nav-brand-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: .48rem;
  font-weight: 300;
  letter-spacing: .4em;
  color: hsla(43,55%,65%,.4);
  text-transform: uppercase;
  text-align: center;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* nav-center: primary nav links container (blog index + guide pages) */
.nav-center {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1024px) { .nav-center { display: flex; } }
@media (min-width: 1280px) { .nav-center { gap: 2.4rem; } }
.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: hsla(220,15%,85%,.7);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: #C9A84C; border-bottom-color: #C9A84C; }
/* lang row used in blog pages */
.nav-lang-row { display: flex; align-items: center; gap: .35rem; }
.lang-sep { font-size: .55rem; color: hsla(220,15%,85%,.2); }
/* legacy lang styles */
.nav-lang {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 768px) { .nav-lang { display: flex; } }
.lang-btn {
  font-family: 'Raleway', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: hsla(220,15%,85%,.5);
  text-transform: uppercase;
  padding: .2rem .1rem;
  border: none;
  border-radius: 0;
  transition: color .2s;
  cursor: pointer;
  background: none;
}
.lang-btn.active, .lang-btn:hover { color: #C9A84C; }
.nav-burger {
  display: block;
  color: var(--gold-light);
  padding: 0.25rem;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-mobile {
  display: none;
  padding: 1rem 20px 1.5rem;
  background: rgba(17, 29, 51, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.nav-mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO (Prestigious mockup style)
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  background-image: url('assets/porto-hero-noboats.jpg');
  background-size: cover;
  background-position: center 55%;
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(17, 29, 51, 0.90) 0%,
    rgba(17, 29, 51, 0.70) 40%,
    rgba(17, 29, 51, 0.28) 70%,
    rgba(17, 29, 51, 0.10) 100%
  );
}
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  z-index: 2;
  background: linear-gradient(to top, rgba(17,29,51,0.6) 0%, transparent 100%);
}
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 38%;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 1.5rem;
  margin-top: 72px;
}
@media (min-width: 768px) { .hero-content { padding: 0 64px; } }

/* Hero badge / eyebrow */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.2s forwards;
}
.hero-badge-line {
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-badge-text {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Hero headline */
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.35s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

/* Hero sub-headline */
.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.5s forwards;
}

/* Hero description */
.hero-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.65s forwards;
}

/* CTA group */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.8s forwards;
}
@media (max-width: 480px) {
  .cta-group { flex-direction: column; align-items: flex-start; }
}

/* Hero trust items */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.95s forwards;
}
@media (min-width: 640px) { .hero-trust { flex-direction: row; gap: 1.75rem; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item span {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}
.scroll-indicator span {
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

/* ═══════════════════════════════════════
   SERVICES (V1 refined aesthetic)
═══════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--gray-50);
}
@media (min-width: 768px) { .services { padding: 7rem 0; } }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { stroke: var(--gold-light); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-features {
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-features li {
  font-size: 0.8rem;
  color: var(--gray-600);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.service-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.service-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   SIMULATORS
═══════════════════════════════════════ */
.simulators {
  padding: 6rem 0;
  background: var(--white);
}
@media (min-width: 768px) { .simulators { padding: 7rem 0; } }
.sim-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.sim-tab {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
}
.sim-tab:hover { border-color: var(--gold-light); color: var(--gold-dark); }
.sim-tab.active {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.sim-panel { display: none; }
.sim-panel.active { display: block; }
.sim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .sim-grid { grid-template-columns: 1fr 1fr; } }
.sim-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sim-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.slider-group { margin-bottom: 1.5rem; }
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.slider-label span {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--gray-600);
}
.slider-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--gray-200);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
  transition: box-shadow var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 12px rgba(201,168,76,0.5);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}
.slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
}

/* Simulator Results */
.sim-results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.result-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.result-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.result-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.result-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.result-box-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
}
.result-box-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 640px) {
  .result-box-value { font-size: 0.8rem; }
  .result-value { font-size: 2.5rem; }
}
.result-cta {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.result-cta p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

/* Effort Rate Gauge */
.gauge-container { text-align: center; }
.gauge-circle {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--gray-50);
  border: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: border-color 0.5s;
}
.gauge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.gauge-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
  letter-spacing: 0.5px;
}
.gauge-bar-wrap { margin-bottom: 1.25rem; }
.gauge-bar-track {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}
.gauge-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--green);
  transition: width 0.5s ease, background 0.5s ease;
}
.gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--gray-400);
  margin-top: 0.35rem;
}
.effort-status { text-align: center; margin-bottom: 1rem; }
.effort-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.3px;
}
.effort-tag.green { background: rgba(16,185,129,0.1); color: var(--green); }
.effort-tag.yellow { background: rgba(245,158,11,0.1); color: var(--yellow); }
.effort-tag.red { background: rgba(239,68,68,0.1); color: var(--red); }
.effort-status p { font-size: 0.8rem; color: var(--gray-500); }
.effort-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.effort-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.75rem;
  text-align: center;
}
.effort-stat-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}
.effort-stat-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

/* Transfer Simulator */
.transfer-savings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.savings-highlight {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.savings-highlight.total {
  background: var(--gold);
}
.savings-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
.savings-highlight.total .savings-label { color: rgba(17,29,51,0.6); }
.savings-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}
.savings-highlight.total .savings-value { color: var(--navy-dark); }
.transfer-compare {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 0.75rem 1rem;
  font-size: 0.825rem;
  border-bottom: 1px solid var(--gray-200);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:first-child { background: var(--gray-100); }
.compare-head {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-row span { color: var(--gray-600); }
.compare-row span:first-child { font-weight: 500; color: var(--gray-700); }
.compare-row span:nth-child(2),
.compare-row span:nth-child(3) { text-align: center; }
.compare-better { color: var(--green) !important; font-weight: 600 !important; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process {
  padding: 6rem 0;
  background: var(--gray-50);
}
@media (min-width: 768px) { .process { padding: 7rem 0; } }
.process-steps {
  max-width: 40rem;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content { flex: 1; padding-bottom: 0.5rem; }
.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.step-time {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 0.5rem;
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  letter-spacing: 0.3px;
}
.step-connector {
  width: 2px;
  height: 2rem;
  background: var(--gray-200);
  margin-left: 1.4375rem;
}

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-preview {
  padding: 6rem 0;
  background: var(--white);
}
@media (min-width: 768px) { .blog-preview { padding: 7rem 0; } }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-img {
  height: 12rem;
  background-size: cover;
  background-position: center;
}
.blog-body { padding: 1.5rem; }
.blog-date {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.625rem;
  line-height: 1.3;
}
.blog-body h3 a:hover { color: var(--gold-dark); }
.blog-body > p {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
}
.blog-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .about { padding: 7rem 0; } }
.about-bg {
  position: absolute;
  inset: 0;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(17,29,51,0.88), rgba(17,29,51,0.65)),
    rgba(17,29,51,0.4);
}
.about-content {
  position: relative;
  z-index: 10;
  max-width: 38rem;
}
.about-content h2 {
  color: rgba(255,255,255,0.95);
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .about-content h2 { font-size: 2.5rem; } }
.about-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.about-benefits { margin-bottom: 2rem; }
.about-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.about-benefit svg { stroke: var(--gold); flex-shrink: 0; }
.about-benefit span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.about-legal {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-legal p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  text-align: center;
}
@media (min-width: 768px) { .cta-final { padding: 6rem 0; } }
.cta-final-content h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-final-content h2 { font-size: 2.75rem; } }
.cta-final-content > p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--gray-50);
}
@media (min-width: 768px) { .contact { padding: 7rem 0; } }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-sm);
}
.contact-method svg { color: var(--gold); flex-shrink: 0; }
.contact-method strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
  letter-spacing: 0.3px;
}
.contact-method span {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.contact-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.contact-hours svg { stroke: var(--gray-400); }
.calendly-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.calendly-section h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.calendly-section .btn-outline {
  color: var(--navy);
  border-color: var(--gray-300);
  border-width: 1px;
}
.calendly-section .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201,168,76,0.04);
}

/* Progressive Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease; }
.form-step-header { margin-bottom: 1.5rem; }
.form-step-num {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
.form-step-header h3 { font-size: 1.35rem; }
.form-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-type-option input { display: none; }
.form-type-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.form-type-card svg { stroke: var(--gray-400); transition: stroke var(--transition); }
.form-type-card span { font-size: 0.8rem; font-weight: 500; color: var(--gray-600); }
.form-type-option input:checked + .form-type-card {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-type-option input:checked + .form-type-card svg { stroke: var(--gold); }
.form-type-option input:checked + .form-type-card span { color: var(--navy); font-weight: 600; }
.form-type-card:hover { border-color: var(--gold-light); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--gray-50);
  color: var(--gray-800);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 5rem; }
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-next { width: 100%; }

/* File Upload */
.file-upload {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.file-upload:hover { border-color: var(--gold-light); background: rgba(201,168,76,0.02); }
.file-upload svg { stroke: var(--gray-400); }
.file-upload span { font-size: 0.8rem; color: var(--gray-400); }
.file-list { margin-top: 0.5rem; }
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}
.file-item button {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success svg { margin: 0 auto 1rem; stroke: var(--green); }
.form-success h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-500); font-size: 0.9rem; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.footer-logo-sub {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}
.footer-desc {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 18rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer-social a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.625rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 1rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: 0.8rem;
  color: var(--gray-600);
  flex: 1;
  min-width: 200px;
}
.cookie-content p a { color: var(--gold-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-headline { font-size: 40px !important; }
  .section-title { font-size: 1.85rem; }
  .form-type-grid { grid-template-columns: 1fr; }
  .transfer-savings { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .effort-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; }
  .scroll-dot { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-badge, .hero-headline, .hero-sub, .hero-desc, .cta-group, .hero-trust, .scroll-indicator {
    animation: none;
    opacity: 1;
  }
}
