/* ═══════════════════════════════════════════════════
   RELIEF MOTION — Design System
   ═══════════════════════════════════════════════════ */

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

/* ─── CSS Custom Properties ─── */
:root {
  --teal-900: #062f40;
  --teal-800: #0b4f6c;
  --teal-700: #0d6285;
  --teal-600: #1077a0;
  --teal-500: #1491c2;
  --teal-100: #e0f4fc;
  --teal-50: #f0fafd;

  --gold: #f5a623;
  --gold-dark: #d48c1a;
  --gold-light: rgba(245, 166, 35, 0.15);

  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f1f5f9;
  --gray-100: #e2e8f0;
  --gray-300: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md:
    0 4px 16px rgba(11, 79, 108, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 40px rgba(11, 79, 108, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(11, 79, 108, 0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
  --section-padding: 100px 24px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* ─── Utility classes ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal {
  color: var(--teal-800);
}

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

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

.badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 10px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8951a 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.55);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-800);
  border: 2px solid var(--teal-100);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--teal-50);
  border-color: var(--teal-600);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal-800);
  color: var(--teal-800);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--teal-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 4px 0;
}

.nav-logo img {
  height: 90px !important;
  width: auto;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav.scrolled .nav-logo img {
  height: 70px !important;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-800);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ffffff;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .nav-links a:hover {
  background: var(--teal-50);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav.scrolled .nav-links a.active {
  background: var(--teal-50);
  color: var(--teal-800);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #e8951a);
  color: var(--white) !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  margin-left: 10px;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.55) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav-hamburger span {
  background: var(--teal-800);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 16px 24px calc(24px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--teal-50);
  color: var(--teal-800);
}

.nav-mobile .mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold), #e8951a);
  color: white !important;
  text-align: center;
}

/* ─── Hero (shared base) ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--teal-900) 0%,
    var(--teal-800) 50%,
    var(--teal-700) 100%
  );
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 80% 50%,
    rgba(245, 166, 35, 0.12) 0%,
    transparent 70%
  );
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Section base ─── */
.section {
  padding: var(--section-padding);
}

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

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  font-size: 1.05rem;
}

.section-header.center p {
  margin: 0 auto;
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

/* ─── Icon Box ─── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.icon-box-teal {
  background: var(--teal-50);
  color: var(--teal-700);
}

.icon-box-gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 24px;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal-700);
}

/* ─── Stars ─── */
.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* ─── Testimonial cards ─── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 79, 108, 0.08);
  border-color: var(--teal-100);
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--teal-100);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── Stats Row ─── */
.stats-row {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.15),
    transparent 70%
  );
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  max-width: 500px;
  margin-inline: auto;
  font-size: 1.1rem;
}

.cta-urgency {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 36px;
  display: block;
}

.cta-trust {
  display: block;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* WhatsApp Pulse Effect */
@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.cta-section .btn-whatsapp {
  animation: cta-pulse 2s infinite;
}

.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
.footer {
  background: #081b21;
  /* Slightly richer dark theme */
  padding: 100px 24px 48px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  /* Larger footer logo */
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col {
  position: relative;
}

@media (min-width: 1025px) {
  .footer-col:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.08),
      transparent
    );
  }
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ─── Scroll Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-overlay-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

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

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal-600));
  border-radius: 4px;
  margin: 16px 0 24px;
}

.divider.center {
  margin-inline: auto;
}

/* ─── Areas Section Container ─── */
.areas-container {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.areas-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.03;
  pointer-events: none;
}

.areas-visual svg {
  width: 300px;
  height: 300px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.area-chip {
  background: var(--teal-50);
  color: var(--teal-800);
  border: 1px solid var(--teal-100);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.area-chip:hover {
  background: var(--teal-800);
  color: white;
  border-color: var(--teal-800);
  transform: translateY(-2px);
}

.area-chip svg {
  width: 14px;
  height: 14px;
}

/* ─── Accordion (FAQ) ─── */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--gray-900);
  gap: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-700);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
}

/* ─── Step cards ─── */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11, 79, 108, 0.3);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .nav-links {
    display: none;
  }

  .nav-logo img {
    height: 65px !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .stats-row {
    gap: 28px;
  }

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

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn-group {
    flex-direction: column;
    align-items: center;
  }

  .trust-bar-inner {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .page-hero {
    padding: 120px 20px 60px;
  }
}

/* ─── Floating WhatsApp Button ─── */
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--whatsapp-green, #25d366);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: pulse-btn 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 900px) {
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}
