/* ================================================================
   Hiiclub Agency — style.css
   Theme: Pink (ref: hiiclubagency.com)
   Font: Nunito — Mobile-first. Production-ready.
================================================================ */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --primary: #FF2D55;
  --primary-dark: #E0184A;
  --grad-a: #FF6B9E;
  --grad-b: #FF2D55;
  --gradient: linear-gradient(135deg, #FF6B9E, #FF2D55);
  --bg: #FFFFFF;
  --bg-light: #FFF0F5;
  --bg-pink: #FFF5F8;
  --text: #111111;
  --text-p: #444444;
  --text-muted: #888888;
  --border: #FFD6E4;
  --wa: #25D366;
  --wa-dark: #1ea855;
  --r-card: 20px;
  --r-btn: 50px;
  --shadow: 0 4px 24px rgba(255, 45, 85, .08);
  --shadow-md: 0 8px 36px rgba(255, 45, 85, .14);
  --shadow-lg: 0 16px 56px rgba(255, 45, 85, .20);
  --trans: all .3s ease;
  --header-h: 68px;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.2; letter-spacing: -.3px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; line-height: 1.3; color: var(--text); margin-bottom: 14px; }
h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 700; color: var(--text); margin-bottom: 8px; }
p  { color: var(--text-p); font-size: .97rem; line-height: 1.75; }

/* ---- Section ---- */
section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header p { margin-top: 14px; font-size: 1.02rem; }
.section-tag {
  display: inline-block;
  background: rgba(255, 45, 85, .1);
  color: var(--primary);
  font-size: .78rem; font-weight: 800; padding: 5px 16px;
  border-radius: 50px; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--r-btn);
  font-size: .97rem; font-weight: 700; transition: var(--trans);
  border: 2px solid transparent; white-space: nowrap; font-family: var(--font);
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 85, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255, 45, 85, .48); }
.btn-secondary {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--gradient); color: #fff;
  border-color: transparent; box-shadow: 0 4px 20px rgba(255, 45, 85, .32);
  transform: translateY(-2px);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Card ---- */
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 32px 26px; transition: var(--trans); box-shadow: var(--shadow);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255, 45, 85, .22); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.card-glass {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 45, 85, .12); border-radius: var(--r-card);
  padding: 32px 26px; box-shadow: var(--shadow); transition: var(--trans);
}
.card-glass:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900; height: var(--header-h);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(255, 45, 85, .1); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo img { height: 42px; width: auto; }

.nav-menu ul { display: flex; align-items: center; gap: 4px; }
.nav-menu ul li a {
  color: var(--text); font-size: .93rem; font-weight: 600;
  padding: 8px 13px; border-radius: 8px; transition: var(--trans); display: block;
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active { color: var(--primary); background: rgba(255, 45, 85, .07); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 7px; border-radius: 8px; transition: var(--trans); z-index: 910; }
.hamburger:hover { background: var(--bg-light); }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   BREADCRUMB
================================================================ */
.breadcrumb-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 11px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .83rem; font-weight: 600; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-muted); }

/* ================================================================
   HERO
================================================================ */
.hero {
  padding: 76px 0 56px; text-align: center;
  background: linear-gradient(160deg, #fff 0%, var(--bg-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255, 45, 85, .07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 107, 158, .06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 740px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 22px;
}
.hero-sub { font-size: 1.07rem; color: var(--text-p); max-width: 620px; margin: 0 auto; line-height: 1.78; }
.hero .btn-group { justify-content: center; margin-top: 34px; }
.hero-img-wrap {
  margin: 52px auto 0; max-width: 880px; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 72px rgba(255, 45, 85, .15); position: relative; z-index: 1;
}
.hero-img-wrap img { width: 100%; height: auto; }

/* Inner-page hero */
.inner-hero {
  padding: 58px 0 52px; text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.inner-hero h1 {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 18px;
}
.inner-hero p { max-width: 580px; margin: 0 auto 28px; font-size: 1.03rem; }

/* ================================================================
   STEPS / PROCESS
================================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; counter-reset: steps; }
.step-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 32px 22px; text-align: center; transition: var(--trans); box-shadow: var(--shadow);
  counter-increment: steps; position: relative; overflow: hidden;
}
.step-card::before {
  content: counter(steps); position: absolute; top: 12px; right: 18px;
  font-size: 3.4rem; font-weight: 900; color: rgba(255, 45, 85, .07); line-height: 1;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255, 45, 85, .25); }
.step-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--gradient); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .95rem; margin: 0 auto 14px;
}

/* ================================================================
   TRUST
================================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
.trust-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 28px 22px; text-align: center; transition: var(--trans); box-shadow: var(--shadow);
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.trust-icon {
  width: 52px; height: 52px; background: rgba(255, 45, 85, .1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 14px;
}

/* ================================================================
   FAQ
================================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-card); margin-bottom: 10px;
  background: var(--bg); overflow: hidden; transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(255, 45, 85, .3); }
.faq-q {
  width: 100%; text-align: left; padding: 19px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 14px; font-size: .97rem; font-weight: 700; color: var(--text);
  background: none; font-family: var(--font); cursor: pointer; transition: color .25s;
}
.faq-q:hover, .faq-q.active { color: var(--primary); }
.faq-ico {
  flex-shrink: 0; width: 28px; height: 28px; background: rgba(255, 45, 85, .1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--primary); transition: var(--trans);
}
.faq-q.active .faq-ico { background: var(--gradient); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a.open { max-height: 500px; }
.faq-a p { padding: 0 22px 18px; font-size: .94rem; }

/* ================================================================
   BLOG
================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  overflow: hidden; transition: var(--trans); box-shadow: var(--shadow);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255, 45, 85, .22); }
.blog-thumb {
  background: var(--gradient); padding: 28px 24px; position: relative;
  min-height: 110px; display: flex; align-items: flex-end; overflow: hidden;
}
.blog-thumb::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 90px; height: 90px; background: rgba(255,255,255,.12); border-radius: 50%; }
.blog-num { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,.2); position: absolute; right: 20px; top: 50%; transform: translateY(-50%); line-height: 1; }
.blog-thumb h3 { color: #fff; font-size: 1.05rem; font-weight: 800; margin: 0; position: relative; z-index: 1; line-height: 1.4; }
.blog-body { padding: 22px 22px 24px; }
.blog-body p { font-size: .92rem; margin-bottom: 14px; }
.blog-tag { display: inline-block; background: rgba(255, 45, 85, .1); color: var(--primary); font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }

/* ================================================================
   BENEFITS LIST
================================================================ */
.benefits-list { padding: 0; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 13px 0;
  border-bottom: 1px solid var(--border); color: var(--text-p); font-size: .95rem; line-height: 1.65;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; background: var(--gradient); color: #fff;
  border-radius: 50%; font-size: .72rem; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}

/* ================================================================
   FINAL CTA
================================================================ */
.cta-section { background: var(--gradient); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: rgba(255,255,255,.06); transform: rotate(15deg); pointer-events: none; }
.cta-section h2 { color: #fff; }
.cta-section > .container > p { color: rgba(255,255,255,.88); max-width: 540px; margin: 0 auto; }
.cta-section .btn-group { justify-content: center; margin-top: 34px; }
.cta-section .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.14); }
.cta-section .btn-primary:hover { background: var(--bg-light); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.cta-section .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ================================================================
   SUPPORT ITEMS
================================================================ */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.support-item {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  transition: var(--trans); box-shadow: var(--shadow);
}
.support-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(255, 45, 85, .22); }
.sup-icon { font-size: 1.8rem; flex-shrink: 0; }

/* ================================================================
   COMMISSION BOX
================================================================ */
.comm-box { background: var(--gradient); border-radius: var(--r-card); padding: 42px 36px; color: #fff; text-align: center; }
.comm-box h3 { color: #fff; font-size: 1.45rem; margin-bottom: 12px; }
.comm-box p { color: rgba(255,255,255,.88); max-width: 540px; margin: 0 auto; }

/* ================================================================
   ABOUT
================================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { background: var(--gradient); border-radius: var(--r-card); padding: 30px 26px; }
.mv-card h3 { color: #fff; margin-bottom: 10px; }
.mv-card p { color: rgba(255,255,255,.88); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 16px; }

/* ================================================================
   CONTACT
================================================================ */
.contact-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card); padding: 36px; box-shadow: var(--shadow); }
.cinfo-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cinfo-item:last-child { border-bottom: none; }
.cinfo-ico { width: 46px; height: 46px; background: rgba(255, 45, 85, .1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.cinfo-label { font-size: .82rem; color: var(--text-muted); margin-bottom: 3px; font-weight: 600; }
.cinfo-val { font-size: 1rem; font-weight: 700; color: var(--text); }
.wa-text-number { font-size: 1.2rem; font-weight: 800; color: var(--wa); letter-spacing: .5px; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #1a0a10; color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .f-logo { height: 38px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .88rem; font-weight: 600; transition: var(--trans); }
.footer-col ul li a:hover { color: #FF6B9E; padding-left: 3px; }
.footer-bottom { padding: 26px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .84rem; font-weight: 600; }
.footer-bottom .disclaimer { font-size: .78rem; color: rgba(255,255,255,.3); max-width: 580px; margin: 7px auto 0; }

/* ================================================================
   WHATSAPP FLOATING BUTTON
================================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px;
  background: var(--wa); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 22px rgba(37,211,102,.45); transition: var(--trans);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.09); box-shadow: 0 6px 32px rgba(37,211,102,.6); animation: none; }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ================================================================
   POPUP
================================================================ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(26, 10, 16, .45); z-index: 990;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }

.wa-popup {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.92);
  z-index: 995; background: rgba(255,255,255,.95);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 45, 85, .14); border-radius: 24px;
  box-shadow: 0 24px 80px rgba(255, 45, 85, .18), 0 8px 24px rgba(0,0,0,.1);
  padding: 40px 34px 32px; max-width: 400px; width: calc(100% - 36px);
  text-align: center; opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s ease;
}
.wa-popup.show { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }

.popup-close {
  position: absolute; top: 13px; right: 16px; font-size: 1.45rem; line-height: 1;
  color: var(--text-muted); cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: var(--trans);
}
.popup-close:hover { color: var(--text); background: var(--bg-light); }
.pop-icon {
  width: 62px; height: 62px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 4px 18px rgba(37,211,102,.32);
}
.pop-icon svg { width: 34px; height: 34px; fill: #fff; }
.wa-popup h3 { font-size: 1.22rem; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.wa-popup p { font-size: .9rem; color: var(--text-p); line-height: 1.68; margin-bottom: 26px; }
.pop-btn-join {
  display: block; width: 100%; padding: 14px 24px; background: var(--wa); color: #fff;
  border-radius: var(--r-btn); font-size: .97rem; font-weight: 700; text-align: center;
  margin-bottom: 10px; transition: var(--trans); border: none; cursor: pointer; font-family: var(--font);
}
.pop-btn-join:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,211,102,.4); }
.pop-btn-later {
  display: block; width: 100%; padding: 12px 24px; background: transparent; color: var(--text-muted);
  border-radius: var(--r-btn); font-size: .88rem; font-weight: 600; border: 1px solid var(--border);
  transition: var(--trans); cursor: pointer; font-family: var(--font);
}
.pop-btn-later:hover { background: var(--bg-light); color: var(--text); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }
  section { padding: 54px 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(255,255,255,.99);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border); padding: 16px 20px 20px;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .34s ease, opacity .34s ease; z-index: 800;
    box-shadow: 0 8px 24px rgba(255, 45, 85, .08);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu ul { flex-direction: column; gap: 2px; }
  .nav-menu ul li a { padding: 12px 14px; font-size: .97rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 54px 0 40px; }
  .hero-img-wrap { margin-top: 36px; border-radius: 16px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; width: 100%; }
  .cta-section .btn-group { align-items: center; }
  .cta-section .btn { width: auto; min-width: 200px; }
  .comm-box { padding: 28px 22px; }
  .wa-popup { padding: 32px 22px 28px; }
  .inner-hero { padding: 44px 0 38px; }
}

@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
}
