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

/* ==========================================
   BUBBLE-THEMED SKY BLUE DESIGN SYSTEM
   ========================================== */
:root {
  --primary: #38bdf8;          /* Bright Sky Blue from inspiration */
  --primary-hover: #0284c7;    /* Darker Sky Blue for hover states */
  --primary-light: #f0f9ff;    /* Extremely light sky blue background */
  --primary-tint: #e0f2fe;     /* Accent sky blue container tint */
  --primary-glow: rgba(56, 189, 248, 0.35);
  
  --secondary: #1e3a8a;        /* Deep navy blue for headings & high contrast */
  --secondary-light: #1e293b;  /* Slate text */
  --secondary-muted: #64748b;  /* Cool grey text */
  
  --bg-main: #ffffff;
  --bg-accent: #f0f9ff;
  --bg-card: #ffffff;
  
  --border-light: #e0f2fe;
  --border-focus: #38bdf8;
  
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #ffffff;
  
  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  --accent-green-light: #d1fae5;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;           /* Generous rounded corners matching inspiration */
  --radius-full: 9999px;       /* Pill buttons */
  
  --shadow-sm: 0 1px 3px rgba(56, 189, 248, 0.05);
  --shadow-md: 0 12px 30px -10px rgba(30, 58, 138, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(30, 58, 138, 0.12);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* ==========================================
   BUBBLE DECORATION MOTIFS (CSS Graphic Blobs)
   ========================================== */
.bubble-decor {
  position: absolute;
  border: 2px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 0;
  box-shadow: inset -5px -5px 15px rgba(56, 189, 248, 0.08), 
              0 10px 20px rgba(56, 189, 248, 0.04);
}

.bubble-decor::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 12%;
  width: 20%;
  height: 20%;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  filter: blur(0.5px);
}

.bubble-solid {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-tint) 70%, #bae6fd 100%);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
  box-shadow: 0 15px 35px -10px rgba(56, 189, 248, 0.15);
}

/* Floating bubble animation for subtle micro-interactions */
@keyframes floatBubble {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.bubble-floating {
  animation: floatBubble 6s ease-in-out infinite;
}

.bubble-floating-slow {
  animation: floatBubble 9s ease-in-out infinite;
}

/* ==========================================
   SVG LINE-ART ILLUSTRATIONS
   ========================================== */
.svg-illustration {
  width: 100%;
  max-width: 140px;
  height: 120px;
  margin: 0 auto 16px auto;
  display: block;
  transition: var(--transition-smooth);
}

/* SVG styling classes */
.svg-outline {
  stroke: var(--secondary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.svg-outline-thin {
  stroke: var(--secondary-muted);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.svg-fill-white {
  fill: #ffffff;
}

.svg-fill-tint {
  fill: var(--primary-tint);
}

.svg-fill-light {
  fill: var(--primary-light);
}

.svg-fill-primary {
  fill: var(--primary);
}

.svg-accent {
  stroke: var(--primary-hover);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.svg-accent-fill {
  fill: var(--primary-hover);
}

.svg-blob {
  fill: var(--primary-tint);
  opacity: 0.6;
}

.svg-sparkle {
  fill: var(--accent-gold);
}

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.text-center { text-align: center; }

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  margin-bottom: 56px;
  font-size: 1.05rem;
}

/* Rounded Pill Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full); /* Pill buttons from inspiration */
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.4);
}

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

.btn-secondary {
  background-color: var(--primary-tint);
  color: var(--primary-hover);
  border: none;
}

.btn-secondary:hover {
  background-color: #bae6fd;
  transform: translateY(-2px);
}

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

.btn-dark {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: #172554;
  transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION STICKY HEADER
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--secondary); /* Dark slate background to showcase logo's white details */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header .logo-text {
  color: #ffffff;
}

.header .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header .nav-link:hover,
.header .nav-link.active {
  color: var(--primary);
}

.header .nav-phone {
  color: #ffffff;
}

.header .nav-phone:hover {
  color: var(--primary);
}

.header .mobile-menu-toggle {
  color: #ffffff;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(-5deg);
}

.footer-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-tint);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  font-weight: 800;
  font-size: 1.25rem;
  border: 2px solid var(--primary);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--secondary);
}

.logo-text span {
  color: var(--primary);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-light);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-phone {
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.nav-phone:hover {
  color: var(--primary-hover);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--secondary);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--bg-main);
  z-index: 99;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border-light);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 12px;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-hover);
}

.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .header .nav-phone {
    display: none;
  }
}

/* ==========================================
   HERO SECTION REDESIGN (Inspired by architectural mockup)
   ========================================== */

.hero-glassmorphism {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #0f172a;
}

.hero-bg-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.4) 50%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: center;
  width: 100%;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Left Column Redesign styles */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 28px;
  width: 100%;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  width: 100%;
  max-width: 500px;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feature .feature-icon-shield {
  background: rgba(56, 189, 248, 0.16);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.hero-feature .feature-icon-star {
  background: rgba(251, 191, 36, 0.16);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.hero-feature .feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-feature .feature-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-feature .feature-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Glassmorphism Quote Card */
.hero-right-form {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.quote-card {
  background: #ffffff;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 24px;
  padding: 16px 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 12px 36px rgba(30, 58, 138, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.quote-card-header {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  text-align: left;
  padding-right: 48px;
}

.quote-card-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  text-align: left;
  margin: 0;
  letter-spacing: -0.02em;
}

.card-sketch-bubble {
  position: absolute;
  top: -4px;
  right: 0px;
  pointer-events: none;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--secondary-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1px;
  display: block;
}

.quote-form .form-control {
  width: 100%;
  padding: 7px 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary) !important;
  background: #f5f8fc !important;
  border: 1px solid rgba(30, 58, 138, 0.08) !important;
  border-radius: 9px;
  transition: all 0.2s ease;
}

/* Style select element arrow & options in quote form */
.quote-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 8px) center !important;
  padding-right: 24px;
  cursor: pointer;
}

.quote-form select.form-control option {
  color: var(--secondary) !important;
  background-color: #ffffff !important;
}

.quote-form .form-control::placeholder {
  color: var(--secondary-muted) !important;
  opacity: 0.7;
}

.quote-form .form-control:focus {
  outline: none;
  border-color: var(--primary) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15) !important;
}

/* Chrome/Safari/Opera */
.quote-form .form-control::-webkit-input-placeholder {
  color: var(--secondary-muted) !important;
}
/* Firefox 19+ */
.quote-form .form-control::-moz-placeholder {
  color: var(--secondary-muted) !important;
}
/* IE 10+ */
.quote-form .form-control:-ms-input-placeholder {
  color: var(--secondary-muted) !important;
}

/* Chrome autofill styling inside transparent inputs */
.quote-form .form-control:-webkit-autofill,
.quote-form .form-control:-webkit-autofill:hover, 
.quote-form .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--secondary) !important;
  -webkit-box-shadow: 0 0 0px 1000px #f5f8fc inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.btn-submit {
  width: 100%;
  padding: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--primary);
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.form-disclosure {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  line-height: 1.3;
  color: var(--secondary-muted) !important;
  margin-top: 2px;
  text-align: left;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-left-content {
    align-items: center;
  }
  .hero-right-form {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-glassmorphism {
    padding: 60px 0;
    min-height: auto;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .quote-card {
    padding: 30px 24px;
    gap: 20px;
  }
}

/* ── Unused legacy hero classes kept for compat ── */
.hero-features { display: none; }
.hero-feature-icon { display: none; }
.hero-stats-grid { display: contents; }
.hero-team-strip { display: none; }
.hero-team-photo { display: none; }

/* ==========================================
   MEET THE TEAM SECTION (about.html)
   ========================================== */

/* Founder featured card: 2-col image + bio */
.team-founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(56,189,248,0.15);
}

.team-founder-photo {
  position: relative;
  overflow: hidden;
}

.team-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.team-founder-card:hover .team-founder-photo img {
  transform: scale(1.04);
}

.team-founder-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-role-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
  width: fit-content;
}

.team-role-badge--light {
  background: rgba(56,189,248,0.15);
  color: var(--primary);
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.team-bio {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.team-quote {
  border-left: 3px solid var(--primary);
  padding-left: 18px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* 4-column team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(56,189,248,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4);
}

.team-card-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.07);
}

/* Bio overlay: slides up from bottom on hover */
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,58,138,0.92) 0%, rgba(30,58,138,0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-bio {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.team-card-info {
  padding: 16px 18px 20px;
}

.team-card-info .team-name {
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-founder-card {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 768px) {
  .team-founder-card {
    grid-template-columns: 1fr;
  }
  .team-founder-photo {
    height: 300px;
  }
  .team-founder-info {
    padding: 32px 28px;
  }
  .team-name {
    font-size: 1.6rem;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* Duplicate stat definitions — kept in sync with hero block above */
.hero-stat-number {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  white-space: nowrap;
}
.hero-stat-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Hero Card internal text overrides — all compact to fit viewport */
.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.hero-card-desc {
  text-align: center;
  color: #64748b;
  font-size: 0.72rem;
  margin-bottom: 10px;
  line-height: 1.4;
}



.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  background-color: #fafbfc;
  transition: var(--transition-smooth);
  color: var(--text-dark);
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  background-color: var(--bg-main);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-icon {
  position: absolute;
  right: 20px;
  top: 44px;
  color: var(--primary);
}

.hero-card-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-muted);
  background-color: var(--primary-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.hero-badge span {
  color: var(--primary-hover);
}

/* ==========================================
   TRUST BAR / PRESS BANNER
   ========================================== */
.trust-bar {
  background-color: var(--primary-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.trust-item:hover {
  opacity: 1;
  color: var(--primary-hover);
}

.trust-item span {
  color: var(--primary-hover);
  font-size: 1.35rem;
}

/* ==========================================
   SERVICES GRID SECTION
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

/* Featured / Couples Size style from the inspiration image */
.service-card.featured {
  background-color: #0f172a !important; /* dark slate/navy like the hero */
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2) !important;
}

.service-card.featured .service-img-wrapper {
  background-color: rgba(15, 23, 42, 0.6) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card.featured h3, 
.service-card.featured p, 
.service-card.featured li {
  color: #ffffff !important;
}

.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.service-card.featured .service-feature-item {
  color: #ffffff !important;
}

.service-card.featured .service-feature-item span {
  color: #f59e0b !important; /* Gold tick check */
}

.service-card.featured .btn-secondary {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: none !important;
}

.service-card.featured .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.service-img-wrapper {
  position: relative;
  height: 180px;
  background-color: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-tint), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  font-size: 3.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-fallback {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #ffffff;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-card.featured .service-badge {
  background-color: #f59e0b !important;
  color: #ffffff !important;
  border-color: #f59e0b !important;
}

.service-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--secondary);
}

.service-card.featured .service-title {
  color: #ffffff !important;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-feature-item span {
  color: var(--primary-hover);
  font-weight: bold;
}

.service-price-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.service-card.featured .service-price-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.service-price-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
}

.service-price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-card.featured .service-price-amount {
  color: #ffffff !important;
}

.service-card.featured .service-price-amount span {
  color: rgba(255, 255, 255, 0.6) !important;
}

.service-footer {
  margin-top: auto;
  padding-top: 16px;
}

/* ==========================================
   ESTIMATED PRICING CALCULATOR
   ========================================== */
.calc-section {
  background-color: var(--primary-light);
  position: relative;
}

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

@media (max-width: 968px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.calc-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

@media (max-width: 480px) {
  .calc-card {
    padding: 24px;
  }
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.calc-row .form-group {
  margin-bottom: 0;
}

.calc-row-address {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 20px;
}

.calc-row-address .form-group {
  margin-bottom: 0;
}

@media (max-width: 580px) {
  .calc-row, .calc-row-address {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.calc-output {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent);
}

.calc-output-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.calc-price {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.calc-discount-badge {
  background-color: var(--accent-green);
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  display: inline-block;
}

.calc-output-desc {
  font-size: 0.925rem;
  color: #93c5fd;
  margin-bottom: 32px;
  max-width: 300px;
  line-height: 1.6;
}

/* ==========================================
   COMPETITION COMPARISON TABLE
   ========================================== */
.comparison-container {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
}

.comp-table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.comp-table th {
  background-color: var(--secondary);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.comp-table td.highlight {
  background-color: rgba(56, 189, 248, 0.08);
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
}

.comp-table th.highlight {
  background-color: var(--primary-hover);
  text-align: center;
}

.comp-table td.center {
  text-align: center;
}

.check-icon {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.3rem;
}

.cross-icon {
  color: var(--secondary-muted);
  font-size: 1.1rem;
}

/* ==========================================
   HOW IT WORKS (4 Cards from Inspiration)
   ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-hover);
  border: 1px solid var(--primary-tint);
  background-color: var(--primary-light);
  padding: 5px 14px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 20px;
}

.step-img-box {
  width: 100%;
  height: 140px;
  background-color: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-img-box {
  background-color: var(--primary-light);
  border-color: rgba(56, 189, 248, 0.3);
}

.step-card:hover .svg-illustration {
  transform: scale(1.05);
}

.step-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.step-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================
   DECIDING CALLOUT BANNER
   ========================================== */
.deciding-banner {
  background-color: var(--primary-tint);
  border-radius: var(--radius-lg);
  padding: 44px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .deciding-banner {
    flex-direction: column;
    padding: 36px 24px;
    text-align: center;
  }
}

.deciding-text h3 {
  font-size: 1.85rem;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.deciding-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.banner-illustration {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ==========================================
   REVIEWS & TESTIMONIALS
   ========================================== */
.reviews-section {
  background-color: var(--primary-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-bottom: 48px;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

.review-rating {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.975rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-loc {
  font-size: 0.85rem;
  color: var(--secondary-muted);
}

/* ==========================================
   POLICIES & ACCORDION (FAQ)
   ========================================== */
.accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.05rem;
}

.accordion-header:hover {
  color: var(--primary-hover);
  background-color: var(--primary-light);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: var(--transition-fast);
  color: var(--primary);
  font-weight: 400;
}

.accordion-content {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  padding: 0 28px 22px 28px;
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary-hover);
}

/* ==========================================
   CONTACT PAGE & DETAILED BOOKING FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-card {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent);
}

.contact-info-title {
  color: var(--text-light);
  font-size: 1.85rem;
  margin-bottom: 20px;
}

.contact-methods {
  list-style: none;
  margin-bottom: 40px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-method-icon {
  color: var(--primary);
  font-size: 1.35rem;
  margin-top: 4px;
}

.contact-method-text h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-method-text p {
  color: #93c5fd;
  font-size: 0.925rem;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Form Styles */
.booking-form-card {
  background-color: var(--bg-card);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

@media (max-width: 480px) {
  .booking-form-card {
    padding: 24px;
  }
}

.form-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 24px;
  margin-top: 32px;
}

.form-step-title:first-of-type {
  margin-top: 0;
}

/* ==========================================
   SUCCESS MODAL FOR BOOKINGS
   ========================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 58, 138, 0.4);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  background-color: var(--bg-card);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: calc(100% - 48px);
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  margin: 0 auto 24px auto;
  border: 3px solid var(--accent-green);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background-color: var(--secondary);
  color: var(--text-light);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(56, 189, 248, 0.04);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-text {
  color: var(--text-light);
}

.footer-logo .logo-icon {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--primary);
}

.footer-desc {
  color: #93c5fd;
  font-size: 0.925rem;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
}

.footer-link {
  font-size: 0.925rem;
  color: #93c5fd;
  margin-bottom: 14px;
  display: block;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(6px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #60a5fa;
  font-size: 0.875rem;
}

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

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

/* ==========================================
   POLICIES GRID & EQUAL-HEIGHT CARDS
   ========================================== */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  align-items: stretch; /* Cards stretch to equal height in rows */
}

.policy-card {
  background-color: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.policy-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 480px) {
  .policy-card {
    padding: 24px;
  }
}

/* ==========================================
   LA REVOLTOSA BUBBLE & LIQUID ANIMATION SYSTEM
   ========================================== */
#svg-animation-assets {
  display: none;
}

/* Base distortion filter applied to decorative bubbles */
.bubble-decor, 
.bubble-solid {
  filter: url(#burbuja-distorsion);
  will-change: filter, transform;
}

/* Wobbly elements */
.wobbly-bubble {
  position: absolute;
  pointer-events: auto;
  filter: url(#burbuja-distorsion);
  transform-origin: center center;
  will-change: transform, opacity;
  animation: floatUp var(--float-duration, 15s) linear forwards;
  z-index: 1;
}

/* Dynamic pop class */
.wobbly-bubble.popping {
  pointer-events: none;
  animation: popBubble 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* Particle sparkles */
.bubble-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
  animation: particleExplode 0.45s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Hover wobble for key interactive elements */
.btn,
.hero-stat-item,
.accordion-header,
.deciding-banner {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}



/* Overlay canvas for bubbles */
#bubble-canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* behind content cards, but in front of background shapes */
  overflow: hidden;
}

/* Float Up Keyframe Animation */
@keyframes floatUp {
  0% {
    transform: translateY(105vh) translateX(0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: var(--bubble-target-opacity, 0.45);
    transform: translateY(90vh) translateX(var(--drift-1, 10px)) scale(1);
  }
  50% {
    transform: translateY(50vh) translateX(var(--drift-2, -15px)) scale(1.05);
  }
  90% {
    opacity: var(--bubble-target-opacity, 0.45);
  }
  100% {
    transform: translateY(-15vh) translateX(var(--drift-3, 20px)) scale(0.9);
    opacity: 0;
  }
}

/* Popping animation */
@keyframes popBubble {
  0% {
    transform: scale(1);
    opacity: var(--bubble-target-opacity, 0.45);
  }
  50% {
    transform: scale(1.4);
    opacity: 0.8;
    filter: url(#burbuja-distorsion) brightness(1.3);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* Particle Explosion keyframes */
@keyframes particleExplode {
  0% {
    transform: translate(0, 0) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.2);
    opacity: 0;
  }
}

/* Scroll-Driven Floating Scrub Brush Removed */

/* ==========================================
   IMMERSIVE SCROLL ZOOM SCENE SYSTEM
   Scroll-linked sticky zoom with overlay reveal.
   A 300vh outer container lets the sticky inner
   stay pinned while JS drives scale via scroll progress.
   ========================================== */

/* Outer: provides the 300vh scroll budget */
/* ==========================================
   TEAM SCROLL SEQUENCE (zoom-scene)
   500vh sticky container — JS crossfades team slides as user scrolls.
   ========================================== */

.zoom-scene-outer {
  position: relative;
  height: 600vh; /* 6 team members × ~100vh each */
}

/* Sticky inner: pins to viewport for entire scroll budget */
.zoom-scene-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--secondary);
}

/* Image container fills the sticky frame */
.zoom-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- Team slide: each member's full-viewport panel ---- */
.team-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* Crossfade only — no scale transform so portrait photos stay aligned */
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
  /* Dark navy background fills sides of portrait images */
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active slide: full opacity */
.team-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Previous slide leaving */
.team-slide.leaving {
  opacity: 0;
  z-index: 0;
}

/* Photo: contain so full portrait person is always visible.
   Height fills the viewport; width is naturally constrained by aspect ratio. */
.team-slide > img {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  object-position: center top;
  transform: translateZ(0);
  image-rendering: auto;
  /* Subtle scale-up so image fills more of the frame without cropping */
  transform: translateZ(0) scale(1.0);
}

/* Horizontal side vignettes — blend portrait edges into navy background */
.team-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--secondary) 0%, transparent 25%, transparent 75%, var(--secondary) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Per-slide dark gradient (bottom-up for caption legibility) */
.team-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 68, 0.75) 0%,
    rgba(15, 23, 68, 0.25) 25%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 4;
}

/* Name + role caption — slides up from below on .active */
.team-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 60px 80px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
              opacity 0.75s ease 0.3s;
}

.team-slide.active .team-slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.team-slide-role {
  display: inline-block;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}

.team-slide-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(15, 23, 68, 0.5);
}

/* Persistent header — "Meet the Wilson Team" pill at top */
.team-scene-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  pointer-events: none;
}

.zoom-scene-tag {
  display: inline-block;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 10px;
}

.team-scene-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Top gradient for header legibility */
.zoom-scene-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 68, 0.6) 0%,
    transparent 30%
  );
  pointer-events: none;
  z-index: 5;
}

/* Progress dots — bottom center */
.zoom-scene-progress {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.zoom-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.4s ease, background 0.4s ease;
}

.zoom-progress-dot.active {
  width: 24px;
  background: #ffffff;
}

/* Scroll hint */
.zoom-scene-scroll-hint {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.zoom-scene-scroll-hint.hidden {
  opacity: 0;
}

@keyframes scrollArrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(7px); opacity: 1; }
}

.scroll-hint-arrow {
  width: 1.5px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), transparent);
  animation: scrollArrowBounce 1.8s ease-in-out infinite;
}

/* Mobile overrides */
@media (max-width: 768px) {
  .zoom-scene-outer {
    height: 500vh;
  }
  .team-slide-caption {
    padding: 0 28px 72px;
  }
  .team-slide-name {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  .team-scene-header {
    padding-top: 28px;
  }
}

/* Reduced motion: instant crossfade, no scale */
@media (prefers-reduced-motion: reduce) {
  .team-slide,
  .team-slide-caption {
    transition: opacity 0.2s ease !important;
    transform: none !important;
  }
  .team-slide.active {
    transform: none !important;
  }
}


/* ==========================================
   SCROLL-TRIGGERED REVEAL SYSTEM (LA REVOLTOSA STYLE)
   ========================================== */

:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reveal-mask container provides overflow-hidden masking for child elements */
.reveal-mask {
  display: block;
  overflow: hidden;
  position: relative;
}

/* RevealSection does not animate itself as a block; instead it acts as the IntersectionObserver trigger */
.RevealSection, .reveal-section {
  position: relative;
}

/* StaggerReveal container manages stagger delays on child elements */
.StaggerReveal .MaskTextReveal,
.StaggerReveal .WaveCardReveal,
.StaggerReveal .WaveImageReveal,
.StaggerReveal .reveal-paragraph,
.StaggerReveal .reveal-btn,
.StaggerReveal .section-subtitle,
.StaggerReveal .hero-badge-pill,
.StaggerReveal .hero-feature,
.StaggerReveal .hero-stats-wrapper,
.StaggerReveal .reveal-card,
.StaggerReveal .reveal-image,
.StaggerReveal .reveal-stagger-item,
.reveal-stagger-container .reveal-stagger-item {
  transition-delay: calc(var(--stagger-delay, 0) * 110ms);
}

/* --- 1. Text Mask Reveal --- */
.MaskTextReveal {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: inherit;
}

.MaskTextReveal > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.05s var(--ease-premium);
  transition-delay: inherit;
  will-change: transform;
}

.StaggerReveal.revealed .MaskTextReveal > span,
.RevealSection.revealed .MaskTextReveal > span,
.revealed .MaskTextReveal > span {
  transform: translateY(0);
}

/* --- 2. Section Paragraph Reveal --- */
.reveal-paragraph {
  display: block;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.9s var(--ease-premium), opacity 0.9s var(--ease-premium);
  transition-delay: inherit;
  will-change: transform, opacity;
}

.StaggerReveal.revealed .reveal-paragraph,
.RevealSection.revealed .reveal-paragraph,
.revealed .reveal-paragraph {
  transform: translateY(0);
  opacity: 1;
}

/* --- 3. Curved Wave Section Reveal --- */
.WaveSectionReveal {
  clip-path: ellipse(150% 0% at 50% 100%);
  transform: translateY(60px);
  transition: clip-path 1.25s var(--ease-premium), 
              transform 1.25s var(--ease-premium);
  will-change: clip-path, transform;
}

.WaveSectionReveal.revealed,
.RevealSection.revealed.WaveSectionReveal,
.revealed .WaveSectionReveal,
.revealed.WaveSectionReveal {
  clip-path: ellipse(150% 135% at 50% 50%);
  transform: translateY(0);
}

/* --- 4. Curved Wave Card Reveal --- */
.WaveCardReveal,
.CardReveal,
.reveal-card,
.reveal-stagger-container .reveal-stagger-item:not(.reveal-image) {
  clip-path: ellipse(150% 0% at 50% 100%);
  transform: translateY(50px) scale(0.97);
  transition: clip-path 1.15s var(--ease-premium), 
              transform 1.15s var(--ease-premium);
  transition-delay: inherit;
  will-change: clip-path, transform;
}

.StaggerReveal.revealed .WaveCardReveal,
.StaggerReveal.revealed .CardReveal,
.StaggerReveal.revealed .reveal-card,
.reveal-stagger-container.revealed .reveal-stagger-item:not(.reveal-image),
.RevealSection.revealed .WaveCardReveal,
.RevealSection.revealed .CardReveal,
.RevealSection.revealed .reveal-card,
.revealed .WaveCardReveal,
.revealed .CardReveal,
.revealed .reveal-card,
.revealed .reveal-stagger-item {
  clip-path: ellipse(150% 135% at 50% 50%);
  transform: translateY(0) scale(1);
}

/* --- 5. Curved Wave Image Reveal --- */
.WaveImageReveal,
.ImageMaskReveal,
.reveal-image,
.reveal-stagger-container .reveal-stagger-item.reveal-image {
  clip-path: ellipse(150% 0% at 50% 100%);
  transform: scale(1.06);
  transition: clip-path 1.25s var(--ease-premium), 
              transform 1.25s var(--ease-premium);
  transition-delay: inherit;
  will-change: clip-path, transform;
}

.StaggerReveal.revealed .WaveImageReveal,
.StaggerReveal.revealed .ImageMaskReveal,
.StaggerReveal.revealed .reveal-image,
.reveal-stagger-container.revealed .reveal-stagger-item.reveal-image,
.RevealSection.revealed .WaveImageReveal,
.RevealSection.revealed .ImageMaskReveal,
.RevealSection.revealed .reveal-image,
.revealed .WaveImageReveal,
.revealed .ImageMaskReveal,
.revealed .reveal-image {
  clip-path: ellipse(150% 135% at 50% 50%);
  transform: scale(1);
}

/* --- 6. Button CTA Reveal --- */
.reveal-btn {
  display: inline-flex;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s var(--ease-premium), opacity 0.9s var(--ease-premium);
  transition-delay: inherit;
  will-change: transform, opacity;
}

.StaggerReveal.revealed .reveal-btn,
.RevealSection.revealed .reveal-btn,
.revealed .reveal-btn {
  transform: translateY(0);
  opacity: 1;
}

/* Eyebrows, features, stats headers, and hero badge */
.section-subtitle, .hero-feature {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.9s var(--ease-premium), opacity 0.9s var(--ease-premium);
  transition-delay: inherit;
  will-change: transform, opacity;
}

/* hero-stats-wrapper uses hero-anim-5 keyframe in hero; in other sections it uses the observer */
.hero-stats-wrapper {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.9s var(--ease-premium), opacity 0.9s var(--ease-premium);
  transition-delay: inherit;
  will-change: transform, opacity;
}
/* But in hero, the hero-anim-5 keyframe takes over — reset transition-based state */
.hero-stats-wrapper.hero-anim-5 {
  transition: none;
}

.StaggerReveal.revealed .section-subtitle,
.StaggerReveal.revealed .hero-badge-pill,
.StaggerReveal.revealed .hero-feature,
.StaggerReveal.revealed .hero-stats-wrapper,
.RevealSection.revealed .section-subtitle,
.RevealSection.revealed .hero-badge-pill,
.RevealSection.revealed .hero-feature,
.RevealSection.revealed .hero-stats-wrapper,
.revealed .section-subtitle,
.revealed .hero-badge-pill,
.revealed .hero-feature,
.revealed .hero-stats-wrapper {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Overrides (Mobile) */
@media (max-width: 768px) {
  .StaggerReveal .MaskTextReveal,
  .StaggerReveal .WaveCardReveal,
  .StaggerReveal .WaveImageReveal,
  .StaggerReveal .reveal-card,
  .StaggerReveal .reveal-image,
  .StaggerReveal .reveal-paragraph,
  .StaggerReveal .reveal-btn,
  .reveal-stagger-container .reveal-stagger-item {
    transition-delay: calc(var(--stagger-delay, 0) * 70ms) !important;
  }
  
  .MaskTextReveal > span {
    transform: translateY(20px) !important;
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out !important;
  }
  
  .StaggerReveal.revealed .MaskTextReveal > span,
  .RevealSection.revealed .MaskTextReveal > span,
  .revealed .MaskTextReveal > span {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  
  .reveal-paragraph {
    transform: translateY(20px) !important;
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out !important;
  }
  
  .StaggerReveal.revealed .reveal-paragraph,
  .RevealSection.revealed .reveal-paragraph,
  .revealed .reveal-paragraph {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .WaveSectionReveal {
    clip-path: none !important;
    transform: translateY(30px) !important;
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out !important;
  }
  
  .WaveSectionReveal.revealed,
  .RevealSection.revealed.WaveSectionReveal,
  .revealed .WaveSectionReveal {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  
  .WaveCardReveal,
  .reveal-card,
  .reveal-stagger-container .reveal-stagger-item:not(.reveal-image) {
    transform: translateY(25px) scale(1) !important;
    clip-path: none !important;
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out !important;
  }
  
  .StaggerReveal.revealed .WaveCardReveal,
  .StaggerReveal.revealed .reveal-card,
  .reveal-stagger-container.revealed .reveal-stagger-item:not(.reveal-image),
  .RevealSection.revealed .WaveCardReveal,
  .revealed .WaveCardReveal,
  .revealed .reveal-card,
  .revealed .reveal-stagger-item {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  
  .WaveImageReveal,
  .reveal-image,
  .reveal-stagger-container .reveal-stagger-item.reveal-image {
    transform: scale(1) !important;
    clip-path: none !important;
    opacity: 0;
    transition: opacity 0.7s ease-out !important;
  }
  
  .StaggerReveal.revealed .WaveImageReveal,
  .StaggerReveal.revealed .reveal-image,
  .reveal-stagger-container.revealed .reveal-stagger-item.reveal-image,
  .RevealSection.revealed .WaveImageReveal,
  .revealed .WaveImageReveal,
  .revealed .reveal-image {
    opacity: 1 !important;
  }
  
  .reveal-btn {
    transform: translateY(15px) !important;
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out !important;
  }
  
  .StaggerReveal.revealed .reveal-btn,
  .revealed .reveal-btn {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

/* Respect Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .MaskTextReveal > span,
  .WaveSectionReveal,
  .WaveCardReveal,
  .WaveImageReveal,
  .reveal-card,
  .reveal-image,
  .reveal-paragraph,
  .reveal-btn,
  .section-subtitle,
  .hero-feature,
  .hero-stats-wrapper,
  .reveal-stagger-item,
  .hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4, .hero-anim-5 {
    transition: opacity 0.25s ease !important;
    animation: none !important;
    transition-delay: 0s !important;
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }
  
  .StaggerReveal.revealed .MaskTextReveal > span,
  .StaggerReveal.revealed .WaveSectionReveal,
  .StaggerReveal.revealed .WaveCardReveal,
  .StaggerReveal.revealed .WaveImageReveal,
  .StaggerReveal.revealed .reveal-paragraph,
  .StaggerReveal.revealed .reveal-btn,
  .StaggerReveal.revealed .section-subtitle,
  .StaggerReveal.revealed .hero-feature,
  .StaggerReveal.revealed .hero-stats-wrapper,
  .RevealSection.revealed .MaskTextReveal > span,
  .RevealSection.revealed .WaveSectionReveal,
  .RevealSection.revealed .WaveCardReveal,
  .RevealSection.revealed .WaveImageReveal,
  .RevealSection.revealed .reveal-paragraph,
  .RevealSection.revealed .reveal-btn,
  .RevealSection.revealed .section-subtitle,
  .RevealSection.revealed .hero-feature,
  .RevealSection.revealed .hero-stats-wrapper,
  .revealed .MaskTextReveal > span,
  .revealed .WaveSectionReveal,
  .revealed .WaveCardReveal,
  .revealed .WaveImageReveal,
  .revealed .reveal-paragraph,
  .revealed .reveal-btn,
  .revealed .reveal-stagger-item,
  .revealed .reveal-card,
  .revealed .reveal-image {
    opacity: 1 !important;
  }
}

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

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



