/* ============================================================
   G360 CLAW — main.css
   ============================================================ */

/* CSS RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { margin: 0 !important; padding: 0 !important; background: #FFFFFF; font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; color: #0F172A; overflow-x: hidden; }
.entry-content, .wp-block-post-content, .wp-block-group { padding: 0 !important; max-width: 100% !important; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; }

/* ============================================================
   SITE WRAPPER
   ============================================================ */
.site-wrapper { background: #FFFFFF; color: #0F172A; overflow-x: hidden; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav-outer {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 18px 24px;
  pointer-events: none;
}
.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 9px 12px 9px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 6px 20px rgba(0,15,40,0.08);
  transition: box-shadow 220ms ease;
  width: 100%;
  max-width: 1080px;
}
.navbar.scrolled {
  box-shadow: 0 12px 34px rgba(0,15,40,0.14);
}
.nav-logo { display: flex; align-items: center; padding-right: 4px; }
.logo-img { height: 27px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; flex: 1; }
.nav-link { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 500; color: #475569; transition: color 160ms; }
.nav-link:hover { color: #0077CC; }
.nav-cta { margin-left: auto; flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0F172A;
  border-radius: 2px;
  transition: transform 240ms, opacity 200ms;
}
.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); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  min-height: 44px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0077CC 0%, #0EA5E9 100%);
  box-shadow: 0 4px 16px rgba(0,119,204,0.30);
  border: none;
  transition: box-shadow 200ms, opacity 200ms;
  white-space: nowrap;
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0,119,204,0.40); opacity: 0.92; color: #fff; }
.btn-primary.btn-lg { min-height: 54px; padding: 0 30px; font-size: 15px; }
.btn-primary.btn-block { display: flex; width: 100%; margin-top: 4px; min-height: 48px; font-size: 13px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #004A80;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,15,40,0.06);
  transition: box-shadow 200ms, border-color 200ms;
}
.btn-outline:hover { box-shadow: 0 8px 24px rgba(0,15,40,0.12); border-color: #CBD5E1; color: #004A80; }
.btn-outline.btn-lg { min-height: 54px; }

.btn-outline-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #0077CC;
  background: transparent;
  border: 1.5px solid #0077CC;
  transition: background 200ms;
}
.btn-outline-blue:hover { background: rgba(0,119,204,0.06); color: #0077CC; }
.btn-outline-blue.btn-block { display: flex; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.06);
  transition: background 200ms, border-color 200ms;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost.btn-lg { min-height: 52px; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.section-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}
.section-dot-light { background: linear-gradient(135deg,#0EA5E9,#7DD3FC); }
.section-label-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #004A80;
  border: 1px dashed #94A3B8;
  padding: 6px 14px;
  border-radius: 999px;
}
.section-label-pill-light { color: #fff; border-color: rgba(255,255,255,0.4); }
.section-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #004A80;
  text-align: center;
  text-wrap: balance;
  margin: 0;
}
.section-subtext {
  margin: 16px auto 0;
  max-width: 640px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
  text-align: center;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }

/* ============================================================
   CARDS — shared
   ============================================================ */
.card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card-raised {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0,15,40,0.08);
  padding: 32px;
}
.card-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-heading {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: #004A80;
}
.card-body {
  margin: 12px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ============================================================
   GRID
   ============================================================ */
.cards-grid { display: grid; gap: 24px; max-width: 1100px; margin: 0 auto; }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); max-width: 820px; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background:
    radial-gradient(rgba(15,23,42,0.05) 1px, transparent 1.5px) 0 0 / 22px 22px,
    linear-gradient(180deg, #FFFFFF 0%, #F1F8FE 46%, #D7EBFB 100%);
  padding: 60px 24px 100px;
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 2px 10px rgba(0,15,40,0.06);
}
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 999px;
}
.hero-badge-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #475569;
}
.hero-heading {
  margin: 24px 0 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #0F172A;
  text-wrap: balance;
}
.hero-heading-accent { color: #0077CC; }
.hero-subtext {
  margin: 22px auto 0;
  max-width: 620px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  margin-top: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #475569;
}
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-sep { color: #CBD5E1; }
.star { color: #F5A623; }

/* Hero preview */
.hero-preview-wrap {
  position: relative;
  max-width: 940px;
  margin: 52px auto 0;
  z-index: 1;
}
.hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 9px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0,15,40,0.14);
  border: 1px solid rgba(15,23,42,0.05);
}
.hero-float-left { left: -4px; top: 34px; }
.hero-float-right { right: -4px; top: 96px; }
.hero-float-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.hero-float-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #004A80;
  white-space: nowrap;
}
.hero-preview-card {
  background: #FFFFFF;
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,40,80,0.20);
}
.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section-problem {
  background: #F8FAFC;
  padding: 88px 24px;
  text-align: center;
}
.section-problem .section-label-wrap { margin-bottom: 18px; }
.section-problem .section-heading { margin: 0 auto 0; max-width: 680px; }
.section-problem .section-subtext { margin: 16px auto 52px; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.section-pricing {
  background: #FFFFFF;
  padding: 88px 24px;
  text-align: center;
}
.section-pricing .section-heading { margin-bottom: 0; }
.section-pricing .section-subtext { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card-featured {
  border-radius: 22px;
  background: linear-gradient(180deg, #0077CC 0%, #0A5FA8 100%);
  padding: 6px;
  box-shadow: 0 24px 56px rgba(0,119,204,0.26);
}
.pricing-card-badge {
  text-align: center;
  padding: 9px 0 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
}
.pricing-card-inner {
  background: #FFFFFF;
  border-radius: 17px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.pricing-card-plain {
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  background: #F8FAFC;
  padding: 38px 32px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}
.pricing-title {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: #004A80;
}
.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 0;
}
.pricing-amount {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.pricing-amount-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #475569;
}
.pricing-desc {
  margin: 16px 0 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
.pricing-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 26px 0 18px;
}
.pricing-divider::before, .pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E2E8F0;
}
.pricing-divider-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #94A3B8;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0F172A;
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0077CC;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.section-why {
  background: #F8FAFC;
  padding: 88px 24px;
  text-align: center;
}
.section-why .section-heading { color: #0F172A; }
.section-why .section-label-wrap { margin-bottom: 20px; }
.section-why .section-subtext { margin-bottom: 56px; }
.card-why { padding: 18px; }
.card-why-preview {
  height: 168px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #EAF2FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background:
    linear-gradient(#DCEAFB 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, #DCEAFB 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, #EFF6FE, #F7FBFF);
}
.card-why-number {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 27px;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,119,204,0.30);
}
.card-heading-why {
  margin: 0;
  padding: 0 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  color: #004A80;
}
.card-body-why {
  margin: 10px 0 6px;
  padding: 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background: #FFFFFF;
  padding: 88px 24px;
  text-align: center;
}
.section-testimonials .section-subtext { margin-bottom: 52px; }
.card-testimonial { padding: 32px; display: flex; flex-direction: column; }
.stars { color: #FACC15; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote {
  margin: 0 0 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #0F172A;
  flex: 1;
  text-align: left;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0077CC,#0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #004A80; }
.testimonial-role { font-family: 'Inter', sans-serif; font-size: 13px; color: #475569; }
.testimonial-plan {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #475569;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.section-faq {
  background: #F8FAFC;
  padding: 88px 24px;
  text-align: center;
}
.section-faq .section-heading { margin-bottom: 48px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  min-height: 44px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #004A80;
}
.faq-icon {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: #0077CC;
  flex-shrink: 0;
  transition: transform 240ms cubic-bezier(0.4,0,0.2,1);
}
.faq-item.faq-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4,0,0.2,1), opacity 220ms ease;
  max-height: 360px;
  opacity: 1;
}
.faq-answer p {
  margin: 0;
  padding: 0 26px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  background:
    radial-gradient(70% 90% at 85% 10%, rgba(14,165,233,0.20), transparent 60%),
    radial-gradient(120% 140% at 18% 0%, #0A5FA8 0%, #004A80 52%, #00263F 100%);
  padding: 88px 24px;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-heading {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-wrap: balance;
}
.cta-subtext {
  margin: 18px auto 0;
  max-width: 560px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
}
.trust-sep-light { opacity: 0.4; }
.star-gold { color: #FACC15; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #00263F;
  padding: 64px 24px 36px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand { max-width: 300px; }
.footer-logo { height: 32px; display: block; margin-bottom: 18px; }
.footer-tagline {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: #FFFFFF;
}
.footer-col-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #7DD3FC;
  margin-bottom: 16px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  transition: color 160ms;
}
.footer-link:hover { color: #fff; }
.footer-text { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,0.72); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 160ms;
}
.footer-bottom-link:hover { color: #fff; }
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-heading { font-size: clamp(30px, 4.5vw, 48px); }
  .section-heading { font-size: clamp(24px, 3vw, 36px); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-radius: 0 0 20px 20px;
    padding: 12px 0 20px;
    box-shadow: 0 12px 34px rgba(0,15,40,0.14);
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 24px; font-size: 16px; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .navbar { position: relative; flex-wrap: wrap; }

  /* Hero */
  .hero-section { padding: 40px 16px 60px; }
  .hero-heading { font-size: clamp(28px, 7vw, 40px); }
  .hero-subtext { font-size: 15px; }
  .hero-float { display: none; }
  .hero-img { height: 220px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { font-size: 12px; }

  /* Grids */
  .cards-grid-3, .cards-grid-2, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }

  /* Sections */
  .section-problem, .section-pricing, .section-why, .section-testimonials, .section-faq, .section-cta { padding: 60px 16px; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-brand { max-width: 100%; }
}
