/* ============================================
   SMM SOLVER — Mobile First CSS v4
   ============================================ */
:root {
  --green-dark: #0f4c2a; --green-mid: #1a7a3f; --green-light: #2da85a;
  --green-pale: #e8f9ed; --green-pale2: #f0fdf4;
  --gold: #d4a017; --gold-light: #f0c040; --gold-pale: #fef9ec;
  --cream: #fffef8; --white: #ffffff;
  --gray-100: #f8f9fa; --gray-200: #e9ecef; --gray-400: #9ca3af;
  --gray-600: #4b5563; --dark: #0a1628; --text: #1a2332; --text2: #4b5563;
  --font-head: 'Syne', sans-serif; --font-body: 'DM Sans', sans-serif;
  --radius: 12px; --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,76,42,0.08);
  --shadow-lg: 0 12px 48px rgba(15,76,42,0.14);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; word-wrap: break-word; overflow-wrap: break-word; }
h1 { font-size: clamp(1.7rem, 6vw, 4rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.6rem); }
p  { word-wrap: break-word; overflow-wrap: break-word; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 50px;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; max-width: 100%; overflow: hidden;
}
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--dark); box-shadow: 0 4px 20px rgba(212,160,23,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,160,23,.5); }
.btn-gold span { background: var(--dark); color: var(--gold-light); padding: 2px 7px; border-radius: 20px; font-size: 0.72rem; white-space: nowrap; }
.btn-green { background: linear-gradient(135deg,var(--green-dark),var(--green-mid)); color: var(--white); box-shadow: 0 4px 20px rgba(15,76,42,.3); }
.btn-green:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-sm  { padding: 9px 16px; font-size: 0.8rem; }
.btn-lg  { padding: 15px 32px; font-size: 0.95rem; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,254,248,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; gap: 12px; height: 64px; padding: 0 16px; max-width: 1200px; margin: 0 auto; }
.logo { flex-shrink: 0; }
.logo img { height: 38px; width: auto; display: block; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a { display: block; padding: 8px 11px; border-radius: 8px; font-weight: 500; font-size: 0.86rem; color: var(--text2); transition: var(--transition); white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--green-dark); background: var(--green-pale); }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 200px; padding: 8px; border: 1px solid var(--gray-200); z-index: 200; }
.dropdown li a { padding: 9px 14px; border-radius: 8px; font-size: 0.83rem; }
.has-dropdown:hover .dropdown { display: block; }
.header-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 20px; right: 16px; z-index: 999; width: 50px; height: 50px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: var(--transition); }
.wa-float svg { width: 25px; height: 25px; }

/* ── SECTION BASE ── */
section { padding: 72px 0; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); color: var(--green-dark); padding: 5px 13px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.section-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
.section-title { color: var(--text); margin-bottom: 12px; }
.section-title span { color: var(--green-mid); }
.section-sub { color: var(--text2); font-size: 1rem; max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── HERO ── */
.hero { padding-top: 88px; padding-bottom: 52px; background: linear-gradient(160deg,var(--green-pale2) 0%,var(--cream) 50%,var(--gold-pale) 100%); overflow: hidden; }
.hero-content { width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--green-pale); padding: 6px 13px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: var(--green-dark); box-shadow: var(--shadow); margin-bottom: 16px; max-width: 100%; white-space: normal; }
.hero-badge .dot { width: 7px; height: 7px; flex-shrink: 0; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero h1 { margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--green-mid); position: relative; display: inline; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: 2px; }
.hero-desc { font-size: 0.98rem; color: var(--text2); margin-bottom: 24px; max-width: 100%; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 16px; padding: 16px 18px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--gray-200); flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.hero-stat .lbl { font-size: 0.73rem; color: var(--text2); margin-top: 3px; }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--green-pale); aspect-ratio: 4/5; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-card { position: absolute; background: var(--white); border-radius: var(--radius); padding: 10px 14px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); font-size: 0.8rem; font-weight: 600; }
.hero-card.card-1 { bottom: 18px; left: -14px; display: flex; align-items: center; gap: 9px; }
.hero-card.card-2 { top: 18px; right: -14px; text-align: center; }
.hero-card .c-num { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--green-dark); }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-anim { animation: floatY 4s ease-in-out infinite; }

/* HERO DESKTOP GRID */
@media (min-width: 769px) {
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
}
@media (max-width: 768px) {
  .hero-inner { display: block; }
  .hero-visual { display: none; }
}

/* ── MARQUEE ── */
.marquee-strip { background: var(--green-dark); color: var(--white); padding: 12px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 44px; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; font-weight: 500; white-space: nowrap; }
.marquee-item .dot { width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--gray-200); box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.card-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--green-pale); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 9px; font-size: 1.05rem; }
.card p { color: var(--text2); font-size: 0.86rem; line-height: 1.65; }
.service-badge { display: inline-block; background: var(--green-pale); color: var(--green-dark); padding: 3px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; margin-bottom: 10px; }
.service-card::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg,var(--green-dark),var(--green-light)); border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: -26px -26px 18px; }
.service-card .btn-sm { margin-top: 16px; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--green-pale2); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg,var(--green-light),var(--gold)); }
.step { text-align: center; padding: 0 10px; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,var(--green-dark),var(--green-mid)); color: var(--white); font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(15,76,42,.3); position: relative; z-index: 1; }
.step h4 { margin-bottom: 7px; font-size: 0.92rem; }
.step p { font-size: 0.8rem; color: var(--text2); }

/* ── ABOUT ── */
.about-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.about-img-col { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; object-fit: cover; }
.about-badge-wrap { position: absolute; bottom: -18px; right: -18px; background: var(--green-dark); color: var(--white); padding: 16px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); }
.about-badge-wrap .big { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; color: var(--gold-light); }
.about-badge-wrap .small { font-size: 0.73rem; opacity: .85; margin-top: 2px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 22px 0; }
.a-stat { text-align: center; background: var(--green-pale); padding: 13px 10px; border-radius: var(--radius); }
.a-stat .num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.a-stat .lbl { font-size: 0.7rem; color: var(--text2); margin-top: 3px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 11px; }
.testi-text { font-size: 0.86rem; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--green-dark); font-size: 0.9rem; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 0.83rem; }
.testi-role { font-size: 0.73rem; color: var(--text2); }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg,var(--green-dark) 0%,#0d3d22 100%); color: var(--white); padding: 68px 0; text-align: center; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.4rem,4vw,2.6rem); margin-bottom: 12px; padding: 0 12px; }
.cta-band p { font-size: 0.98rem; opacity: .85; margin-bottom: 26px; padding: 0 16px; }
.cta-band .price-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 8px 18px; border-radius: 50px; margin-bottom: 22px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }
.cta-band .price-pill .old { text-decoration: line-through; opacity: .6; }
.cta-band .price-pill .new { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--gold-light); }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border-radius: 10px; border: 1.5px solid var(--gray-200); font-family: var(--font-body); font-size: 0.88rem; color: var(--text); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(26,122,63,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { color: #dc2626; font-size: 0.76rem; margin-top: 4px; display: block; }
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.86rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── PAGE HERO ── */
.page-hero { padding: 108px 0 52px; background: linear-gradient(160deg,var(--green-pale2) 0%,var(--cream) 100%); text-align: center; }
.breadcrumb { font-size: 0.78rem; color: var(--text2); margin-top: 12px; }
.breadcrumb a { color: var(--green-mid); }

/* ── CONSULTATION ── */
.consultation-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding: 56px 0; }
.consult-features li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 0.88rem; }
.consult-features .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--green-pale); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.price-box { background: var(--green-dark); color: var(--white); border-radius: var(--radius-lg); padding: 26px; text-align: center; margin: 18px 0; }
.price-box .old-price { font-size: 0.95rem; text-decoration: line-through; opacity: .6; }
.price-box .new-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--gold-light); }
.price-box .price-note { font-size: 0.78rem; opacity: .8; margin-top: 7px; }

/* ── LEGAL ── */
.legal-content { max-width: 760px; margin: 0 auto; padding: 56px 16px; }
.legal-content h2 { margin: 28px 0 9px; font-size: 1.15rem; color: var(--green-dark); }
.legal-content p, .legal-content li { color: var(--text2); font-size: 0.88rem; line-height: 1.75; margin-bottom: 9px; }
.legal-content ul { list-style: disc; padding-left: 20px; }

/* ── ADMIN ── */
.admin-body { background: #0f172a; color: #e2e8f0; font-family: var(--font-body); }
.admin-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: 214px; background: #0a1628; padding: 22px 0; z-index: 100; overflow-y: auto; }
.admin-logo { padding: 0 18px 18px; border-bottom: 1px solid #1e293b; margin-bottom: 12px; }
.admin-logo img { height: 30px; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 0.84rem; color: #94a3b8; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: #1e293b; border-right: 3px solid var(--gold); }
.admin-main { margin-left: 214px; min-height: 100vh; }
.admin-topbar { background: #0a1628; padding: 14px 26px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #1e293b; }
.admin-content { padding: 26px; }
.stat-card { background: #1e293b; border-radius: var(--radius); padding: 20px; border: 1px solid #334155; }
.stat-card .s-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--gold-light); }
.stat-card .s-lbl { font-size: 0.76rem; color: #94a3b8; margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #1e293b; padding: 11px 13px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; text-align: left; }
.admin-table td { padding: 12px 13px; border-bottom: 1px solid #1e293b; font-size: 0.84rem; }
.admin-table tr:hover td { background: #1e293b; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 50px; font-size: 0.69rem; font-weight: 700; }
.badge-new { background: #dbeafe; color: #1e40af; }
.badge-paid { background: #dcfce7; color: #166534; }
.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-contacted { background: #f3e8ff; color: #6b21a8; }
.badge-failed { background: #fee2e2; color: #991b1b; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { margin-bottom: 13px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 33px; height: 33px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-social a:hover { background: var(--green-mid); color: #fff; }
.footer-social svg { width: 14px; height: 14px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 13px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.8rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 0.8rem; }
.footer-contact svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; color: var(--green-light); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 7px; }
.footer-bottom p { font-size: 0.76rem; }
.footer-links a { font-size: 0.76rem; margin-left: 9px; }
.footer-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════
   TABLET 1024px
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .steps::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-img-col { max-width: 420px; margin: 0 auto; }
  .about-badge-wrap { right: 0; bottom: -14px; }
}

/* ══════════════════════════════
   MOBILE 768px
   ══════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav overlay */
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px 16px;
    overflow-y: auto;
  }
  .main-nav.open > ul { flex-direction: column; width: 100%; }
  .main-nav.open > ul > li { border-bottom: 1px solid var(--gray-200); width: 100%; }
  .main-nav.open > ul > li > a { padding: 15px 6px; font-size: 1rem; font-weight: 600; }
  .main-nav.open .dropdown { display: block; position: static; box-shadow: none; border: none; background: var(--gray-100); margin: 0 0 8px; border-radius: 8px; }
  .main-nav.open .has-dropdown:hover .dropdown { display: block; }
  .mobile-cta { margin-top: 20px; width: 100%; display: flex; }
  .mobile-cta .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero { padding-top: 80px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.6rem); }
  .hero-desc { font-size: 0.93rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 0; padding: 0; background: none; box-shadow: none; border: none; }
  .hero-stat { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow); }
  .hero-stat + .hero-stat { margin-top: 10px; }
  .hero-stat .num { font-size: 1.6rem; }
  .hero-stat .lbl { font-size: 0.82rem; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .consultation-wrap { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-img-col { max-width: 100%; }
  .about-badge-wrap { right: 8px; bottom: -12px; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .a-stat .num { font-size: 1.2rem; }

  /* CTA band */
  .cta-band { padding: 48px 0; }
  .cta-band .price-pill { flex-wrap: wrap; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-top { padding: 36px 0 24px; }

  /* Admin */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 14px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }

  /* Section */
  section { padding: 48px 0; }
  .page-hero { padding: 92px 0 44px; }

  /* Testimonial screenshots */
  .testi-screenshots { grid-template-columns: 1fr !important; }
  .contact-map-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════
   SMALL MOBILE 480px
   ══════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.9rem); }
  .btn-lg { padding: 13px 24px; font-size: 0.9rem; }
  .card { padding: 18px; }
  .price-box .new-price { font-size: 2.4rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .a-stat { padding: 9px 6px; }
  .a-stat .num { font-size: 1rem; }
  section { padding: 40px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
