/* ====================================================
   PRIMER PLANO REAL ESTATE INVESTMENT
   Main Stylesheet — styles.css
   Color Palette:
     Navy Dark:   #0D1B2A
     Navy Mid:    #132238
     Navy Light:  #1A3050
     Gold:        #1F7E5C
     Emerald:     #1F7E5C
     Emerald Light:  #3ab285
     Emerald Dark:   #145940
     White:       #F5F0E8
     Gray:        #8A9BB0
   ==================================================== */

/* ========================
   0. CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* PRIMARY COLORS
     Navy Dark:   #0D1B2A
     Navy Mid:    #1B263B
     Navy Border: #415A77
     Emerald:     #1F7E5C
     Emerald Light:  #3ab285
     Emerald Dark:   #145940
  */

  /* BRAND COLORS */
  --navy-dark:   #0D1B2A;
  --navy-mid:    #1B263B;
  --navy-border: #415A77;
  
  --emerald:          #1F7E5C;
  --emerald-light:    #3ab285;
  --emerald-dark:     #145940;
  --emerald-subtle:   rgba(31, 126, 92, 0.1);

  --white:         #FFFFFF;
  --cream:         #F5F0E8;
  --gray-300:      #D1D9E0;
  --gray-500:      #8A9BB0;
  --gray-700:      #4A5568;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-full:   9999px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,0.2);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.25);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.35);
  --shadow-gold:   0 0 30px rgba(31, 126, 92, 0.25);

  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   500ms ease;

  --max-width:         1200px;
  --section-padding:   96px 24px;
  --nav-height:        116px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-dark);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, video {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

ol { list-style: none; }

/* ========================
   2. TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* ========================
   3. UTILITIES
   ======================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--emerald); }
.text-light { color: var(--cream); }

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-title.text-light { color: var(--white); }

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald), var(--emerald-dark));
  margin: 0 auto 24px;
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.link-gold {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========================
   4. BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald), var(--emerald-light));
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(31, 126, 92, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(31, 126, 92, 0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(31, 126, 92, 0.6);
}

.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(31, 126, 92, 0.2);
}

.btn-sm { padding: 10px 24px; font-size: 0.8rem; }

.btn-full { width: 100%; }

.btn-hero {
  padding: 18px 48px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #10b981, #059669);
  background-size: 200% auto;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.btn-hero:hover {
  background-position: right center;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-hero svg {
  transition: transform 0.3s ease;
}

.btn-hero:hover svg {
  transform: translateX(6px);
}

/* ========================
   5. NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  /* Transparent by default, filled on scroll (via JS) */
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 126, 92, 0.2);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { 
  display: flex; 
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(31, 126, 92, 0.3);
  transition: box-shadow var(--transition-base);
  overflow: hidden;
  height: 100px;
  width: 100px;
}
.nav-logo:hover {
  box-shadow: 0 4px 16px rgba(31, 126, 92, 0.55);
}

.logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: var(--navy-dark) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav-cta::after { display: none; }

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

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   6. HERO / BANNER
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-video--active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.35) 0%,
    rgba(13, 27, 42, 0.25) 40%,
    rgba(13, 27, 42, 0.55) 75%,
    rgba(13, 27, 42, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald-light);
  padding: 8px 24px;
  border: 1px solid rgba(31, 126, 92, 0.6);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(13, 27, 42, 0.7);
  margin-bottom: 0; /* row handles spacing now */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 20px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(13, 27, 42, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-title-emerald {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245, 240, 232, 0.88);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--emerald-light); font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(31, 126, 92, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(31, 126, 92, 0.3);
  flex-shrink: 0;
}

/* Hero Scroll CTA */
.hero-scroll-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-bottom: 32px;
  color: var(--gray-500);
  transition: color var(--transition-base);
  animation: heroFadeIn 2s ease-out 0.8s both;
}

.hero-scroll-cta:hover { color: var(--emerald); }

.scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

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

/* ========================
   7. WHAT WE DO SECTION
   ======================== */
.what-we-do {
  background: var(--navy-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: min(680px, 100%);
  justify-content: center;
  gap: 24px;
}

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

.what-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 20px;
}

.what-lead strong { color: var(--emerald); font-weight: 600; }

.what-body {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.75;
}

.what-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
}

.info-card:hover {
  border-left-color: var(--emerald-light);
  background: var(--navy-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  flex-shrink: 0;
  color: var(--emerald);
  margin-top: 2px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========================
   8. ADVANTAGES SECTION
   ======================== */
.advantages {
  position: relative;
  background: var(--navy-mid);
  overflow: hidden;
}

.advantages-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(31, 126, 92, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(31, 126, 92, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.section-header--light .section-title { color: var(--white); }

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

.advantage-card {
  position: relative;
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.advantage-card:hover {
  border-color: rgba(31, 126, 92, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(31, 126, 92, 0.1);
}

.advantage-card:hover::before { opacity: 1; }

.advantage-card--featured {
  border-color: rgba(31, 126, 92, 0.35);
  background: linear-gradient(135deg, rgba(31, 126, 92, 0.08), rgba(13, 27, 42, 0.8));
}

.advantage-card--safe {
  border-color: rgba(74, 222, 128, 0.2);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(13, 27, 42, 0.8));
}

.advantage-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(31, 126, 92, 0.12);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  user-select: none;
}

.advantage-icon {
  color: var(--emerald);
  margin-bottom: 20px;
}

.advantage-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 14px;
}

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

.advantage-text strong { color: var(--cream); }

/* Featured card */
.blog-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--emerald-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.blog-card--featured {
  border-color: rgba(31, 126, 92, 0.25);
  background: linear-gradient(160deg, rgba(31, 126, 92, 0.05), var(--navy-mid));
}

.blog-card--featured:hover {
  border-color: rgba(31, 126, 92, 0.5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 48px rgba(31, 126, 92, 0.08);
}

/* Meta row: category badge + read time */
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-card-category {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-light));
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.blog-card-read {
  font-size: 0.75rem;
  color: var(--gray-700);
  font-style: italic;
}

/* Title — BIG, cream, display font */
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* Title link */
.blog-card-title-link {
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
}

.blog-card-title-link:hover { color: var(--emerald-light); }

/* Excerpt — clearly smaller and muted */
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* Footer row */
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--navy-border);
  margin-top: auto;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-700);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.blog-card-link:hover {
  color: var(--emerald-light);
  gap: 10px;
}


.advantage-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald-light));
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.advantage-badge--safe {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

/* ========================
   9. HOW IT WORKS
   ======================== */
.how-it-works {
  background: var(--navy-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
  animation: fadeSlideUp 0.6s ease-out both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(31, 126, 92, 0.4);
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(31, 126, 92, 0.3));
  transform: translateY(-50%);
}

.process-step:last-child .step-connector { display: none; }

.step-content { flex: 1; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========================
   10. ABOUT US / TRUST
   ======================== */
.about-us {
  background: var(--navy-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(31, 126, 92, 0.2);
}

.about-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(31, 126, 92, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-icon { font-size: 1.5rem; }

.badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.4;
}

.about-content { padding-right: 8px; }

.about-title {
  text-align: left;
  margin-bottom: 16px;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 20px;
}

.about-body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.trust-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.trust-icon {
  color: var(--emerald);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.trust-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================
   11. DISCLAIMER
   ======================== */
.disclaimer-section {
  padding: 48px 24px;
  background: var(--navy-dark);
}

.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(26, 48, 80, 0.5);
  border: 1px solid rgba(31, 126, 92, 0.2);
  border-left: 4px solid var(--emerald);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.disclaimer-text {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.disclaimer-text strong { color: var(--cream); }


   13. FOOTER
   ======================== */
.footer {
  background: #080F18;
  border-top: 1px solid rgba(31, 126, 92, 0.15);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 90px;
  width: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 20px;
  filter: brightness(0.9);
  clip-path: circle(48%);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.footer-nav-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--emerald-light); }

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

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--gray-700);
}

.footer-disclaimer-mini {
  font-size: 0.75rem;
  color: rgba(138, 155, 176, 0.6);
  max-width: 800px;
  text-align: center;
}

/* ========================
   14. FLOATING WHATSAPP BUTTON
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.85); }
}

/* Tooltip on hover */
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(13, 27, 42, 0.95);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 211, 102, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* ========================
   15. SCROLL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================
   16. RESPONSIVE — TABLET
   ======================== */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-image { height: 400px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    align-items: flex-start;
  }

  .step-number { flex-shrink: 0; }

  .step-connector {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--emerald), rgba(31, 126, 92, 0.3));
    margin: 8px 0 8px 26px;
  }

  .process-step:last-child { margin-bottom: 0; }

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

  .contact-info-card { position: static; }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

/* ========================
   17. RESPONSIVE — MOBILE
   ======================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 20px;
    --nav-height: 68px;
  }

  /* Navbar mobile */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-logo {
    position: relative;
    z-index: 1001;
    height: 60px;
    width: 60px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8, 15, 24, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 999;
    padding-top: var(--nav-height);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav-cta {
    padding: 12px 28px;
    font-size: 0.85rem;
  }

  /* Hero mobile */
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item { padding: 0; }

  /* Advantages mobile */
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-disclaimer-mini { text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .disclaimer-box {
    flex-direction: column;
    gap: 16px;
  }
}

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

  html { scroll-behavior: auto; }
  .scroll-arrow { animation: none; }
}

/* ========================
   19. PRINT STYLES
   ======================== */
@media print {
  .navbar, .back-to-top, .hero-video-wrapper, .hero-scroll-cta { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 40px 24px; }
  .hero-content { color: black; }
}
