@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --navy-dark: #111D35;
  --gold: #C5A55A;
  --gold-light: #D4BB7A;
  --gold-dark: #A88B3D;
  --cream: #F8F6F1;
  --cream-dark: #EDE9E0;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.05);
  --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 10px 40px rgba(27, 42, 74, 0.1);
  --shadow-xl: 0 20px 60px rgba(27, 42, 74, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 12px;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.35);
}

.btn--xl {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 14px;
}

.btn--md {
  padding: 12px 24px;
  font-size: 14px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 10px;
}

.btn--glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(27, 42, 74, 0.06);
  border: 2px solid var(--gray-200);
  color: var(--navy);
}

.btn--glass:hover {
  background: rgba(27, 42, 74, 0.1);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  padding: 12px 24px;
  font-size: 14px;
}

.btn--outline-dark:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

/* Fade up on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll reveal directions */
.sr-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sr-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sr-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.sr-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sr-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Transition delays */
.d1 { transition-delay: 0.15s; }
.d2 { transition-delay: 0.3s; }
.d3 { transition-delay: 0.45s; }
.d4 { transition-delay: 0.6s; }
.d5 { transition-delay: 0.75s; }

/* Float animations */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

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

.float-y {
  animation: floatY 4s ease-in-out infinite;
}

.float-y-alt {
  animation: floatYAlt 5s ease-in-out infinite;
}

.float-y-slow {
  animation: floatYSlow 6s ease-in-out infinite;
}

/* Pulse */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.pulse {
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s ease-out infinite;
}

/* Spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.spin {
  animation: spin 20s linear infinite;
}

.spin-reverse {
  animation: spinReverse 25s linear infinite;
}

/* Slide down for navbar */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Blink cursor */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Scroll dot */
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* Savings fill bar */
@keyframes fillBar {
  from { width: 0; }
  to { width: 75%; }
}

/* Preloader fill */
@keyframes preloaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* Preloader logo pulse */
@keyframes logoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

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

.preloader__logo {
  width: 80px;
  border-radius: 6px;
  animation: logoPulse 2s ease-in-out infinite;
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  animation: preloaderFill 1.8s ease-in-out forwards;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  animation: slideDown 0.6s ease forwards;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1240px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
}

.navbar--scrolled .navbar__inner {
  padding: 14px 24px;
}

.navbar__logo img {
  height: 44px;
  border-radius: 6px;
  transition: height 0.4s ease;
}

.navbar--scrolled .navbar__logo img {
  height: 38px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s ease;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__link:hover {
  color: var(--gold);
}

.navbar__link:hover::after {
  width: 100%;
}

/* Hamburger toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  background: var(--white);
}

.navbar__mobile.open {
  max-height: 500px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
}

.navbar__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.3s ease;
}

.navbar__mobile-link:hover {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(27, 42, 74, 0.03) 0%,
    rgba(248, 246, 241, 0.6) 50%,
    rgba(197, 165, 90, 0.05) 100%
  );
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 15% 20%, rgba(197, 165, 90, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 800px 800px at 85% 70%, rgba(27, 42, 74, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 50% 50%, rgba(248, 246, 241, 0.5) 0%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.15), transparent);
  top: -10%;
  right: -5%;
  animation: floatY 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 42, 74, 0.08), transparent);
  bottom: -5%;
  left: -5%;
  animation: floatYAlt 10s ease-in-out infinite;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 246, 241, 0.5), transparent);
  top: 40%;
  left: 30%;
  animation: floatYSlow 12s ease-in-out infinite;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(27, 42, 74, 0.03) 79px, rgba(27, 42, 74, 0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(27, 42, 74, 0.03) 79px, rgba(27, 42, 74, 0.03) 80px);
  opacity: 0.5;
}

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

.hero__content {
  display: flex;
  flex-direction: column;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  width: fit-content;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  position: relative;
}

/* Title */
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero__title--typing {
  color: var(--gold);
  display: inline;
}

.hero__cursor {
  display: inline;
  color: var(--gold);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

.hero__title-sub {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero__zero {
  font-size: 1.15em;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(197, 165, 90, 0.3);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__subtitle strong {
  color: var(--navy);
  font-weight: 700;
}

/* Actions */
.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Stats — glassmorphism single-line bar, scrollable on mobile */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 4px;
  width: fit-content;
  box-shadow: 0 2px 16px rgba(27,42,74,0.06);
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 28px;
  flex-shrink: 0;
}

.hero__stat-row {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 0;
}

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero__stat-prefix {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero__stat-plus {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Hero visual side */
.hero__visual {
  position: relative;
}

.hero__card-stack {
  position: relative;
}

.hero__main-img img {
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 5 / 6;
  object-fit: cover;
  width: 100%;
  max-height: 520px;
}

/* Float card 1 - bottom left image */
.hero__float-card--1 {
  position: absolute;
  bottom: -24px;
  left: -40px;
  width: 50%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 2;
}

.hero__float-card--1 img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

/* Float card 2 - top right glassmorphism savings */
.hero__float-card--2 {
  position: absolute;
  top: 15%;
  right: -30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero__savings-card {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.hero__savings-card > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__savings-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__savings-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
}

.hero__savings-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}

.hero__savings-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}

.hero__savings-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  animation: fillBar 2s ease-out 1s both;
}

/* Float card 3 - bottom right mini stat */
.hero__float-card--3 {
  position: absolute;
  bottom: 20%;
  right: -20px;
  z-index: 2;
}

.hero__mini-stat {
  background: var(--white);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.hero__mini-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #22C55E;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  width: 100%;
  background: var(--navy-dark);
  padding: 16px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  padding-right: 40px;
}

.marquee__item {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img-main img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about__img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: 16px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about__img-secondary img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__exp-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about__exp-text {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}

.about__content {
  display: flex;
  flex-direction: column;
}

.about__text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.about__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(197, 165, 90, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about__feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   COUNTER STATS SECTION
   ============================================ */
.counter-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.counter-section__bg {
  position: absolute;
  inset: 0;
}

.counter-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counter-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0.85);
}

.counter-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.counter-section__item {
  text-align: center;
  color: var(--white);
}

.counter-section__num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.counter-section__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.counter-section__item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--cream);
}

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

.services__card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Featured card */
.services__card--featured {
  grid-column: span 2;
  min-height: 380px;
}

.services__card--featured .services__card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.services__card--featured .services__card-img img {
  height: 100%;
  object-fit: cover;
}

.services__card--featured .services__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.9) 0%, rgba(27, 42, 74, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.services__card--featured .services__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px;
  color: var(--white);
}

.services__card--featured .services__card-body h3 {
  color: var(--white);
  font-size: 28px;
}

.services__card--featured .services__card-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.services__card--featured .services__icon-wrap {
  margin-bottom: 16px;
}

.services__card--featured .services__list li {
  color: rgba(255, 255, 255, 0.85);
}

.services__card--featured .services__list li::before {
  color: var(--gold-light);
}

/* Normal card styles */
.services__card-img {
  overflow: hidden;
}

.services__card-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services__card:hover .services__card-img img {
  transform: scale(1.05);
}

.services__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services__card-body {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.services__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.services__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  z-index: 3;
}

.services__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.services__card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.services__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.services__list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison {
  padding: 120px 0;
  background: var(--white);
}

.comparison__table {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.comparison__col {
  padding: 48px 40px;
}

.comparison__col--old {
  background: var(--gray-50);
}

.comparison__col--new {
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.comparison__header {
  margin-bottom: 32px;
}

.comparison__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gray-200);
  color: var(--gray-600);
  margin-bottom: 12px;
}

.comparison__label--gold {
  background: var(--gold);
  color: var(--white);
}

.comparison__col h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.comparison__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison__col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.comparison__col li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__col--old li svg {
  color: #EF4444;
}

.comparison__col--new li svg {
  color: var(--gold);
}

.comparison__total {
  margin-top: 32px;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparison__total--red {
  background: #FEF2F2;
  color: #DC2626;
}

.comparison__total--green {
  background: #F0FDF4;
  color: #16A34A;
}

.comparison__total span {
  font-size: 15px;
  font-weight: 600;
}

.comparison__total strong {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.comparison__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  width: 60px;
  min-width: 60px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  z-index: 1;
  align-self: center;
}

/* ============================================
   HOW IT WORKS TIMELINE
   ============================================ */
.how-it-works {
  padding: 120px 0;
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  top: 0;
  bottom: 0;
  background: rgba(27, 42, 74, 0.1);
  transform-origin: top;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

/* Left-aligned: card in first column */
.timeline__item .timeline__card {
  grid-column: 1;
}

/* Right-aligned: card in second column */
.timeline__item--right .timeline__card {
  grid-column: 2;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.timeline__card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.timeline__card:hover {
  transform: translateY(-4px);
}

.timeline__card-img {
  overflow: hidden;
}

.timeline__card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.timeline__card-body {
  padding: 28px;
}

.timeline__step {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.timeline__card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline__card-body p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials__slider {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials__card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 60px 20px;
  text-align: center;
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonials__stars svg {
  color: var(--gold);
}

.testimonials__card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  max-width: 700px;
  margin: 20px auto 32px;
}

.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonials__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials__author strong {
  color: var(--navy);
  font-size: 16px;
  display: block;
}

.testimonials__author span {
  color: var(--gray-500);
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--navy);
}

.testimonials__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonials__dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 100px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

.faq__left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: 400px;
}

.faq__right {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}

.faq__item:first-child {
  border-radius: 16px 16px 0 0;
}

.faq__item:last-child {
  border-radius: 0 0 16px 16px;
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question svg {
  transition: transform 0.3s ease;
  color: var(--gray-400);
  flex-shrink: 0;
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
  padding: 0 28px;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--navy-dark);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
}

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(197, 165, 90, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__detail strong {
  color: var(--white);
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}

.contact__detail a,
.contact__detail span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.contact__form h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form__group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--gray-400);
}

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

.form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='%239CA3AF'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__note {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 50px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer__address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 900;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(197, 165, 90, 0.4);
}

/* ============================================
   RESPONSIVE - 1280px
   ============================================ */
@media (max-width: 1280px) {
  .container {
    max-width: 1080px;
  }

  .hero__inner {
    gap: 48px;
  }

  .hero__title {
    font-size: clamp(34px, 3.6vw, 54px);
  }

  .hero__title-sub {
    font-size: clamp(24px, 2.6vw, 38px);
  }

  .about__layout {
    gap: 60px;
  }

  .faq__layout {
    gap: 60px;
  }

  .contact__layout {
    gap: 60px;
  }

  .footer__top {
    gap: 36px;
  }
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }

  .hero__title {
    font-size: clamp(32px, 3.5vw, 48px);
  }

  .hero__title-sub {
    font-size: clamp(22px, 2.5vw, 34px);
  }

  .hero__float-card--2 {
    right: -10px;
  }

  .hero__float-card--1 {
    left: -20px;
    bottom: -16px;
  }

  .hero__float-card--3 {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .services__card--featured .services__card-img {
    position: relative;
    height: auto;
  }
  .services__card--featured .services__card-img img {
    aspect-ratio: 16 / 9;
  }

  .services__card--featured .services__card-body {
    position: relative;
    background: var(--navy);
    padding: 32px;
  }

  .about__layout {
    gap: 48px;
  }

  .faq__layout {
    gap: 48px;
  }

  .timeline__item {
    gap: 40px;
  }

  .comparison__col {
    padding: 36px 28px;
  }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__badge {
    margin: 0 auto 28px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 360px;
    padding: 8px;
    overflow: visible;
  }
  .hero__stat-divider {
    display: none;
  }
  .hero__stat-item {
    padding: 12px 16px;
  }

  .hero__visual {
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__main-img img {
    aspect-ratio: 4 / 5;
    max-height: 400px;
  }
  .hero__float-card--1 img {
    height: 90px;
  }
  .hero__float-card--2 {
    display: none;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* About */
  .about {
    padding: 80px 0;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__images {
    max-width: 500px;
    margin: 0 auto;
  }

  .about__img-secondary {
    bottom: -20px;
    right: -10px;
    width: 50%;
  }

  /* Counter */
  .counter-section {
    padding: 80px 0;
  }

  .counter-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Services */
  .services {
    padding: 80px 0;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__card--featured {
    grid-column: span 2;
  }

  /* Comparison */
  .comparison {
    padding: 80px 0;
  }

  .comparison__table {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .comparison__col--new {
    border-left: none;
    border-top: 3px solid var(--gold);
  }

  .comparison__vs {
    width: 100%;
    min-width: unset;
    height: 50px;
    border-radius: 0;
  }

  /* Timeline */
  .how-it-works {
    padding: 80px 0;
  }

  .timeline__line {
    left: 24px;
    transform: none;
  }

  .timeline__item,
  .timeline__item--right {
    grid-template-columns: 1fr;
    padding-left: 72px;
    gap: 0;
  }

  .timeline__item .timeline__card,
  .timeline__item--right .timeline__card {
    grid-column: 1;
  }

  .timeline__dot {
    left: 24px;
    transform: translateX(-50%);
  }

  /* Testimonials */
  .testimonials {
    padding: 80px 0;
  }

  .testimonials__card {
    padding: 40px 16px;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__left {
    position: static;
    text-align: center;
  }

  .faq__left .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .faq__image {
    display: none;
  }

  /* Contact */
  .contact {
    padding: 80px 0;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-wrap {
    padding: 32px;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Section header */
  .section-header {
    margin-bottom: 48px;
  }
}

/* ============================================
   RESPONSIVE - 640px
   ============================================ */
@media (max-width: 640px) {
  .hero__visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero__title {
    font-size: clamp(26px, 7vw, 40px);
    word-break: break-word;
  }

  .hero__title-sub {
    font-size: clamp(20px, 5vw, 30px);
  }

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

  .services__card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about__experience-badge {
    width: 80px;
    height: 80px;
    top: -10px;
    left: -10px;
  }

  .about__exp-num {
    font-size: 28px;
  }

  .about__exp-text {
    font-size: 9px;
  }

  .comparison__col {
    padding: 28px 20px;
  }

  .comparison__total strong {
    font-size: 22px;
  }

  .timeline__card-img img {
    aspect-ratio: 16 / 10;
  }

  .testimonials__card blockquote {
    font-size: 17px;
  }

  .faq__question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq__answer {
    padding: 0 20px;
  }
}

/* ============================================
   RESPONSIVE - 480px
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero__stats {
    max-width: 300px;
    padding: 6px;
  }
  .hero__stat-item {
    padding: 10px 12px;
  }
  .hero__stat-num {
    font-size: 22px;
  }
  .hero__stat-prefix {
    font-size: 22px;
  }
  .hero__stat-plus {
    font-size: 16px;
  }
  .hero__stat-label {
    font-size: 10px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .counter-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .counter-section__num {
    font-size: 40px;
  }

  .about {
    padding: 60px 0;
  }

  .about__img-secondary {
    width: 45%;
    bottom: -16px;
    right: -5px;
  }

  .services {
    padding: 60px 0;
  }

  .services__card-body {
    padding: 24px;
  }

  .comparison {
    padding: 60px 0;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .timeline__item,
  .timeline__item--right {
    padding-left: 60px;
    margin-bottom: 40px;
  }

  .timeline__dot {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .timeline__card-body {
    padding: 20px;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials__card {
    padding: 30px 8px;
  }

  .faq {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .contact__form-wrap {
    padding: 24px;
  }

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

  .btn--xl {
    padding: 16px 28px;
    font-size: 15px;
  }

  .btn--full {
    width: 100%;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer__bottom-links {
    gap: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   RESPONSIVE - 360px
   ============================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero__title {
    font-size: 30px;
  }

  .hero__title-sub {
    font-size: 22px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__stat-item {
    padding: 8px 10px;
  }

  .hero__stat-num {
    font-size: 20px;
  }

  .hero__stat-prefix {
    font-size: 20px;
  }

  .hero__stats {
    max-width: 260px;
  }

  .navbar__inner {
    padding: 14px 12px;
  }

  .navbar__logo img {
    height: 36px;
  }

  .about__experience-badge {
    width: 70px;
    height: 70px;
    border-radius: 12px;
  }

  .about__exp-num {
    font-size: 24px;
  }

  .counter-section__num {
    font-size: 36px;
  }

  .counter-section__label {
    font-size: 13px;
  }

  .comparison__col h3 {
    font-size: 20px;
  }

  .comparison__total strong {
    font-size: 20px;
  }

  .timeline__item,
  .timeline__item--right {
    padding-left: 52px;
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__dot {
    left: 20px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .testimonials__card blockquote {
    font-size: 15px;
  }

  .testimonials__avatar {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .faq__question {
    font-size: 14px;
    padding: 16px 16px;
  }

  .faq__answer {
    padding: 0 16px;
  }

  .faq__answer p {
    font-size: 14px;
  }

  .contact__title {
    font-size: 28px;
  }

  .contact__form-wrap {
    padding: 20px;
  }

  .contact__form h3 {
    font-size: 20px;
  }

  .form__group input,
  .form__group select,
  .form__group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .footer__col h4 {
    font-size: 12px;
  }
}

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
  background: rgba(197, 165, 90, 0.2);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-50);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ============================================
   PARALLAX UTILITY
   ============================================ */
.parallax-bg {
  will-change: transform;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .anim-fade-up, .sr-up, .sr-left, .sr-right {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
