/* ============================================================
   LAUDOPREV — CORPORATE PREMIUM CSS
   Design System: Navy + White + Gold
   ============================================================ */

:root {
  /* Brand Colors - HealthTech */
  --mint:          #1CE08D;
  --mint-dark:     #15BA74;
  --mint-light:    #E2FBF0;
  
  --slate-900:     #0F172A;
  --slate-800:     #1E293B;
  --slate-600:     #475569;
  
  --bg-app:        #F4F9FC; /* Light icy blue from platform */

  /* Mapping old variables to new scheme */
  --navy:          var(--slate-900);
  --navy-deep:     #020617;
  --navy-mid:      var(--slate-800);
  --navy-light:    var(--slate-600);
  --gold:          var(--mint);
  --gold-light:    var(--mint-light);
  --gold-muted:    var(--mint-light);

  /* Neutral */
  --white:         #ffffff;
  --off-white:     var(--bg-app);
  --gray-50:       #F8FAFC;
  --gray-100:      #E2E8F0;
  --gray-300:      #CBD5E1;
  --gray-500:      #64748B;
  --gray-700:      #334155;
  --text-main:     var(--slate-800);
  --text-muted:    var(--slate-600);

  /* Semantic */
  --primary:       var(--navy);
  --accent:        var(--gold);
  --bg-main:       var(--white);
  --bg-off:        var(--off-white);
  --bg-dark:       var(--navy-deep);

  /* Radius - Modern Startup / App feel */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Shadows - Soft and modern */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);

  /* Transitions */
  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

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

ul { list-style: none; }

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

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

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

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

@keyframes lineGrow {
  from { width: 0; }
  to   { width: 48px; }
}

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.58s; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  cursor: pointer;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,31,68,0.25);
}

.btn-primary:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,31,68,0.30);
}

.btn-gold {
  background: var(--mint);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(28, 224, 141, 0.3);
}

.btn-gold:hover {
  background: var(--mint-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 185, 116, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
}

.btn-outline-white:hover {
  background: var(--gray-50);
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  /* transparent by default — becomes white on scroll via JS class */
}

.navbar.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gray-100), var(--shadow-sm);
}

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

.navbar .logo img {
  height: 44px;
  width: auto;
  transition: filter 0.3s;
}

/* White logo on dark hero, dark logo when scrolled */
.navbar:not(.is-scrolled) .logo img {
  filter: none;
}

.navbar.is-scrolled .logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
}

.nav-links a:hover {
  color: var(--mint-dark);
  border-bottom-color: var(--mint);
}

.navbar.is-scrolled .nav-links a {
  color: var(--text-muted);
}

.navbar.is-scrolled .nav-links a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ============================================================
   SECTION LABELS (shared)
   ============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

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

.section-title .section-label {
  justify-content: center;
}

.section-title h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

.section-title p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================
   HERO — Corporate Parallax
   ============================================================ */

.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Parallax image layer — moved by JS */
.hero-bg-wrap {
  position: absolute;
  inset: -100px 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  will-change: transform;
  filter: contrast(1.05) saturate(1.1);
}

/* Multi-layer overlay: left dark gradient + overall dim */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(244, 249, 252, 1) 0%, rgba(244, 249, 252, 0.95) 45%, rgba(244, 249, 252, 0.5) 100%);
}

/* Gold bottom border accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  width: 100%;
}

/* ── Content ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--gray-100);
  padding-top: 32px;
}

.hero-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--gray-100);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stat strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--mint-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
}

.hero-scroll span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.hero-scroll-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: scrollArrow 2s ease-in-out infinite;
}

/* ============================================================
   TRUST BAR — logos ou selos
   ============================================================ */

.trust-bar {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-item i {
  font-size: 22px;
  color: var(--navy);
}

/* ============================================================
   HOW IT WORKS — Features
   ============================================================ */

.features {
  padding: 120px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

/* Horizontal connector line */
.steps-grid::before { display: none; }

.step-card {
  padding: 48px 32px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid transparent;
  z-index: 1;
  transition: var(--ease);
}

.step-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--gold);
  transform: translateY(-8px);
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--mint-dark) !important;
  margin-bottom: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-light) !important;
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
}

.step-card:nth-child(2) .step-number { background: var(--navy-mid); }
.step-card:nth-child(3) .step-number { background: var(--navy-light); }
.step-card:nth-child(4) .step-number { background: var(--gold); color: var(--navy-deep); }

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   VIDEO SECTION — dark navy, clean embed
   ============================================================ */

.video-section {
  background: var(--off-white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

/* subtle background texture removed for clean look */
.video-section::before {
  display: none;
}

.video-section .section-label {
  color: var(--mint-dark);
}

.video-section .section-label::before {
  background: var(--mint-dark);
}

.video-section .section-title h2 {
  color: var(--navy);
}

.video-section .section-title p {
  color: var(--text-muted);
}

.video-wrapper {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border-radius: var(--r-lg);
  background: var(--white);
  padding: 12px;
}

.video-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.55);
  /* Gold top border accent */
  border-top: 3px solid var(--gold);
}

.video-frame::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Decorative gold corner dots */
.video-deco {
  position: absolute;
  top: -24px;
  bottom: -24px;
  left: -24px;
  right: -24px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.3;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about {
  padding: 120px 0;
  background: var(--off-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  display: block;
}

/* Gold frame accent */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  opacity: 0.3;
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
}

/* Floating credential badge */
.about-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--gold);
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.about-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* About content text */
.about-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 12px;
  line-height: 1.2;
}

.about-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 28px 0 36px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.about-highlights li i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing {
  padding: 120px 0;
  background: var(--white);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--ease);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
  transform: translateY(-4px);
}

.pricing-card.premium {
  border-color: rgba(28, 224, 141, 0.4);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(28, 224, 141, 0.1);
  background: var(--white);
}

.pricing-card.premium:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(28, 224, 141, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--mint);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--r-full);
}

.pricing-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card.premium .pricing-header {
  border-bottom-color: rgba(201,168,76,0.2);
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  min-height: 48px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.pricing-price .curr {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
}

.pricing-price .amount {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}

.pricing-sub {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  margin-top: 8px;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-main);
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-50);
  line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
  font-size: 17px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li.off {
  color: var(--gray-300);
}

.pricing-features li.off i {
  color: var(--gray-300);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-50);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(26,58,110,0.8) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .section-label { justify-content: center; }

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 12px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 44px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-deep);
  color: var(--gray-300);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  max-width: 320px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

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

.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: var(--ease);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-contact li i {
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-image-wrap::before { display: none; }

  .about-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .steps-grid::before { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Navbar mobile squeeze fix */
  .navbar .logo img {
    height: 28px;
  }

  #nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  #nav-cta i {
    display: none; /* hide arrow icon to save space */
  }

  /* Adjust excessive vertical paddings for mobile */
  .hero { padding: 120px 0 80px; }
  .features, .video-section, .about, .pricing, .testimonials, .cta {
    padding: 80px 0;
  }

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

  .hero-content h1 { 
    font-size: clamp(32px, 8vw, 44px); 
    letter-spacing: -0.5px; 
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  /* Components Grid sizing */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-card {
    padding: 32px 24px;
  }

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

  .about-grid {
    gap: 40px;
  }

  /* Pricing */
  .pricing-grid {
    gap: 24px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }

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

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

  .nav-links { display: none; }

  .about-badge {
    position: static;
    transform: none;
    margin-top: 24px;
    border-radius: var(--r-lg);
    justify-content: center;
  }
}
