/* AGK Maintenance — Static CSS */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:#1a2238;background:#fff;line-height:1.55;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:'Plus Jakarta Sans','Inter',sans-serif;letter-spacing:-.02em;margin:0;line-height:1.2}
p{margin:0}
ul{margin:0;padding:0;list-style:none}

:root{
  --primary:#2563eb;
  --primary-deep:#1e3a8a;
  --primary-foreground:#fff;
  --accent:#e0ecff;
  --accent-foreground:#1e3a8a;
  --muted:#f3f6fb;
  --muted-foreground:#5b6478;
  --border:#e4e8ef;
  --success:#16a34a;
  --bg:#fff;
  --shadow-soft:0 10px 30px -12px rgba(37,99,235,.35);
  --shadow-cta:0 14px 40px -10px rgba(22,163,74,.45);
  --gradient-hero:linear-gradient(135deg,#1e3a8a 0%,#2563eb 60%,#5b8def 100%);
  --gradient-soft:linear-gradient(180deg,#f0f5ff 0%,#fff 100%);
}

.container{max-width:1120px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.85);backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;padding-top:12px;padding-bottom:12px}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{width:38px;height:38px;border-radius:10px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center}
.brand-mark svg{width:20px;height:20px}
.brand-name{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:15px;line-height:1.1}
.brand-sub{font-size:11px;color:var(--muted-foreground);margin-top:2px}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:999px;font-weight:600;cursor:pointer;border:0;transition:transform .2s,background .2s,filter .2s;white-space:nowrap;font-family:inherit}
.btn:hover{transform:translateY(-2px)}
.btn svg{width:18px;height:18px}
.btn-md{padding:10px 18px;font-size:14px}
.btn-lg{padding:16px 28px;font-size:17px}
.btn-lg svg{width:20px;height:20px}
.btn-primary{background:var(--primary);color:#fff;box-shadow:var(--shadow-soft)}
.btn-primary:hover{background:var(--primary-deep)}
.btn-white{background:#fff;color:var(--primary);box-shadow:var(--shadow-soft)}
.btn-success{background:var(--success);color:#fff;box-shadow:var(--shadow-cta)}
.btn-success:hover{filter:brightness(1.1)}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.4);color:#fff;padding:14px 24px;border-radius:999px;font-weight:600;font-size:14px}
.btn-outline:hover{background:rgba(255,255,255,.1)}
.btn-block{width:100%}

/* Hero */
.hero{position:relative;overflow:hidden;color:#fff;background:var(--gradient-hero)}
.hero::before,.hero::after{content:"";position:absolute;width:380px;height:380px;border-radius:50%;background:rgba(255,255,255,.08);filter:blur(60px);pointer-events:none}
.hero::before{right:-100px;top:-100px}
.hero::after{left:-80px;bottom:-120px}
.hero-inner{position:relative;display:grid;gap:40px;padding:80px 0}
@media(min-width:960px){.hero-inner{grid-template-columns:1fr 1fr;align-items:center;padding:110px 0}}
.eyebrow-pill{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);padding:6px 14px;border-radius:999px;font-size:12px;font-weight:600}
.eyebrow-pill svg{width:14px;height:14px}
.hero h1{font-size:clamp(34px,5vw,58px);font-weight:700;margin-top:18px}
.hero-lede{margin-top:18px;max-width:540px;font-size:18px;color:rgba(255,255,255,.88)}
.hero-ctas{margin-top:28px;display:flex;flex-wrap:wrap;gap:12px}
.hero-features{margin-top:28px;display:grid;grid-template-columns:1fr 1fr;gap:10px;max-width:440px;font-size:14px;color:rgba(255,255,255,.88)}
.hero-features li{display:flex;align-items:center;gap:8px}
.hero-features svg{width:16px;height:16px;flex-shrink:0}
.hero-card{background:#fff;color:var(--foreground,#1a2238);border-radius:18px;padding:28px;box-shadow:0 30px 60px -20px rgba(0,0,0,.35)}
.hero-card-eyebrow{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--primary)}
.hero-card h3{font-size:22px;font-weight:700;margin-top:8px}
.hero-card p{margin-top:8px;color:var(--muted-foreground)}
.hero-stats{margin-top:20px;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;text-align:center}
.hero-stat{background:var(--muted);border-radius:12px;padding:12px}
.hero-stat-num{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:20px;color:var(--primary)}
.hero-stat-lbl{font-size:11px;color:var(--muted-foreground);margin-top:2px}
.hero-image-wrap{margin-top:24px;border-radius:14px;overflow:hidden}
.hero-image-wrap img{width:100%;aspect-ratio:16/10;object-fit:cover}

/* Sections */
section.block{padding:80px 0}
section.block-soft{background:var(--gradient-soft)}
.section-head{max-width:640px;margin:0 auto;text-align:center}
.eyebrow{display:inline-block;background:var(--accent);color:var(--accent-foreground);padding:5px 12px;border-radius:999px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.1em}
.section-head h2{margin-top:14px;font-size:clamp(28px,3.4vw,38px);font-weight:700}
.section-head p{margin-top:14px;color:var(--muted-foreground)}
.grid{display:grid;gap:20px;margin-top:48px}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
.grid-4{grid-template-columns:1fr}
@media(min-width:640px){.grid-2,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}

/* Service cards */
.svc-card{background:#fff;border:1px solid var(--border);border-radius:18px;overflow:hidden;transition:transform .25s,box-shadow .25s;display:flex;flex-direction:column}
.svc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft)}
.svc-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.svc-body{padding:20px}
.svc-icon{width:44px;height:44px;border-radius:12px;background:var(--accent);color:var(--primary);display:flex;align-items:center;justify-content:center}
.svc-icon svg{width:22px;height:22px}
.svc-card h3{font-size:18px;font-weight:700;margin-top:14px}
.svc-card p{font-size:14px;color:var(--muted-foreground);margin-top:6px}
.svc-link{display:inline-flex;align-items:center;gap:6px;margin-top:14px;font-size:14px;font-weight:600;color:var(--primary)}
.svc-link:hover{text-decoration:underline}
.svc-link svg{width:14px;height:14px}

/* About strip with image */
.about-strip{display:grid;gap:30px;align-items:center;margin-top:48px}
@media(min-width:900px){.about-strip{grid-template-columns:1.1fr 1fr}}
.about-img{border-radius:18px;overflow:hidden;box-shadow:var(--shadow-soft)}
.about-img img{aspect-ratio:4/3;object-fit:cover}
.about-text h3{font-size:24px;font-weight:700}
.about-text p{margin-top:12px;color:var(--muted-foreground)}
.about-list{margin-top:18px;display:grid;gap:10px}
.about-list li{display:flex;align-items:start;gap:10px;font-size:15px}
.about-list svg{width:20px;height:20px;color:var(--success);flex-shrink:0;margin-top:2px}

/* Steps */
.step-card{position:relative;background:#fff;border:1px solid var(--border);border-radius:18px;padding:28px 22px 24px;text-align:center}
.step-num{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--primary);color:#fff;padding:5px 12px;border-radius:999px;font-size:11px;font-weight:700}
.step-icon{margin:8px auto 0;width:56px;height:56px;border-radius:50%;background:var(--accent);color:var(--primary);display:flex;align-items:center;justify-content:center}
.step-icon svg{width:26px;height:26px}
.step-card h3{font-size:18px;font-weight:700;margin-top:14px}
.step-card p{font-size:14px;color:var(--muted-foreground);margin-top:6px}
.center-cta{margin-top:40px;display:flex;justify-content:center}

/* Reasons */
.reason-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:22px}
.reason-icon{width:42px;height:42px;border-radius:10px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center}
.reason-icon svg{width:20px;height:20px}
.reason-card h3{font-size:17px;font-weight:700;margin-top:14px}
.reason-card p{font-size:14px;color:var(--muted-foreground);margin-top:4px}

/* Final CTA */
.cta-band{position:relative;overflow:hidden;color:#fff;background:var(--gradient-hero);padding:80px 0;text-align:center}
.cta-band h2{font-size:clamp(28px,3.6vw,40px);font-weight:700}
.cta-band p{margin-top:14px;color:rgba(255,255,255,.88)}
.cta-phone{display:inline-flex;align-items:center;gap:14px;margin-top:32px;background:#fff;color:var(--primary);padding:18px 32px;border-radius:999px;font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:clamp(22px,3vw,30px);box-shadow:0 30px 60px -20px rgba(0,0,0,.45);transition:transform .2s}
.cta-phone:hover{transform:translateY(-3px)}
.cta-phone svg{width:28px;height:28px}
.cta-note{margin-top:14px;font-size:13px;color:rgba(255,255,255,.78)}

/* Footer */
.site-footer{background:#fff;border-top:1px solid var(--border);padding:48px 0 24px}
.footer-grid{display:grid;gap:32px}
@media(min-width:700px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1000px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
.footer-grid h4{font-size:15px;font-weight:700}
.footer-grid p,.footer-grid li{font-size:14px;color:var(--muted-foreground)}
.footer-list{margin-top:14px;display:grid;gap:8px}
.footer-list li{display:flex;align-items:center;gap:8px}
.footer-list svg{width:16px;height:16px;color:var(--primary);flex-shrink:0}
.footer-list a:hover{color:var(--primary)}
.footer-disclaimer{margin-top:14px;font-size:12px;line-height:1.6;color:var(--muted-foreground)}
.footer-bottom{margin-top:36px;padding-top:18px;border-top:1px solid var(--border);text-align:center;font-size:12px;color:var(--muted-foreground)}

/* Sticky mobile call */
.sticky-call{position:fixed;left:16px;right:16px;bottom:16px;z-index:50;display:flex;align-items:center;justify-content:center;gap:10px;background:var(--success);color:#fff;padding:16px 22px;border-radius:999px;font-weight:700;box-shadow:var(--shadow-cta);font-size:16px}
.sticky-call svg{width:20px;height:20px}
@media(min-width:768px){.sticky-call{display:none}}
body{padding-bottom:88px}
@media(min-width:768px){body{padding-bottom:0}}

/* Legal pages */
.legal-main{max-width:760px;margin:0 auto;padding:48px 20px 64px}
.back-link{display:inline-flex;align-items:center;gap:6px;font-size:14px;font-weight:600;color:var(--primary)}
.back-link:hover{text-decoration:underline}
.back-link svg{width:16px;height:16px}
.legal-main h1{font-size:clamp(28px,3.4vw,40px);font-weight:700;margin-top:24px}
.legal-updated{margin-top:8px;font-size:14px;color:var(--muted-foreground)}
.legal-content{margin-top:32px}
.legal-content h2{font-size:20px;font-weight:700;margin-top:32px}
.legal-content p{margin-top:12px;color:var(--muted-foreground);line-height:1.7}
.legal-content ul{margin-top:12px;padding-left:24px;list-style:disc;color:var(--muted-foreground)}
.legal-content li{margin-top:6px}
.legal-content a{color:var(--primary)}
