/* ============================================================
   TEACHER PAULA FURIATH — Landing Page Stylesheet
   Brand Colors: Navy #1B3A5C · Gold #F2B705 · Teal #7DB8C4 · Coral #E83350
   Fonts: Raleway (body/headings) · Adelia (decorative)
   ============================================================ */

/* ── Custom Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Raleway';
  src: url('assets/fonts/Raleway-VariableFont.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Adelia';
  src: url('assets/fonts/adelia.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ── Design Tokens (CSS Custom Properties) ────────────────── */
:root {
  /* Brand palette */
  --navy:       #1B3A5C;
  --navy-dark:  #0F2440;
  --navy-light: #2A5580;
  --gold:       #F2B705;
  --gold-dim:   #D9A004;
  --teal:       #7DB8C4;
  --teal-dark:  #5A9EAD;
  --teal-light: #A8D5DE;
  --coral:      #E83350;
  --coral-dim:  #C22A44;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray-100:   #E8ECF1;
  --gray-200:   #C9D1DB;
  --gray-600:   #6B7A8D;
  --gray-800:   #2D3748;
  --black:      #0A0E14;

  /* Typography */
  --font-body:      'Raleway', sans-serif;
  --font-decorative: 'Adelia', cursive;

  /* Spacing */
  --section-py: clamp(2.5rem, 5vw, 5rem); /* Reduced padding for more compact design */
  --container-px: clamp(1.25rem, 4vw, 3rem);

  /* Borders & Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm:  0 2px 8px  rgba(27,58,92,.08);
  --shadow-md:  0 4px 20px rgba(27,58,92,.12);
  --shadow-lg:  0 8px 40px rgba(27,58,92,.18);
  --shadow-glow-gold:  0 0 30px rgba(242,183,5,.35);
  --shadow-glow-teal:  0 0 30px rgba(125,184,196,.35);
  --shadow-glow-coral: 0 0 30px rgba(232,51,80,.25);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s var(--ease-out-expo);
}

/* ── Global Reset ─────────────────────────────────────────── */
*,
*::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-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.nav__logo img {
  height: clamp(40px, 6vw, 60px); /* Larger but responsive logo */
  width: auto;
  display: block;
}

/* Ensure no global image styles break other sections */
img.about__image {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.65;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Floating Brand Assets ────────────────────────────────── */
.floating-asset {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: drop-shadow(0 0 10px rgba(242, 183, 5, 0.3));
  animation: floatSlow 10s ease-in-out infinite;
}

.floating-asset--compass {
  width: 180px;
  top: 5%;
  right: -50px;
}

.floating-asset--plane {
  width: 140px;
  bottom: 10%;
  left: -40px;
  animation-delay: -3s;
}

.floating-asset--decor-1 {
  width: 250px;
  top: -100px;
  left: -100px;
  opacity: 0.1;
}

.floating-asset--pricing-left {
  width: 180px;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  opacity: 0.15;
  z-index: 1;
}

.floating-asset--pricing-right {
  width: 150px;
  top: 40%;
  right: -30px;
  transform: translateY(-50%) rotate(-15deg);
  opacity: 0.15;
  z-index: 1;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.35s !important; }
.stagger-4 { transition-delay: 0.5s !important; }
.stagger-5 { transition-delay: 0.65s !important; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 36, 64, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: clamp(38px, 6vw, 55px);
  filter: none;
  margin-top: 5px; /* Alignment tweak as requested */
  transition: all var(--transition-base);
}

.navbar.scrolled .navbar__logo img {
  height: 40px;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition-base);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.navbar__cta:hover {
  background: #FFD042;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.navbar__cta::after { display: none !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ══════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
}

/* Animated particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none; /* Let clicks pass through to sections below */
}

/* Floating geometric shapes */
.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none; /* Let clicks pass through */
}

.hero__shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.08;
  animation: floatShape 20s ease-in-out infinite;
}

.hero__shape--1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -10%;
  right: -5%;
  animation-duration: 25s;
}

.hero__shape--2 {
  width: 250px;
  height: 250px;
  background: var(--teal);
  bottom: 10%;
  left: -3%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.hero__shape--3 {
  width: 150px;
  height: 150px;
  background: var(--coral);
  top: 40%;
  right: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}

.hero__shape--4 {
  width: 80px;
  height: 80px;
  background: var(--gold);
  bottom: 25%;
  left: 30%;
  animation-duration: 15s;
  animation-delay: -3s;
  border-radius: var(--radius-lg);
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-15px, 20px) rotate(-3deg); }
  75% { transform: translate(25px, 15px) rotate(7deg); }
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Gradient glow at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--off-white), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 850px;
  padding: 6rem var(--container-px) 2rem var(--container-px); /* Increased top padding to avoid header overlap */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,183,5,0.12);
  border: 1px solid rgba(242,183,5,0.25);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s var(--ease-out-expo) both;
}

.hero__badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s 0.2s var(--ease-out-expo) both;
}

.hero__title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero__title .typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.9s 0.4s var(--ease-out-expo) both;
}

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

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s var(--ease-out-expo) both;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 25px rgba(242,183,5,0.35);
}

.btn--primary:hover {
  background: #FFD042;
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(242,183,5,0.5);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), #FFD042, var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(8px);
}

.btn--primary:hover::before {
  opacity: 1;
}

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

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn--large {
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
}

.btn--glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(242,183,5,0.35); }
  50% { box-shadow: 0 4px 45px rgba(242,183,5,0.55), 0 0 80px rgba(242,183,5,0.15); }
}

/* Scroll down indicator */
.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  display: none; /* Removed completely to avoid any overlap */
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 2 — BENEFITS
   ══════════════════════════════════════════════════════════════ */
.benefits {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.5rem; /* Reduced padding for smaller cards */
  border: 1px solid rgba(125, 184, 196, 0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.5s ease;
}

.benefit-card:hover::before {
  border-color: var(--teal);
  box-shadow: inset 0 0 20px rgba(125,184,196,0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-card__icon {
  width: 50px; /* Smaller icon */
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: transform var(--transition-base);
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.benefit-card__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 2.5 — ABOUT PAULA
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.about__image-border {
  position: absolute;
  inset: -15px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  transform: translate(-15px, 15px);
}

.about__image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  filter: contrast(1.1);
  width: 100%; /* Constrain to image-wrapper */
  height: auto;
}

.about__content {
  max-width: 560px;
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.highlight-text {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--teal-dark);
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}

.about__stat h4 {
  font-family: var(--font-decorative);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.about__stat p {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-600);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 3 — PRODUCT SHOWCASE
   ══════════════════════════════════════════════════════════════ */
.showcase {
  padding: var(--section-py) 0;
  background: var(--navy-dark) url('id/BGs/BGs_1.png') no-repeat center/cover; /* Brand BG integration */
  background-attachment: fixed;
  overflow: hidden;
  color: var(--white);
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, var(--navy-dark));
  pointer-events: none;
}

/* ── 5. PRICING BG ART ────────────────────────────────── */
.pricing {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark) url('id/BGs/BGs_5.png') no-repeat bottom right/900px;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--navy-dark), transparent 30%, transparent 70%, var(--navy-dark));
  pointer-events: none;
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

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

.showcase__slider-container {
  position: relative;
  margin-top: 3rem;
  padding: 0 1rem;
}

.showcase__slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for cleaner look */
  padding: 1rem 0 3rem 0;
}

.showcase__slider::-webkit-scrollbar {
  display: none;
}

.showcase__slide {
  flex: 0 0 260px; /* Reduced width */
  height: 350px;   /* Reduced height to 350px as requested */
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: 1px solid rgba(125, 184, 196, 0.3); /* Teal neon border hint */
  box-shadow: 0 0 15px rgba(125, 184, 196, 0.1);
}

.showcase__slide:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 0 30px rgba(125, 184, 196, 0.4), 0 20px 40px rgba(0,0,0,0.4);
  z-index: 10;
  border-color: var(--teal-light);
}

.showcase__slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}

.showcase__slide:hover img {
  filter: brightness(0.6) blur(2px) !important;
}

.showcase__slide span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 5;
}

.showcase__slide:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Slider Nav */
.showcase__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.showcase__btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.showcase__btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 41, 0.85); /* Translucent background */
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(15px); /* Increased blur */
  -webkit-backdrop-filter: blur(15px);
}

.video-modal.active {
  display: flex;
}

.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Larger content area */
  aspect-ratio: 16/9;
  background: var(--black);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.video-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2200;
  transition: all 0.3s ease;
}

.video-modal__close:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.video-modal__container {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 4 — PRICING PLANS
   ══════════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(125,184,196,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(242,183,5,0.06) 0%, transparent 50%);
}

.pricing__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

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

.pricing__header .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.pricing__grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px; /* Even more compact */
  margin: 0 auto;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem; /* Compressed padding */
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 10; /* Ensure this card is above floating assets */
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.5s ease;
  pointer-events: none; /* Fixed: prevents blocking clicks */
}

.plan-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
}

.plan-card:hover::before {
  border-color: var(--teal);
}

/* Popular plan */
.plan-card--popular {
  background: rgba(242,183,5,0.08);
  border-color: rgba(242,183,5,0.3);
  transform: scale(1.05);
}

.plan-card--popular:hover {
  transform: scale(1.05) translateY(-10px);
  background: rgba(242,183,5,0.12);
}

.plan-card--popular::before {
  border-color: var(--gold) !important;
}

.plan-card--popular::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(242,183,5,0.15), transparent, rgba(242,183,5,0.1));
  z-index: -1;
  pointer-events: none; /* Fixed: prevents blocking clicks */
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(125,184,196,0.2), rgba(125,184,196,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.plan-card--popular .plan-card__icon {
  background: linear-gradient(135deg, rgba(242,183,5,0.25), rgba(242,183,5,0.08));
}

.plan-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.plan-card__price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.plan-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.plan-card--popular .plan-card__price {
  color: var(--gold);
}

.plan-card__period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.plan-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card__features li:last-child {
  border-bottom: none;
}

.plan-card__features li .check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card--popular .plan-card__features li .check {
  color: var(--gold);
}

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

.plan-card .btn--outline {
  border-color: rgba(255,255,255,0.2);
}

.plan-card .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal);
  color: var(--teal);
}

.plan-card--popular .btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.plan-card__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  position: relative;
  z-index: 5; /* Ensure buttons are above decorators */
}

.plan-card__msg-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-base);
}

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

.plan-card__payment-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.security-tag {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 5 — TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--off-white);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials__carousel {
  display: flex;
  gap: 1.5rem;
  animation: scrollCarousel 30s linear infinite;
  width: max-content;
}

.testimonials__carousel:hover {
  animation-play-state: paused;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 340px;
  max-width: 380px;
  border: 1px solid var(--gray-100);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

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

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ══════════════════════════════════════════════════════════════
   SECTION 6 — FINAL CTA
   ══════════════════════════════════════════════════════════════ */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,183,5,0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-final__title .highlight {
  color: var(--gold);
}

.cta-final__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn--primary {
  font-size: 1.25rem;
  padding: 1.3rem 3.5rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer__text {
  font-size: 0.85rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing__grid, .pricing__grid--2-cols {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .about__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about__stats {
    justify-content: center;
  }
  
  .about__image-border {
    inset: -10px;
    transform: translate(-10px, 10px);
  }

  .plan-card--popular {
    transform: scale(1);
    order: -1;
  }

  .plan-card--popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .navbar__links.active {
    right: 0;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__links a {
    font-size: 1.1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .showcase__devices {
    flex-direction: column;
  }

  .showcase__device--laptop { max-width: 90%; }
  .showcase__device--phone { max-width: 150px; }
  .showcase__device--tablet { max-width: 250px; }

  .showcase__copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    min-width: 290px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

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

/* ── WhatsApp floating button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: bounceIn 0.6s 2s var(--ease-out-expo) both;
}

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

@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
