:root {
  --orange: #F4622A;
  --orange-dark: #D94E1A;
  --orange-light: #f8fafc;
  --orange-mid: #FFD9CC;
  --navy: #0F2545;
  --navy-mid: #1E3A5F;
  --body-bg: #F5F6F8;
  --card-bg: #FFFFFF;
  --grey-light: #F0F2F5;
  --grey-mid: #E2E6EC;
  --grey-border: #DDE1E9;
  --text-dark: #0F2545;
  --text-body: #4A5568;
  --text-muted: #8A94A6;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --shadow-sm: 0 1px 3px rgba(15,37,69,0.06), 0 1px 2px rgba(15,37,69,0.04);
  --shadow-md: 0 4px 16px rgba(15,37,69,0.08), 0 2px 6px rgba(15,37,69,0.04);
  --shadow-lg: 0 12px 40px rgba(15,37,69,0.12), 0 4px 12px rgba(15,37,69,0.06);
  --shadow-orange: 0 8px 32px rgba(244,98,42,0.28);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--body-bg); color: var(--text-body); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-dark); font-weight: 800; }

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.navbar-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.55rem; font-weight: 800; text-decoration: none; }
.brand-rank { color: var(--navy); }
.brand-my { color: var(--orange); }
.brand-gmb { color: var(--navy-mid); }
.nav-link { color: var(--text-body) !important; font-weight: 600; font-size: 0.88rem; padding: 6px 14px !important; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover { color: var(--orange) !important; background: var(--orange-light); }
.btn-nav-outline { border: 2px solid var(--grey-border); border-radius: 10px; padding: 8px 20px !important; font-weight: 700; color: var(--text-dark) !important; transition: all 0.2s; }
.btn-nav-outline:hover { border-color: var(--orange); color: var(--orange) !important; background: var(--orange-light) !important; }
.btn-nav-cta { background: var(--orange); color: #fff !important; border-radius: 10px; padding: 9px 22px !important; font-weight: 700; font-size: 0.88rem; transition: all 0.3s; box-shadow: 0 4px 16px rgba(244,98,42,0.3); }
.btn-nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }

/* ========== HERO ========== */
.hero {
  background: #fff;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-bg-shape {
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,98,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.logo-img {
        width: 176px;
    height: 55px;
}
.hero-bg-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(15,37,69,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.5s ease;
}
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.75); } }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.13;
  margin-bottom: 22px;
  color: var(--navy);
  animation: fadeSlideUp 0.6s ease 0.1s both;
}
.hero h1 .hl { color: var(--orange); position: relative; }
.hero h1 .hl::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: var(--orange-mid); border-radius: 2px; z-index: -1; }
.hero-sub {
  font-size: 1.05rem; color: var(--text-body); line-height: 1.75; max-width: 540px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 12px;
  padding: 15px 32px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(244,98,42,0.38); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  border: 2px solid var(--grey-border); border-radius: 12px;
  padding: 13px 28px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 24px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item i { color: var(--green); }

/* HERO MOCKUP */
.hero-mockup-wrap {
  position: relative;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}
.hero-mockup {
  background: #fff;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatY 3.5s ease-in-out infinite alternate;
}
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.mockup-topbar {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-border);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-url { background: #fff; border: 1px solid var(--grey-border); border-radius: 6px; padding: 3px 12px; font-size: 0.72rem; color: var(--text-muted); margin-left: 8px; }
.score-circle-wrap { position: relative; width: 110px; height: 110px; margin: 0 auto 10px; }
.score-circle-wrap svg { transform: rotate(-90deg); }
.score-circle-wrap .sc-bg { fill: none; stroke: var(--grey-light); stroke-width: 10; }
.score-circle-wrap .sc-fg { fill: none; stroke: var(--orange); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 314; stroke-dashoffset: 69; }
.score-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--navy); }
.score-label small { font-size: 0.62rem; color: var(--text-muted); font-family: 'Nunito', sans-serif; font-weight: 600; }
.mini-audit-bar { height: 7px; border-radius: 50px; background: var(--grey-light); margin-bottom: 8px; overflow: hidden; }
.mini-audit-bar-fill { height: 100%; border-radius: 50px; }
.fix-alert { background: #FFF5F0; border: 1.5px solid var(--orange-mid); border-radius: 10px; padding: 10px 12px; font-size: 0.74rem; margin-top: 8px; }
.fix-alert strong { color: var(--orange); display: block; margin-bottom: 2px; }

/* HERO BOTTOM STRIP */
.hero-strip {
  background: var(--navy);
  margin-top: 64px;
  padding: 28px 0;
}
.stat-strip-item { text-align: center; }
.stat-strip-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-strip-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 600; }

/* ========== SECTION STYLES ========== */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.75rem; font-weight: 700; color: var(--orange);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 0.97rem; color: var(--text-body); line-height: 1.7; max-width: 540px; }

/* ========== AUDIT TOOL ========== */
.audit-section { padding: 80px 0; background: var(--body-bg); }
.audit-card {
  background: var(--card-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.audit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), #FF9F70); }
.audit-input-row { display: flex; gap: 10px; max-width: 620px; margin: 28px auto 0; flex-wrap: wrap; }
.audit-inp {
  flex: 1; min-width: 180px;
  border: 1.5px solid var(--grey-border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--grey-light);
  outline: none;
  transition: border 0.2s;
}
.audit-inp:focus { border-color: var(--orange); background: #fff; }
.audit-inp::placeholder { color: var(--text-muted); }
.btn-audit { background: var(--orange); color: #fff; border: none; border-radius: 12px; padding: 14px 28px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; white-space: nowrap; transition: all 0.3s; box-shadow: var(--shadow-orange); }
.btn-audit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.audit-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; }

/* ========== FEATURES ========== */
.features-section { padding: 100px 0; background: #fff; }
.feature-card {
  background: var(--card-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--orange);
  margin-bottom: 18px;
}
.feature-card h5 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.feature-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; }

/* ========== HOW IT WORKS ========== */
.how-section { padding: 100px 0; background: var(--body-bg); }
.step-card { background: var(--card-bg); border: 1.5px solid var(--grey-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); height: 100%; transition: all 0.3s; position: relative; }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(244,98,42,0.35);
}
.step-arrow { position: absolute; top: 48px; right: -22px; color: var(--grey-border); font-size: 1.2rem; z-index: 2; display: none; }
@media(min-width:768px) { .step-arrow { display: block; } }

/* ========== PACKAGES ========== */
.packages-section { padding: 100px 0; background: #fff; }
.billing-toggle-wrap { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.toggle-label { font-weight: 700; font-size: 0.9rem; color: var(--text-body); }
.toggle-track { width: 50px; height: 26px; background: var(--orange); border-radius: 50px; position: relative; cursor: pointer; transition: background 0.3s; }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.save-pill { background: var(--green-light); border: 1px solid rgba(22,163,74,0.25); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* PACKAGE CARDS (matching reference) */
.pkg-card {
  background: var(--card-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 4px var(--orange-mid), var(--shadow-lg);
}
.most-popular-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 800;
  padding: 5px 18px; border-radius: 50px;
  white-space: nowrap; box-shadow: var(--shadow-orange);
}
.pkg-icon { font-size: 1.4rem; color: var(--orange); margin-bottom: 12px; }
.pkg-price-tag { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.pkg-price-tag.navy { color: var(--navy); }
.pkg-price-sub { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; }
.pkg-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pkg-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; margin-bottom: 24px; }
.pkg-hr { border: none; border-top: 1px solid var(--grey-border); margin: 20px 0; }
.pkg-feat { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: var(--text-body); }
.pkg-feat i.check { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pkg-feat i.xmark { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }
.btn-pkg-orange {
  display: block; width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.92rem; text-align: center;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
  margin-top: 24px; box-shadow: var(--shadow-orange);
}
.btn-pkg-orange:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); }
.btn-pkg-ghost {
  display: block; width: 100%; padding: 13px;
  background: transparent; color: var(--text-dark);
  border: 1.5px solid var(--grey-border);
  border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.92rem; text-align: center;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
  margin-top: 24px;
}
.btn-pkg-ghost:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.enterprise-row {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-top: 24px;
}
.enterprise-row h4 { color: #fff; margin-bottom: 6px; }
.enterprise-row p { color: rgba(255,255,255,0.65); font-size: 0.87rem; margin: 0; }
.btn-enterprise {
  background: var(--orange); color: #fff; border: none;
  border-radius: 12px; padding: 13px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; white-space: nowrap; transition: all 0.3s;
  text-decoration: none;
}
.btn-enterprise:hover { background: var(--orange-dark); color: #fff; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 100px 0; background: var(--body-bg); }
.testi-card {
  background: var(--card-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: #F59E0B; font-size: 0.88rem; margin-bottom: 14px; }
.testi-text { font-size: 0.88rem; line-height: 1.7; color: var(--text-body); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-biz { font-size: 0.75rem; color: var(--text-muted); }
.result-pill { background: var(--green-light); border: 1px solid rgba(22,163,74,0.2); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-left: auto; white-space: nowrap; }

/* ========== VIDEOS ========== */
.video-section { padding: 100px 0; background: #fff; }
.video-card {
  background: var(--card-bg);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s;
}
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.video-thumb-area {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #F0F2F5, #E2E6EC);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.video-thumb-area .tag-pill { background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; position: absolute; top: 12px; left: 12px; }
.play-btn-v {
  width: 64px; height: 64px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s;
}
.video-card:hover .play-btn-v { transform: scale(1.1); }
.video-label { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-align: center; padding: 0 16px; }
.video-card-footer { padding: 14px 18px; border-top: 1px solid var(--grey-border); font-size: 0.78rem; color: var(--text-muted); }

/* ========== RESULTS NUMBERS ========== */
.results-section { padding: 80px 0; background: var(--navy); }
.result-metric-card { text-align: center; padding: 16px; }
.result-big { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.result-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 600; }

/* ========== CTA SECTION ========== */
.cta-section { padding: 100px 0; background: var(--body-bg); }
.cta-card {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(255,255,255,0.08); pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.cta-card h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--orange); border: none; border-radius: 12px; padding: 15px 36px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800; cursor: pointer; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,0,0,0.18); color: var(--orange-dark); }
.btn-cta-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); border-radius: 12px; padding: 13px 32px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-cta-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ========== GUARANTEE ========== */
.guarantee-section { padding: 60px 0; background: #fff; }
.guarantee-box {
  background: var(--orange-light);
  border: 1.5px solid var(--orange-mid);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; align-items: flex-start; gap: 20px;
}
.guarantee-icon { font-size: 2.8rem; flex-shrink: 0; }

/* ========== FAQ ========== */
.faq-section { padding: 100px 0; background: var(--body-bg); }
.accordion-item {
  background: var(--card-bg) !important;
  border: 1.5px solid var(--grey-border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  background: var(--card-bg) !important;
  color: var(--text-dark) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.93rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--orange) !important; }
.accordion-button::after { filter: none !important; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F4622A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important; }
.accordion-button.collapsed::after { filter: none !important; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A5568'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important; }
.accordion-body { color: var(--text-body); font-size: 0.87rem; line-height: 1.7; }

/* ========== TRUST LOGOS ========== */
.trust-section { padding: 56px 0; background: var(--grey-light); border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); }
.trust-logo-item { text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--text-muted); opacity: 0.55; transition: opacity 0.2s; }
.trust-logo-item:hover { opacity: 0.9; color: var(--text-dark); }

/* ========== FOOTER ========== */
footer { background: var(--navy); padding: 64px 0 28px; }
.footer-brand { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand .r { color: #fff; } .footer-brand .m { color: var(--orange); } .footer-brand .g { color: rgba(255,255,255,0.6); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 250px; }
.footer-title { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ========== STICKY BOTTOM CTA ========== */
.sticky-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 3px solid var(--orange); padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; z-index: 998; transform: translateY(100%); transition: transform 0.3s; }
.sticky-cta-bar.show { transform: translateY(0); }
.sticky-cta-text h6 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; margin: 0 0 2px; }
.sticky-cta-text p { color: rgba(255,255,255,0.55); font-size: 0.75rem; margin: 0; }

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