/* =========================================================
   ROOT VARIABLES & RESET
   ========================================================= */
:root {
  --primary: #126328;
  --primary-dark: #0a431a;
  --primary-light: #1c8a3a;
  --primary-tint: #e7f2ea;
  --black: #0d0f0e;
  --white: #ffffff;
  --gray-bg: #f8f8f8;
  --gray-text: #5b6661;
  --border-color: #e6eae7;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 10px rgba(13, 15, 14, 0.06);
  --shadow-md: 0 8px 30px rgba(13, 15, 14, 0.08);
  --shadow-lg: 0 16px 50px rgba(13, 15, 14, 0.12);

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

  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.65;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.15rem; }

p { color: var(--gray-text); }

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

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-light {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Ripple effect */
.ripple {
  -webkit-tap-highlight-color: transparent;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo img {
  height: 65px;
  width: auto;
}

/* =========================================================
   FADE UP ANIMATION
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-tint) 0%, var(--white) 65%);
}

#thank-you{
  min-height: 90vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--black);
  font-size: clamp(48px, 5.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-lead {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero media column */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-placeholder,
.section-image-placeholder,
.illustration-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-tint) 0%, #ffffff 100%);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--primary);
  text-align: center;
}

.hero-image-placeholder i,
.section-image-placeholder i,
.illustration-placeholder i {
  font-size: 3.5rem;
}

.hero-image-placeholder span,
.section-image-placeholder span,
.illustration-placeholder span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-text);
}

.section-image-placeholder {
  box-shadow: var(--shadow-md);
}

.section-media-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.illustration-placeholder--light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.illustration-placeholder--light span {
  color: rgba(255, 255, 255, 0.85);
}

/* Lead form card */
.lead-form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
}

.lead-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.lead-form-card--final {
  max-width: none;
  margin: 0;
}

.lead-form .form-group {
  margin-bottom: 18px;
}

.lead-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--gray-bg);
  transition: var(--transition);
  color: var(--black);
}

.lead-form textarea {
  resize: vertical;
  min-height: 80px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

.error-message {
  display: none;
  color: #d23b3b;
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #d23b3b;
}

.form-group.error .error-message {
  display: block;
}

.lead-form .btn {
  margin-top: 4px;
}

.form-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.visible {
  display: block;
}

/* Trust badges */
.trust-badges {
  margin: 24px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.trust-badge {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 18px 24px;
  transition: var(--transition);
}

.trust-badge:first-child {
  border-radius: 14px 0 0 14px;
}

.trust-badge:last-child {
  border-radius: 0 14px 14px 0;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.trust-badge:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background-color: #e5e5e5;
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.9rem;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

/* =========================================================
   GENERIC SECTION STYLES
   ========================================================= */
.section {
  padding: 70px 0;
}

.section--gray {
  background-color: var(--gray-bg);
}

.section--green {
  background-color: var(--primary);
  color: var(--white);
}

.section--green h2,
.section--green h3,
.section--green p {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

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

.section-header p {
  font-size: 1.05rem;
}

/* =========================================================
   CARD GRIDS
   ========================================================= */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Icon cards (Why Choose Us / Benefits) */
.icon-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.icon-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.icon-card:hover .icon-card-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.icon-card h3 {
  font-size: 1.05rem;
}

/* Content cards (Conditions) */
.content-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.content-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.content-card h3 {
  margin-bottom: 10px;
}

.content-card p {
  font-size: 0.95rem;
}

/* =========================================================
   CHECKLIST GRID (Procedures)
   ========================================================= */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.checklist-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
}

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

.checklist-card i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* =========================================================
   SPLIT LAYOUT (Safety / Doctor / Recovery)
   ========================================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.split-content h2 {
  margin-bottom: 18px;
}

.split-content p {
  margin-bottom: 16px;
}

.section--green .split-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Check list (Recovery) */
.check-list {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--black);
}

.check-list i {
  color: var(--primary);
  background-color: var(--primary-tint);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.lead-text {
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
}

/* =========================================================
   TESTIMONIAL & VIDEO SLIDERS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.testimonial-slider,
.video-slider {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.testimonial-slider {
  border: 1px solid var(--border-color);
  padding-bottom: 56px;
}

.testimonial-track {
  position: relative;
  height: 100%;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-slide p {
  font-size: 1.15rem;
  color: var(--black);
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-slide cite {
  font-weight: 700;
  color: var(--primary);
  font-style: normal;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.25);
}

.video-track {
  position: relative;
  height: 100%;
}

.video-slide {
  display: none;
}

.video-slide.active {
  display: block;
  height: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-nav {
  position: absolute;
  top: calc(50% - 28px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 2;
}

.video-nav:hover {
  background-color: var(--primary);
  color: var(--white);
}

.video-nav--prev {
  left: 16px;
}

.video-nav--next {
  right: 16px;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  padding: 22px 26px;
  cursor: pointer;
  transition: var(--transition);
}

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

.accordion-header i {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-panel p {
  padding: 0 26px 22px;
  font-size: 0.98rem;
}

/* =========================================================
   FINAL CTA SECTION
   ========================================================= */
.section--final-cta .section-header {
  margin-bottom: 32px;
}

.final-cta-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
}

.final-cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.final-cta-info-item:not(.final-cta-info-item--static):hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.final-cta-info-item i {
  font-size: 1.1rem;
}

.lead-form-card--final h3 {
  color: var(--black);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-cta-call {
  background-color: var(--primary);
  color: var(--white);
}

.sticky-cta-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  transition: var(--transition);
  animation: whatsapp-pulse 2.5s infinite;
}

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

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-lg); }
}

#thank-you h1{
  font-size: 36px;
  line-height: 44px;
}

#thank-you h2{
      font-size: 24px;
    line-height: 32px;
    margin: 16px 0;
}

/* =========================================================
   RESPONSIVE - TABLET (<=1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

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

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

  .split-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-media {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 40px;
  }

  .testimonial-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    min-height: 320px;
  }

  .section-media-image {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .video-wrapper {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* =========================================================
   RESPONSIVE - MOBILE (<=768px)
   ========================================================= */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* space for sticky mobile CTA */
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 36px 0 32px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .lead-form-card {
    padding: 24px;
  }

  .card-grid--4,
  .card-grid--3,
  .checklist-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-subtitle {
    font-size: clamp(30px, 8vw, 34px);
  }

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .trust-badge {
    justify-content: center;
  }

  .trust-badge:first-child,
  .trust-badge:last-child {
    border-radius: 14px;
  }

  .trust-badge::after {
    display: none;
  }

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

  .testimonial-slide {
    padding: 32px 24px;
  }

  .map-embed {
    min-height: 320px;
  }

  .final-cta-info {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-info-item {
    justify-content: center;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .floating-whatsapp {
    display: none;
  }

  .header-call span {
    display: inline;
  }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE (<=480px)
   ========================================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .logo img {
    height: 36px;
  }

  .btn-lg {
    padding: 14px 26px;
    font-size: 1rem;
  }

  .icon-card,
  .content-card {
    padding: 26px 20px;
  }

  .accordion-header {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .accordion-panel p {
    padding: 0 20px 18px;
  }

  .testimonial-slide {
    padding: 26px 18px;
  }

  .video-nav {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .checklist-card {
    padding: 16px 18px;
  }
}


