:root {
  --blue-dark: #0a1f5c;
  --blue-mid: #1a3a9f;
  --blue-bright: #2855d8;
  --blue-light: #4a73e8;
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --gray: #6b7a99;
  --text-dark: #0d1b3e;
  --red-accent: #e63329;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar span { display: flex; align-items: center; gap: 5px; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,31,92,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-size: 17px; font-weight: 800; color: var(--blue-dark); letter-spacing: 0.5px; }
.nav-logo-text .tagline { font-size: 9px; font-weight: 500; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: all 0.25s; }
.nav-links a:hover { color: var(--blue-mid); background: rgba(40,85,216,0.07); }
.nav-cta { background: var(--gold) !important; color: var(--blue-dark) !important; border-radius: 25px !important; padding: 10px 22px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: scale(1.04); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue-dark); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999; background: var(--white); border-top: 3px solid var(--blue-mid); box-shadow: 0 8px 30px rgba(0,0,0,0.12); padding: 16px 20px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu a:last-child { border-bottom: none; color: var(--blue-mid); font-size: 16px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-bright) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px 60px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(72,115,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.4); color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--blue-dark); font-size: 15px; font-weight: 700; padding: 15px 30px; border-radius: 30px; text-decoration: none; transition: all 0.3s; box-shadow: 0 6px 25px rgba(245,166,35,0.4); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,0.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 30px; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; }
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.hero-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  width: 360px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.form-title { font-size: 18px; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.form-sub { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 11px 14px; border: 1.5px solid #dde3f0; border-radius: 9px; font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--text-dark); outline: none; transition: border 0.25s; background: #f9fafE; }
.form-group input:focus, .form-group select:focus { border-color: var(--blue-bright); background: var(--white); }
.form-submit { width: 100%; background: var(--blue-dark); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; padding: 13px; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; }
.form-submit:hover { background: var(--blue-bright); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note { font-size: 12px; margin-top: 12px; text-align: center; display: none; }
.form-note.success { color: #1a7d3a; display: block; }
.form-note.error { color: var(--red-accent); display: block; }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--gold); padding: 12px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 0; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--blue-dark); padding: 0 30px; }
.marquee-item::before { content: '✦'; color: var(--blue-dark); opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION STYLES ===== */
section { padding: 80px 40px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-bright); background: rgba(40,85,216,0.09); padding: 6px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title span { color: var(--gold-dark); }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 560px; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: var(--gray-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.service-card { background: var(--white); border-radius: 16px; padding: 30px 24px; transition: all 0.3s; cursor: default; border: 2px solid transparent; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-mid), var(--gold)); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(40,85,216,0.12); box-shadow: 0 12px 40px rgba(10,31,92,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card-img { width: 100%; height: 160px; border-radius: 14px; overflow: hidden; margin-bottom: 18px; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-badge { position: absolute; top: 10px; left: 10px; width: 40px; height: 40px; background: rgba(10,31,92,0.75); backdrop-filter: blur(4px); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 50px; }
.why-visual { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); border-radius: 20px; padding: 40px 40px 50px; color: white; text-align: center; position: relative; overflow: hidden; }
.why-visual-photo { border-radius: 14px; overflow: hidden; margin-bottom: 22px; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.why-visual-photo img { width: 100%; height: 190px; object-fit: cover; display: block; }
.why-visual h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.why-visual p { font-size: 13px; opacity: 0.75; }
.why-visual-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--blue-dark); font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 20px; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(40,85,216,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-point h4 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--gray); line-height: 1.55; }

/* ===== HOW IT WORKS ===== */
.process { background: var(--gray-light); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue-mid), var(--gold)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); color: var(--white); font-size: 22px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 6px 20px rgba(40,85,216,0.35); border: 4px solid var(--white); }
.step h4 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.step p { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testi-card { background: var(--gray-light); border-radius: 16px; padding: 28px 24px; border-left: 4px solid var(--blue-bright); }
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-size: 13px; color: #444; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; font-weight: 700; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--blue-dark); }
.testi-city { font-size: 11px; color: var(--gray); }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); padding: 60px 40px; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-band .btn-primary { font-size: 16px; padding: 16px 36px; }

/* ===== CONTACT ===== */
.contact { background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 50px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--blue-dark); margin-bottom: 3px; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--gray); text-decoration: none; }
.contact-item a:hover { color: var(--blue-bright); }
.contact-form-card { background: var(--white); border-radius: 16px; padding: 36px 30px; box-shadow: 0 8px 30px rgba(10,31,92,0.08); }
.contact-form-card h3 { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== FOOTER ===== */
footer { background: var(--blue-dark); color: rgba(255,255,255,0.75); }
.footer-main { padding: 60px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { height: 72px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; transition: background 0.25s; }
.social-btn:hover { background: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 12px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== FLOATING CALL ===== */
.float-call { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: var(--gold); color: var(--blue-dark); width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; box-shadow: 0 6px 25px rgba(245,166,35,0.5); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 6px 25px rgba(245,166,35,0.5); } 50% { box-shadow: 0 6px 40px rgba(245,166,35,0.8), 0 0 0 12px rgba(245,166,35,0.12); } }
.float-wa { bottom: 100px; background: #25d366; color: white; animation: pulse-wa 2.5s ease-in-out infinite 0.8s; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.12); } }

/* ===== INNER / STATIC PAGES (privacy, terms) ===== */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 100px 40px 60px; text-align: center; color: white; }
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 14px; opacity: 0.7; }
.page-content { max-width: 860px; margin: 0 auto; padding: 60px 40px; }
.page-content h2 { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin: 32px 0 12px; }
.page-content p, .page-content li { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 10px; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }

/* ===== BLOG ===== */
.blog-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 100px 40px 60px; text-align: center; color: white; }
.blog-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.blog-hero p { font-size: 14px; opacity: 0.75; max-width: 560px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; text-decoration: none; display: block; box-shadow: 0 4px 20px rgba(10,31,92,0.07); transition: all 0.3s; border: 2px solid transparent; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(10,31,92,0.14); border-color: rgba(40,85,216,0.15); }
.blog-card-img { height: 170px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-bright)); display: flex; align-items: center; justify-content: center; font-size: 46px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-post-feature-img { max-width: 780px; margin: -34px auto 0; padding: 0 40px; }
.blog-post-feature-img img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 14px 40px rgba(10,31,92,0.18); }
.blog-card-body { padding: 22px 20px; }
.blog-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-bright); background: rgba(40,85,216,0.09); padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.blog-meta { font-size: 11px; color: var(--gray); }
.blog-post-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); padding: 90px 40px 50px; color: white; }
.blog-post-hero .container { max-width: 780px; }
.blog-post-hero .blog-tag { background: rgba(245,166,35,0.18); color: var(--gold); }
.blog-post-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin: 14px 0 12px; line-height: 1.25; }
.blog-post-hero .blog-meta { color: rgba(255,255,255,0.65); }
.blog-post-content { max-width: 780px; margin: 0 auto; padding: 60px 40px; }
.blog-post-content h2 { font-size: 21px; font-weight: 700; color: var(--blue-dark); margin: 32px 0 12px; }
.blog-post-content p, .blog-post-content li { font-size: 15px; color: #333; line-height: 1.85; margin-bottom: 14px; }
.blog-post-content ul { padding-left: 22px; margin-bottom: 16px; }
.blog-post-cta { background: var(--gray-light); border-radius: 16px; padding: 28px 26px; margin-top: 36px; text-align: center; }
.blog-post-cta p { margin-bottom: 16px; font-weight: 600; color: var(--blue-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .topbar { padding: 7px 16px; font-size: 10.5px; gap: 8px; }
  .topbar-left { gap: 12px; }
  nav { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 42px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { top: 64px; max-height: calc(100vh - 64px); overflow-y: auto; }
  .mobile-menu a { padding: 14px 4px; font-size: 15px; }
  section { padding: 50px 20px; }
  .hero { padding: 32px 20px 44px; min-height: auto; }
  .hero-content { flex-direction: column; gap: 32px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .hero-btns { width: 100%; }
  .hero-btns a { flex: 1; justify-content: center; text-align: center; }
  .hero-form-card { width: 100%; padding: 26px 20px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; row-gap: 16px; }
  .stat { flex: 1 1 40%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 170px; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-visual { padding: 32px 24px 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .footer-brand img { height: 60px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .topbar-right { display: none; }
  .page-content, .blog-post-content { padding: 40px 20px; }
  .blog-post-hero, .blog-post-hero .container, .page-hero { padding-left: 20px; padding-right: 20px; }
  .blog-post-feature-img { margin-top: -20px; padding: 0 20px; }
  .float-call { width: 52px; height: 52px; font-size: 21px; bottom: 18px; right: 18px; }
  .float-wa { bottom: 82px; }
}
@media (max-width: 420px) {
  .topbar-left span:last-child { display: none; }
  section { padding: 40px 16px; }
  .hero { padding: 26px 16px 36px; }
  .hero-stats { justify-content: space-between; }
  .stat { flex: 1 1 42%; }
  .stat-num { font-size: 22px; }
  .marquee-item { padding: 0 18px; font-size: 12px; }
  .cta-band { padding: 44px 20px; }
  .cta-band .btn-primary, .cta-band .btn-outline { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
}
