/* === CSS Custom Properties === */
:root {
  --brand-blue: #0088eb;
  --brand-blue-dark: #006bbf;
  --brand-green: #1db97d;
  --brand-green-dark: #189e6b;

  --blue-50: #f7fbfe;
  --blue-100: #f1f9ff;
  --blue-200: #dbeefc;
  --blue-500: #33a0ef;
  --blue-600: #0088eb;
  --blue-700: #007cd6;

  --green-100: #baefda;
  --green-500: #20cb89;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;

  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 136, 235, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 136, 235, 0.15);
  --shadow-btn: 0 8px 24px rgba(0, 136, 235, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
}

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

/* === Base === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Tajawal", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.nav-logo .logo-img {
  height: 34px;
  width: auto;
  vertical-align: middle;
  margin-inline-start: 10px;
}
.nav-logo .logo-name {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 0 24px;
}
.mobile-menu.open {
  max-height: 320px;
  padding: 12px 24px 20px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child {
  border: none;
}
.mobile-cta {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 10px;
  margin-top: 8px;
}

/* =========================================
   MAIN
   ========================================= */
main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  display: flex;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-text {
  order: 1;
}
.hero-visual {
  order: 2;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--blue-200);
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rotating text */
.rotating-text {
  height: 36px;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.rotate-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.rotate-line.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff !important;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  text-decoration: none;
  margin-bottom: 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 136, 235, 0.35);
}

/* =========================================
   WHY SECTION
   ========================================= */
.why-section {
  margin-top: 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.why-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 136, 235, 0.2);
}
.why-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  border-radius: 16px;
  transition: transform 0.3s;
}
.why-card:hover .why-icon {
  transform: scale(1.12) rotate(-4deg);
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* Hero CTA */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 16px 40px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s;
  box-shadow: var(--shadow-btn);
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 45px rgba(0, 136, 235, 0.5);
}
.btn-hero svg {
  flex-shrink: 0;
}

/* Hero visual */
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-wrap img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
}
.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(0, 136, 235, 0.12) 0%,
    rgba(29, 185, 125, 0.08) 60%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}
.section-header {
  margin-bottom: 36px;
}
.section-badge {
  display: inline-block;
  background: #fff7e6;
  color: #8a5a00;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section h2,
.section-header h2 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--text-primary);
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   INSURANCE TYPES (Cards)
   ========================================= */
.types-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.type-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: right;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 136, 235, 0.2);
}
.type-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  border-radius: 14px;
}
.type-content {
  flex: 1;
}
.type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.type-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.tag {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.tag-green {
  background: linear-gradient(
    135deg,
    var(--brand-green),
    var(--brand-green-dark)
  );
}
.tag-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.type-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.type-link {
  text-decoration: none;
  color: inherit;
}

/* =========================================
   FEATURES GRID
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.feature-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s,
    border-color 0.35s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 136, 235, 0.2);
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  border-radius: 16px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   TIMELINE (Steps)
   ========================================= */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 12px;
  justify-content: center;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  right: calc(100% / 6);
  left: calc(100% / 6);
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  border-radius: 2px;
  z-index: 0;
}
.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 136, 235, 0.3);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}
.timeline-item:hover .timeline-number {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 10px 28px rgba(0, 136, 235, 0.4);
}
.timeline-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-content p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* =========================================
   TRUST GRID
   ========================================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  font-size: 1.6rem;
}

/* =========================================
   FAQ
   ========================================= */
.faq-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::marker {
  display: none;
  content: "";
}
.faq-item summary::after {
  content: "\25BC";
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item summary h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 136, 235, 0.1);
  border-inline-start-width: 3px;
}
.faq-answer {
  padding: 0 22px 18px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--accent), var(--brand-green));
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  font-size: 15px;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 16px 44px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================
   FLOATING CTA (Mobile)
   ========================================= */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: none;
}
.floating-cta.visible {
  transform: translateY(0);
}
.btn-float {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
}

.section-mb-80 {
  margin-bottom: 80px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--text-primary);
  color: var(--text-muted);
  text-align: center;
  padding: 36px 24px;
  margin-top: 0;
  font-size: 14px;
}
.footer-content {
  max-width: 700px;
  margin: 0 auto;
}
.footer-brand {
  color: var(--blue-200);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}
.site-disclaimer {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue-500);
  text-decoration: underline;
}
.footer-separator {
  color: var(--text-muted);
  font-size: 12px;
}
.footer-contact {
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--accent);
}
.site-footer p {
  color: var(--text-muted);
  margin-bottom: 4px;
  font-size: 13px;
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-page {
  padding: 0;
}
.legal-page .content {
  padding: 40px 30px;
}
.legal-page h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.9;
}
.legal-page ul {
  padding-right: 20px;
  margin-bottom: 12px;
}
.legal-page li {
  margin-bottom: 6px;
}
.legal-page a {
  color: var(--accent);
}
.legal-page a:hover {
  text-decoration: underline;
}
.legal-back {
  margin-top: 36px;
  text-align: center;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }

  .hero {
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-text {
    order: 1;
  }
  .hero-visual {
    order: 2;
  }
  .hero-image-wrap img {
    max-width: 280px;
  }
  .hero-blob {
    width: 240px;
    height: 240px;
  }

  h1 {
    font-size: 1.8rem;
  }
  .rotating-text {
    text-align: center;
  }
  .btn-hero {
    justify-content: center;
    width: 100%;
  }

  .section {
    margin: 30px auto;
  }
  .section h2,
  .section-header h2 {
    font-size: 1.45rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline {
    flex-direction: column;
    gap: 24px;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 17px;
    left: auto;
    width: 3px;
    height: auto;
  }
  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: right;
  }
  .timeline-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    margin: 0;
    flex-shrink: 0;
  }
  .timeline-content h3 {
    font-size: 0.9rem;
  }
  .timeline-content p {
    max-width: none;
    margin: 0;
    font-size: 12.5px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .type-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .type-icon {
    margin-bottom: 4px;
  }

  .cta-section {
    padding: 36px 24px;
    border-radius: var(--radius);
  }
  .btn-white {
    width: 100%;
    padding: 14px 24px;
  }

  .floating-cta {
    display: block;
  }

  .faq-item summary {
    padding: 14px 16px;
  }
  .faq-item summary h3 {
    font-size: 0.88rem;
  }
  .faq-answer {
    padding: 0 16px 14px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 1.5rem;
  }
  .hero-badge {
    font-size: 12px;
  }
  .btn-hero {
    padding: 14px 24px;
    font-size: 15px;
  }
}
