*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  /* Indigo primary (replaces the old red brand accent) */
  --red:#1e3a8a;--red-dark:#172554;--red-light:#eff6ff;
  /* Dark ink — used for headings and the few deliberately-dark panels */
  --navy:#0f172a;--navy-mid:#111827;--navy-light:#1e293b;
  /* Violet secondary (replaces the old gold), tuned to read on dark panels */
  --gold:#7dd3fc;--gold-dark:#38bdf8;--gold-light:#f0f9ff;
  --green:#059669;--gray:#475569;--gray-light:#f8fafc;
  --border:#e5e7eb;--white:#fff;--text:#0f172a;
}
html{scroll-behavior:smooth;background:#eef1f5}
body{font-family:'Inter',sans-serif;color:var(--text);background:#fff;overflow-x:hidden;width:100%;max-width:1320px;margin-left:auto;margin-right:auto;box-shadow:0 0 60px rgba(15,23,42,.10)}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* ── PAGE SYSTEM ── */
.page{display:none}
.page.active{display:block}

/* ── PROMO BAR ── */
.promo-bar{background:linear-gradient(90deg,var(--red-dark),var(--red));color:#fff;text-align:center;padding:9px 24px;font-size:13px;font-weight:600}
.promo-bar span{background:rgba(255,255,255,.2);border-radius:4px;padding:2px 10px;margin:0 6px;font-family:'Montserrat',sans-serif}
.promo-bar a{color:var(--gold);text-decoration:underline;margin-left:6px;font-family:'Montserrat',sans-serif;font-weight:700;cursor:pointer}

/* ── TOP BAR ── */
.topbar{background:var(--navy);padding:8px 0}
.topbar .inner{max-width:1260px;margin:0 auto;padding:0 28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px}
.tleft,.tright{display:flex;align-items:center;gap:16px;font-size:12.5px;color:#94a3b8}
.topbar a{color:#94a3b8;transition:color .2s}.topbar a:hover{color:var(--gold)}
.tb-sep{opacity:.25}
.socials{display:flex;gap:7px}
.socials a{width:26px;height:26px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-size:12px;transition:all .2s}
.socials a:hover{border-color:var(--gold);color:var(--gold)}

/* ── HEADER ── */
header{background:#fff;border-bottom:3px solid var(--gold);position:sticky;top:0;z-index:300;box-shadow:0 2px 20px rgba(0,0,0,.08)}
.header-inner{max-width:1260px;margin:0 auto;padding:0 28px;display:flex;align-items:center;justify-content:space-between;gap:16px;height:76px}
.logo-link{display:flex;align-items:center;cursor:pointer;background:transparent}
.logo-link img{height:48px;width:auto;object-fit:contain;background:transparent}
nav{display:flex;align-items:center;gap:2px}
nav a{font-family:'Montserrat',sans-serif;font-weight:600;font-size:12.5px;color:var(--navy);padding:7px 12px;border-radius:6px;transition:all .2s;white-space:nowrap;cursor:pointer}
nav a:hover{color:var(--red);background:var(--red-light)}
nav a.nav-active{color:var(--red);background:var(--red-light)}
.nav-drop{position:relative}
.nav-drop:hover .dropdown{opacity:1;pointer-events:all;transform:translateY(0)}
.dropdown{position:absolute;top:calc(100% + 8px);left:0;background:#fff;border:1px solid var(--border);border-radius:10px;box-shadow:0 16px 48px rgba(0,0,0,.12);min-width:240px;padding:8px;opacity:0;pointer-events:none;transform:translateY(-6px);transition:all .22s;z-index:999}
.dropdown a{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:6px;font-size:13px;color:var(--text);font-weight:500}
.dropdown a:hover{background:var(--gray-light);color:var(--red)}
.dropdown-img{width:32px;height:32px;border-radius:6px;object-fit:cover;flex-shrink:0}
.hdr-actions{display:flex;align-items:center;gap:10px}
.btn-login{font-family:'Montserrat',sans-serif;font-weight:600;font-size:13px;color:var(--navy);padding:9px 18px;border:1.5px solid var(--border);border-radius:7px;transition:all .2s;cursor:pointer;background:none}
.btn-login:hover{border-color:var(--red);color:var(--red)}
.btn-hdrcta{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;background:var(--red);color:#fff;padding:10px 22px;border-radius:7px;transition:all .2s;white-space:nowrap;cursor:pointer;border:none}
.btn-hdrcta:hover{background:var(--red-dark);transform:translateY(-1px)}
.mobile-menu-btn{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.mobile-menu-btn span{width:24px;height:2px;background:var(--navy);border-radius:2px}

/* ── MOBILE NAV ── */
.mobile-nav{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:500}
.mobile-nav-panel{position:absolute;right:0;top:0;bottom:0;width:290px;background:#fff;padding:24px;overflow-y:auto}
.mobile-nav-close{position:absolute;top:16px;right:16px;font-size:22px;cursor:pointer;color:var(--gray);background:none;border:none}
.mobile-nav-logo{margin-bottom:24px}
.mobile-nav-logo img{height:40px;background:transparent}
.mobile-nav-links{display:flex;flex-direction:column;gap:4px}
.mobile-nav-links a{display:block;font-family:'Montserrat',sans-serif;font-weight:600;font-size:14px;color:var(--navy);padding:11px 14px;border-radius:8px;transition:all .2s;cursor:pointer}
.mobile-nav-links a:hover,.mobile-nav-links a.active{background:var(--red-light);color:var(--red)}
.mnav-divider{height:1px;background:var(--border);margin:10px 0}

/* ── HERO ── */
.hero{background:linear-gradient(140deg,var(--navy) 0%,var(--navy-mid) 55%,#1e3d6e 100%);color:#fff;padding:88px 28px 100px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");background-size:40px 40px}
.hero-glow{position:absolute;right:-120px;top:-80px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(245,166,35,.12) 0%,transparent 70%);pointer-events:none}
.hero-inner{max-width:1260px;margin:0 auto;display:grid;grid-template-columns:1fr 390px;gap:56px;align-items:center;position:relative;z-index:1}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.4);color:var(--gold);font-family:'Montserrat',sans-serif;font-weight:700;font-size:11px;letter-spacing:1px;text-transform:uppercase;padding:6px 16px;border-radius:30px;margin-bottom:22px}
.hero h1{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(32px,4vw,52px);line-height:1.12;margin-bottom:10px}
.hero h1 em{color:var(--gold);font-style:normal}
.hero-sub{font-family:'Montserrat',sans-serif;font-weight:600;font-size:clamp(15px,1.8vw,19px);color:#93c5fd;margin-bottom:20px}
.hero p{font-size:15.5px;line-height:1.8;color:#b0c4de;max-width:580px;margin-bottom:34px}
.hero p strong{color:#fff}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:52px}
.btn-hero-main{background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:800;font-size:15px;padding:14px 34px;border-radius:9px;border:2px solid var(--red);transition:all .2s;cursor:pointer}
.btn-hero-main:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(214,43,43,.35)}
.btn-hero-out{background:transparent;color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;padding:14px 34px;border-radius:9px;border:2px solid rgba(255,255,255,.35);transition:all .2s;cursor:pointer}
.btn-hero-out:hover{border-color:#fff;background:rgba(255,255,255,.08)}
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.hstat{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:16px;text-align:center}
.hstat-num{font-family:'Montserrat',sans-serif;font-weight:900;font-size:26px;color:var(--gold);line-height:1}
.hstat-lbl{font-size:11px;color:#94a3b8;margin-top:5px;line-height:1.3}

/* Hero panel */
.hero-panel{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:20px;padding:28px 24px}
.hero-panel h3{font-family:'Montserrat',sans-serif;font-weight:800;font-size:17px;color:#fff;margin-bottom:4px}
.panel-sub{font-size:13px;color:#90a4b8;margin-bottom:18px}
.price-display{background:linear-gradient(135deg,var(--red),#d62b2b);border-radius:12px;padding:20px;margin-bottom:16px;text-align:center;position:relative;overflow:hidden}
.off-ribbon{position:absolute;top:10px;right:-18px;background:var(--gold);color:var(--navy);font-family:'Montserrat',sans-serif;font-weight:900;font-size:9px;padding:4px 24px;transform:rotate(35deg);letter-spacing:.5px}
.price-was-line{font-size:12.5px;color:rgba(255,255,255,.6);margin-bottom:4px}
.price-was-line s{color:rgba(255,255,255,.45)}
.price-now-big{font-family:'Montserrat',sans-serif;font-weight:900;font-size:38px;color:#fff;line-height:1}
.price-note{font-size:11px;color:rgba(255,255,255,.65);margin-top:5px}
.panel-feats{display:flex;flex-direction:column;gap:9px;margin-bottom:16px}
.pf{display:flex;align-items:center;gap:10px;font-size:13px;color:#c8d8e8}
.pf-chk{width:20px;height:20px;border-radius:50%;background:rgba(22,163,74,.25);border:1px solid rgba(22,163,74,.5);display:flex;align-items:center;justify-content:center;font-size:10px;color:#4ade80;flex-shrink:0}
.panel-btn{display:block;background:var(--gold);color:var(--navy);font-family:'Montserrat',sans-serif;font-weight:800;font-size:14px;padding:13px;border-radius:8px;text-align:center;transition:all .2s;cursor:pointer;border:none;width:100%}
.panel-btn:hover{background:var(--gold-dark)}

/* ── TRUST STRIP ── */
.trust-strip{background:var(--red);padding:0}
.trust-inner{max-width:1260px;margin:0 auto;display:flex;flex-wrap:wrap}
.trust-item{flex:1;min-width:150px;padding:16px 18px;display:flex;align-items:center;gap:12px;border-right:1px solid rgba(255,255,255,.15)}
.trust-item:last-child{border-right:none}
.ti-ic{font-size:20px;flex-shrink:0}
.ti-t{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;color:#fff}
.ti-s{font-size:11px;color:rgba(255,255,255,.75);margin-top:2px}

/* ── SECTIONS ── */
.section{padding:80px 28px}
.sec-light{background:var(--gray-light)}
.sec-dark{background:var(--navy);color:#fff}
.sec-navy{background:var(--navy-light);color:#fff}
.wrap{max-width:1260px;margin:0 auto}
.sec-head{text-align:center;margin-bottom:56px}
.sec-label{display:inline-block;font-family:'Montserrat',sans-serif;font-weight:700;font-size:10.5px;letter-spacing:2px;text-transform:uppercase;color:var(--red);background:var(--red-light);padding:5px 16px;border-radius:30px;margin-bottom:14px}
.sec-dark .sec-label,.sec-navy .sec-label{color:var(--gold);background:rgba(245,166,35,.12)}
.sec-head h2{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(26px,3.5vw,40px);color:var(--navy);margin-bottom:14px;line-height:1.2}
.sec-dark .sec-head h2,.sec-navy .sec-head h2{color:#fff}
.sec-head p{font-size:16px;color:var(--gray);max-width:640px;margin:0 auto;line-height:1.75}
.sec-dark .sec-head p,.sec-navy .sec-head p{color:#94a3b8}

/* ── SERVICE CARDS WITH IMAGES ── */
.svc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px}
.svc-card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:all .28s;cursor:pointer;display:flex;flex-direction:column}
.svc-card:hover{box-shadow:0 16px 48px rgba(0,0,0,.12);transform:translateY(-5px)}
.svc-img-wrap{position:relative;overflow:hidden;height:200px}
.svc-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.svc-card:hover .svc-img-wrap img{transform:scale(1.06)}
.svc-img-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 40%,rgba(14,30,53,.7) 100%)}
.svc-img-badge{position:absolute;top:12px;left:12px;background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:10px;padding:4px 10px;border-radius:20px;letter-spacing:.5px;text-transform:uppercase}
.svc-body{padding:22px 22px 24px;flex:1;display:flex;flex-direction:column}
.svc-body h3{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16.5px;color:var(--navy);margin-bottom:9px}
.svc-body p{font-size:13.5px;color:var(--gray);line-height:1.7;margin-bottom:14px;flex:1}
.svc-tags{display:flex;flex-wrap:wrap;gap:5px;margin-bottom:14px}
.stag{background:var(--gray-light);color:var(--gray);font-size:10.5px;font-weight:600;padding:3px 10px;border-radius:20px;font-family:'Montserrat',sans-serif}
.svc-footer{display:flex;align-items:center;justify-content:space-between;padding-top:14px;border-top:1px solid var(--border)}
.svc-price{font-family:'Montserrat',sans-serif;font-weight:800;font-size:14px;color:var(--red)}
.svc-price s{color:#aaa;font-weight:400;font-size:12px;margin-right:4px}
.svc-lnk{display:inline-flex;align-items:center;gap:5px;font-family:'Montserrat',sans-serif;font-weight:700;font-size:12.5px;color:var(--red);transition:gap .2s}
.svc-lnk:hover{gap:9px}

/* ── HOW IT WORKS ── */
.steps-wrap{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.steps-wrap::before{content:'';position:absolute;top:35px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--red),var(--gold));z-index:0}
.step{text-align:center;padding:0 18px;position:relative;z-index:1}
.step-bub{width:70px;height:70px;border-radius:50%;background:#fff;border:3px solid var(--red);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;box-shadow:0 4px 20px rgba(214,43,43,.2)}
.step-bub span{font-family:'Montserrat',sans-serif;font-weight:900;font-size:22px;color:var(--red)}
.step h4{font-family:'Montserrat',sans-serif;font-weight:800;font-size:15px;color:var(--navy);margin-bottom:9px}
.step p{font-size:13px;color:var(--gray);line-height:1.65}

/* ── WHY US ── */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-vis{background:linear-gradient(150deg,var(--navy),#1a3a60);border-radius:22px;padding:44px 36px;position:relative;overflow:hidden;text-align:center}
.why-vis::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,.02) 20px,rgba(255,255,255,.02) 40px)}
.why-vis-in{position:relative;z-index:1}
.why-logo-wrap{display:flex;justify-content:center;margin-bottom:20px}
.why-logo-wrap img{height:56px;width:auto;background:transparent}
.why-vis h3{font-family:'Montserrat',sans-serif;font-weight:900;font-size:22px;color:#fff;margin-bottom:10px}
.why-vis p{font-size:13.5px;color:#90a4b8;line-height:1.7;margin-bottom:26px}
.why-badges{display:flex;flex-wrap:wrap;gap:7px;justify-content:center}
.wbadge{background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.15);color:#cbd5e1;font-size:11.5px;font-weight:600;padding:5px 13px;border-radius:20px;font-family:'Montserrat',sans-serif}
.feats-list{display:flex;flex-direction:column;gap:20px}
.feat{display:flex;gap:14px;align-items:flex-start}
.feat-ic{width:40px;height:40px;border-radius:10px;background:var(--red-light);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;border:1px solid rgba(214,43,43,.15)}
.feat h4{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14.5px;color:var(--navy);margin-bottom:4px}
.feat p{font-size:13px;color:var(--gray);line-height:1.6}
.feat p strong{color:var(--red)}

/* ── PRICING ── */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:38px}
.price-card{background:#fff;border:2px solid var(--border);border-radius:18px;padding:36px 28px;text-align:center;transition:all .25s;position:relative}
.price-card.feat{border-color:var(--red);box-shadow:0 8px 40px rgba(214,43,43,.14);transform:translateY(-4px)}
.pop-bdg{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:800;font-size:10px;padding:5px 18px;border-radius:30px;letter-spacing:.8px;text-transform:uppercase;white-space:nowrap}
.pc-icon{font-size:32px;margin-bottom:10px}
.price-card h3{font-family:'Montserrat',sans-serif;font-weight:900;font-size:19px;color:var(--navy);margin-bottom:4px}
.pc-type{font-size:12px;color:var(--gray);margin-bottom:20px}
.price-was-r{font-size:12.5px;color:#aaa;margin-bottom:3px}
.price-was-r s{color:#bbb}
.price-main{font-family:'Montserrat',sans-serif;font-weight:900;font-size:44px;color:var(--navy);line-height:1}
.price-main sup{font-size:20px;vertical-align:super;font-weight:700}
.price-per{font-size:12px;color:var(--gray);margin-bottom:18px}
.price-feats{list-style:none;text-align:left;display:flex;flex-direction:column;gap:10px;margin-bottom:26px}
.price-feats li{font-size:13px;color:#444;display:flex;align-items:flex-start;gap:9px}
.price-feats li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0;margin-top:1px}
.btn-order{display:block;padding:12px;border-radius:8px;font-family:'Montserrat',sans-serif;font-weight:800;font-size:13.5px;text-align:center;background:var(--red);color:#fff;border:2px solid var(--red);transition:all .2s;cursor:pointer}
.btn-order:hover{background:var(--red-dark)}
.price-card:not(.feat) .btn-order{background:transparent;color:var(--red)}
.price-card:not(.feat) .btn-order:hover{background:var(--red);color:#fff}
.anchor-box{background:linear-gradient(135deg,var(--gold-light),#fff9e8);border:1px solid rgba(245,166,35,.4);border-radius:16px;padding:30px 38px;display:flex;align-items:center;gap:28px}
.anch-ic{font-size:44px;flex-shrink:0}
.anchor-box h3{font-family:'Montserrat',sans-serif;font-weight:900;font-size:18px;color:var(--navy);margin-bottom:7px}
.anchor-box p{font-size:13.5px;color:#555;line-height:1.75}
.anchor-box p strong{color:var(--red)}

/* ── FORMATS ── */
.fmt-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px}
.fmt-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:22px 18px;text-align:center;transition:all .2s}
.fmt-card:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.25);transform:translateY(-2px)}
.fmt-ext{font-family:'Montserrat',sans-serif;font-weight:900;font-size:24px;color:var(--gold);margin-bottom:7px}
.fmt-machine{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;color:#fff;margin-bottom:4px}
.fmt-codes{font-size:12px;color:#94a3b8}

/* ── REVIEWS ── */
.rev-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:20px}
.rev-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:28px;transition:box-shadow .2s}
.rev-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08)}
.stars{color:var(--gold);font-size:15px;margin-bottom:12px;letter-spacing:2px}
.rev-text{font-size:14px;color:#444;line-height:1.75;font-style:italic;margin-bottom:20px;padding-left:14px;position:relative}
.rev-text::before{content:'"';font-size:44px;color:#f0e0e0;position:absolute;top:-8px;left:-4px;font-family:Georgia,serif;line-height:1}
.reviewer{display:flex;align-items:center;gap:12px}
.av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Montserrat',sans-serif;font-weight:800;font-size:14px;color:#fff;flex-shrink:0}
.rev-name{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;color:var(--navy)}
.rev-role{font-size:11.5px;color:var(--gray);margin-top:2px}

/* ── INDIVIDUAL SERVICE PAGE ── */
.svc-hero{position:relative;overflow:hidden;height:420px;display:flex;align-items:flex-end}
.svc-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.svc-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(14,30,53,.95) 0%,rgba(14,30,53,.5) 60%,transparent 100%)}
.svc-hero-content{position:relative;z-index:1;padding:0 28px 48px;max-width:1260px;margin:0 auto;width:100%}
.svc-hero-content .breadcrumb{display:flex;align-items:center;gap:8px;font-size:12.5px;color:rgba(255,255,255,.6);margin-bottom:14px;font-family:'Montserrat',sans-serif;font-weight:600}
.svc-hero-content .breadcrumb a{color:rgba(255,255,255,.6);cursor:pointer}.svc-hero-content .breadcrumb a:hover{color:var(--gold)}
.svc-hero-content .breadcrumb span{color:var(--gold)}
.svc-hero-content h1{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(28px,4vw,48px);color:#fff;margin-bottom:14px;line-height:1.15}
.svc-hero-content h1 em{color:var(--gold);font-style:normal}
.svc-hero-content .hero-meta{display:flex;gap:20px;flex-wrap:wrap}
.hero-meta-tag{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;font-family:'Montserrat',sans-serif;font-weight:600;font-size:12px;padding:5px 14px;border-radius:20px}

/* ── SEO CONTENT BLOCKS ── */
.svc-content-grid{display:grid;grid-template-columns:2fr 1fr;gap:48px;align-items:start}
.svc-content h2{font-family:'Montserrat',sans-serif;font-weight:900;font-size:28px;color:var(--navy);margin-bottom:14px;margin-top:36px}
.svc-content h2:first-child{margin-top:0}
.svc-content h3{font-family:'Montserrat',sans-serif;font-weight:800;font-size:20px;color:var(--navy);margin-bottom:10px;margin-top:28px}
.svc-content p{font-size:15px;color:#444;line-height:1.85;margin-bottom:16px}
.svc-content ul{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:20px}
.svc-content ul li{display:flex;align-items:flex-start;gap:10px;font-size:14.5px;color:#444;line-height:1.65}
.svc-content ul li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0;margin-top:2px}
.svc-sidebar{position:sticky;top:100px}
.svc-order-box{background:var(--navy);border-radius:16px;padding:28px;text-align:center;margin-bottom:20px}
.svc-order-box h4{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16px;color:#fff;margin-bottom:6px}
.svc-order-box p{font-size:13px;color:#94a3b8;margin-bottom:18px;line-height:1.5}
.svc-order-price{margin-bottom:18px}
.svc-order-price .was{font-size:13px;color:rgba(255,255,255,.5);margin-bottom:4px}
.svc-order-price .was s{color:rgba(255,255,255,.35)}
.svc-order-price .now{font-family:'Montserrat',sans-serif;font-weight:900;font-size:32px;color:var(--gold);line-height:1}
.svc-order-price .per{font-size:12px;color:#475569;margin-top:3px}
.btn-order-svc{display:block;width:100%;padding:13px;background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:800;font-size:14px;border-radius:8px;text-align:center;cursor:pointer;border:none;transition:all .2s;margin-bottom:10px}
.btn-order-svc:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-quote-svc{display:block;width:100%;padding:12px;background:transparent;color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;border-radius:8px;text-align:center;cursor:pointer;border:1.5px solid rgba(255,255,255,.3);transition:all .2s}
.btn-quote-svc:hover{border-color:#fff}
.svc-includes{background:var(--gray-light);border-radius:14px;padding:22px;margin-bottom:20px}
.svc-includes h4{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--navy);margin-bottom:14px}
.svc-includes ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.svc-includes ul li{display:flex;align-items:center;gap:8px;font-size:13px;color:#444}
.svc-includes ul li::before{content:'✓';color:var(--green);font-weight:700;flex-shrink:0}
.svc-contact-box{background:linear-gradient(135deg,var(--gold-light),#fff9e8);border:1px solid rgba(245,166,35,.35);border-radius:14px;padding:20px}
.svc-contact-box h4{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;color:var(--navy);margin-bottom:10px}
.svc-contact-box p{font-size:13px;color:#555;line-height:1.5;margin-bottom:10px}
.svc-contact-box a{color:var(--red);font-weight:700}

/* ── FAQ ── */
.faq-list{display:flex;flex-direction:column;gap:14px;margin-top:28px}
.faq-item{background:var(--gray-light);border-radius:12px;overflow:hidden}
.faq-q{font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;color:var(--navy);padding:18px 20px;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.faq-q::after{content:'▾';color:var(--red);transition:transform .2s;flex-shrink:0}
.faq-item.open .faq-q::after{transform:rotate(180deg)}
.faq-a{display:none;padding:0 20px 18px;font-size:14px;color:#555;line-height:1.75}
.faq-item.open .faq-a{display:block}

/* ── RELATED SERVICES ── */
.related-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.related-card{border:1px solid var(--border);border-radius:12px;overflow:hidden;cursor:pointer;transition:all .2s}
.related-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.1);transform:translateY(-3px)}
.related-card img{width:100%;height:140px;object-fit:cover}
.related-card-body{padding:14px}
.related-card-body h4{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--navy);margin-bottom:5px}
.related-card-body p{font-size:12px;color:var(--gray);line-height:1.5}

/* ── PAGE HEADER ── */
.page-header{background:linear-gradient(140deg,#f1f5f9,#1e3d6e);color:#fff;padding:60px 28px 56px}
.page-header .wrap{display:flex;align-items:center;gap:20px}
.ph-text h1{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(26px,3.5vw,40px);color:#0e1e35;margin-bottom:8px}
.ph-text h1 em{color:#d62b2b;font-style:normal}
.ph-text p{font-size:15px;color:#000;max-width:520px;line-height:1.7}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:12.5px;color:#000;margin-bottom:12px;font-family:'Montserrat',sans-serif;font-weight:600}
.breadcrumb a{color:#000;cursor:pointer}.breadcrumb a:hover{color:var(--gold)}
.breadcrumb span{color:#d62b2b}

/* ── FORMS ── */
.form-box{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:20px;padding:34px 30px}
.form-box h3{font-family:'Montserrat',sans-serif;font-weight:800;font-size:19px;color:#fff;margin-bottom:4px}
.form-sub{font-size:13px;color:#94a3b8;margin-bottom:22px}
.form-group{margin-bottom:15px}
.form-group label{display:block;font-size:12px;font-weight:600;color:#cbd5e1;margin-bottom:5px;font-family:'Montserrat',sans-serif;letter-spacing:.3px}
.form-group input,.form-group select,.form-group textarea{width:100%;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:8px;padding:10px 13px;font-size:14px;color:#fff;outline:none;transition:border-color .2s;font-family:'Inter',sans-serif}
.form-group input::placeholder,.form-group textarea::placeholder{color:#475569}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold)}
.form-group select option{background:#1b3156;color:#fff}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.btn-submit{width:100%;padding:14px;background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:800;font-size:15px;border:none;border-radius:9px;cursor:pointer;transition:all .2s}
.btn-submit:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-submit-gold{background:var(--gold);color:var(--navy)}
.btn-submit-gold:hover{background:var(--gold-dark)}
.success-msg{display:none;background:rgba(22,163,74,.15);border:1px solid rgba(22,163,74,.4);border-radius:10px;padding:16px 20px;text-align:center;color:#4ade80;font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;margin-top:14px}
.error-msg{display:none;background:rgba(239,68,68,.12);border:1px solid rgba(239,68,68,.4);border-radius:10px;padding:13px 18px;text-align:center;color:#fca5a5;font-family:'Montserrat',sans-serif;font-weight:600;font-size:13.5px;margin-top:12px}
.ts-holder:not(:empty){margin-top:14px}
.btn-submit:disabled{opacity:.6;cursor:not-allowed;transform:none}
/* Honeypot: hidden from people, still filled in by naive bots. */
.hp-field{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none}

/* ── CTA SECTION ── */
.cta-section{background:linear-gradient(135deg,var(--red),#d62b2b);padding:76px 28px;text-align:center}
.cta-section h2{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(26px,3.5vw,42px);color:#fff;margin-bottom:12px}
.cta-sub-p{font-size:16.5px;color:rgba(255,255,255,.85);max-width:580px;margin:0 auto 12px;line-height:1.65}
.cta-deal{display:inline-block;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);color:#fff;font-family:'Montserrat',sans-serif;font-weight:800;font-size:14.5px;padding:8px 22px;border-radius:30px;margin-bottom:30px}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.btn-cta-w{background:#fff;color:var(--red);font-family:'Montserrat',sans-serif;font-weight:800;font-size:15px;padding:14px 36px;border-radius:9px;transition:all .2s;cursor:pointer;border:none}
.btn-cta-w:hover{background:#f0f0f0;transform:translateY(-2px)}
.btn-cta-g{background:transparent;color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:15px;padding:14px 36px;border-radius:9px;border:2px solid rgba(255,255,255,.5);transition:all .2s;cursor:pointer}
.btn-cta-g:hover{border-color:#fff;background:rgba(255,255,255,.1)}

/* ── FOOTER ── */
footer{background:var(--navy);color:#94a3b8;padding:68px 28px 0}
.foot-inner{max-width:1260px;margin:0 auto;display:grid;grid-template-columns:2.2fr 1fr 1fr 1.3fr;gap:44px;padding-bottom:52px}
.foot-logo img{height:56px;width:auto;margin-bottom:14px;background:transparent}
.foot-about-p{font-size:13px;line-height:1.75;margin-bottom:18px}
.cl{display:flex;flex-direction:column;gap:8px}
.cl-item{display:flex;align-items:flex-start;gap:9px;font-size:13px}
.ft-socials{display:flex;gap:8px;margin-top:14px}
.ft-soc{width:32px;height:32px;border-radius:50%;border:1px solid rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:12px;color:#94a3b8;transition:all .2s;cursor:pointer}
.ft-soc:hover{border-color:var(--gold);color:var(--gold)}
.foot-col h4,.foot-col h2{font-family:'Montserrat',sans-serif;font-weight:800;font-size:13.5px;color:#fff;margin-bottom:18px;padding-bottom:9px;border-bottom:2px solid var(--red);display:inline-block}
.foot-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.foot-col ul li a{font-size:13px;color:#94a3b8;transition:color .2s;display:flex;align-items:center;gap:5px;cursor:pointer}
.foot-col ul li a::before{content:'›';color:var(--red);font-weight:700}
.foot-col ul li a:hover{color:var(--gold)}
.foot-nl h4,.foot-nl h2{font-family:'Montserrat',sans-serif;font-weight:800;font-size:13.5px;color:#fff;margin-bottom:9px}
.foot-nl p{font-size:12.5px;line-height:1.6;margin-bottom:14px}
.nl-form{display:flex;flex-direction:column;gap:8px}
.nl-form input{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:7px;padding:9px 13px;color:#fff;font-size:13px;outline:none}
.nl-form input::placeholder{color:#475569}
.nl-form input:focus{border-color:var(--gold)}
.nl-form button{background:var(--red);color:#fff;font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;padding:10px;border:none;border-radius:7px;cursor:pointer;transition:background .2s}
.nl-form button:hover{background:var(--red-dark)}
.foot-bottom{max-width:1260px;margin:0 auto;border-top:1px solid rgba(255,255,255,.07);padding:18px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px;font-size:12px}
.foot-bottom a{color:#475569;transition:color .2s;cursor:pointer}.foot-bottom a:hover{color:#fff}
.fl{display:flex;gap:18px}

/* ── TOAST ── */
.toast{position:fixed;bottom:30px;right:30px;background:var(--navy);color:#fff;border-left:4px solid var(--green);border-radius:10px;padding:16px 22px;font-family:'Montserrat',sans-serif;font-weight:600;font-size:14px;box-shadow:0 8px 32px rgba(0,0,0,.25);z-index:9999;opacity:0;transform:translateY(20px);transition:all .3s;pointer-events:none}
.toast.show{opacity:1;transform:translateY(0)}

/* ── ABOUT PAGE ── */
.about-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px;margin-bottom:60px}
.about-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:28px 24px;text-align:center;transition:all .25s}
.about-card:hover{box-shadow:0 8px 28px rgba(0,0,0,.08);transform:translateY(-3px)}
.about-card-ic{font-size:38px;margin-bottom:14px}
.about-card h3{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16px;color:var(--navy);margin-bottom:8px}
.about-card p{font-size:13.5px;color:var(--gray);line-height:1.65}
.promise-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.promise{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;padding:18px}
.promise h5{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;color:var(--gold);margin-bottom:5px}
.promise p{font-size:13px;color:#94a3b8;line-height:1.5}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.cinfo-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:22px;margin-bottom:14px}
.cinfo-card h4{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--gold);margin-bottom:8px}
.cinfo-card p,.cinfo-card a{font-size:14px;color:#c8d8e8;line-height:1.65}
.cinfo-card a:hover{color:var(--gold)}

/* ── RESPONSIVE ── */
@media(max-width:1060px){.hero-inner{grid-template-columns:1fr}.hero-panel{display:none}.why-grid{grid-template-columns:1fr}.pricing-grid{grid-template-columns:1fr 1fr}.contact-grid{grid-template-columns:1fr}.foot-inner{grid-template-columns:1fr 1fr}.svc-content-grid{grid-template-columns:1fr}}
@media(max-width:768px){.tleft .topbar-addr{display:none}nav{display:none}.mobile-menu-btn{display:flex}.hero-stats{grid-template-columns:repeat(2,1fr)}.steps-wrap{grid-template-columns:1fr 1fr}.steps-wrap::before{display:none}.pricing-grid{grid-template-columns:1fr}.anchor-box{flex-direction:column;text-align:center}.foot-inner{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}.promise-grid{grid-template-columns:1fr}.svc-hero{height:320px}}
@media(max-width:520px){.hero{padding:56px 20px 64px}.promo-bar span{display:none}.svc-hero{height:260px}}

/* ══════════════════════════════════════════════════════════════
   MODERN CLEAN LIGHT THEME — indigo / violet
   Overrides that flip dark blocks to light and refine accents.
   All class names & content are unchanged.
   ════════════════════════════════════════════════════════════ */

/* Top bar → light */
.topbar{background:#f8fafc;border-bottom:1px solid var(--border)}
.tleft,.tright{color:#475569}
.topbar a{color:#475569}
.topbar a:hover{color:var(--red)}
.socials a{border-color:#e5e7eb;color:#475569}
.socials a:hover{border-color:var(--red);color:var(--red)}

/* Header → clean hairline instead of gold bar */
header{border-bottom:1px solid var(--border);box-shadow:0 1px 2px rgba(15,23,42,.04),0 10px 30px rgba(15,23,42,.05)}
.btn-hdrcta:hover{box-shadow:0 10px 24px rgba(30, 58, 138,.28)}

/* Hero → light with soft indigo glow */
.hero{background:radial-gradient(1100px 520px at 82% -12%,#dbeafe 0%,rgba(237,233,254,0) 60%),radial-gradient(900px 500px at 0% 110%,#eff6ff 0%,rgba(238,242,255,0) 55%),linear-gradient(180deg,#fbfbfe 0%,#ffffff 100%);color:var(--text)}
.hero::before{display:none}
.hero-glow{background:radial-gradient(circle,rgba(56, 189, 248,.12) 0%,transparent 70%)}
.hero-tag{background:#eff6ff;border-color:#bfdbfe;color:#172554}
.hero h1 em{color:#172554}
.hero-sub{color:#1e3a8a}
.hero p{color:#475569}
.hero p strong{color:#0f172a}
.hero-btns .btn-hero-out{color:#172554;border-color:#bfdbfe;background:#fff}
.hero-btns .btn-hero-out:hover{border-color:#1e3a8a;background:#eff6ff}
.hstat{background:#fff;border:1px solid var(--border);box-shadow:0 8px 22px rgba(15,23,42,.05)}
.hstat-num{color:#1e3a8a}
.hstat-lbl{color:#475569}

/* Hero pricing panel → white card */
.hero-panel{background:#fff;border:1px solid var(--border);box-shadow:0 28px 64px rgba(15,23,42,.14)}
.hero-panel h3{color:#0f172a}
.panel-sub{color:#475569}
.price-display{background:linear-gradient(135deg,#1e3a8a,#38bdf8)}
.off-ribbon{background:#f59e0b;color:#fff}
.pf{color:#334155}
.panel-btn{background:#1e3a8a;color:#fff}
.panel-btn:hover{background:#172554}

/* Buttons — indigo glow instead of red */
.btn-hero-main:hover{box-shadow:0 10px 28px rgba(30, 58, 138,.35)}

/* Trust strip → indigo band (kept as one accent band) */
.trust-strip{background:linear-gradient(135deg,#1e3a8a,#172554)}

/* Steps */
.step-bub{box-shadow:0 6px 22px rgba(30, 58, 138,.22)}

/* Reviews — natural amber stars */
.stars{color:#f59e0b}
.rev-text::before{color:#dbeafe}

/* Feature icon tile */
.feat-ic{border:1px solid rgba(30, 58, 138,.16)}

/* Pricing cards — indigo emphasis */
.price-card.feat{box-shadow:0 10px 44px rgba(30, 58, 138,.16)}
.anchor-box{background:linear-gradient(135deg,#f0f9ff,#eff6ff);border-color:#bfdbfe}

/* Individual service page header → light */
.page-header{background:linear-gradient(140deg,#eff6ff,#f0f9ff);color:var(--text)}
.ph-text h1{color:#0f172a}
.ph-text h1 em{color:#172554}
.ph-text p{color:#475569}
.page-header .breadcrumb{color:#475569}
.page-header .breadcrumb a{color:#475569}
.page-header .breadcrumb a:hover{color:var(--red)}
.page-header .breadcrumb span{color:#172554}

/* CTA section → indigo→violet gradient */
.cta-section{background:linear-gradient(135deg,#1e3a8a 0%,#172554 100%)}
.btn-cta-w{color:#172554}

/* Toast */
.toast{border-left-color:var(--green)}

/* Footer accent underline stays indigo (token already updated) */
.foot-col ul li a:hover{color:#93c5fd}
.topbar a:hover,.foot-bottom a:hover{color:var(--red)}

/* ─────────────────────────────────────────────────────────────
   Accessibility + layout-stability additions
   ───────────────────────────────────────────────────────────── */

/* Visible keyboard focus. The design relied on :hover only, which left
   keyboard users with no indication of position. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Screen-reader-only text: available to assistive tech, invisible on screen. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot: hidden from people, still filled in by naive bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.error-msg {
  display: none;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.4);
  border-radius: 10px;
  padding: 13px 18px;
  text-align: center;
  color: #b91c1c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 12px;
}
.form-box .error-msg { color: #fca5a5; }
.ts-holder:not(:empty) { margin-top: 14px; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── CLS: reserve space before images decode ──
   Images carry width/height attributes; this keeps them fluid while
   preserving the intrinsic ratio so nothing reflows on load. */
img {
  max-width: 100%;
  height: auto;
}
.dropdown-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex: 0 0 44px;
}
/* The hero and service images previously had no reserved box, which was the
   single largest contributor to layout shift on both breakpoints. */
.svc-hero-img,
.hero-img,
.about-img,
.rel-card img,
.svc-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e2e8f0;
}
.foot-logo img,
.mobile-nav-logo img,
.logo-link img {
  aspect-ratio: auto;
}

/* ── Contrast: raise muted greys to meet WCAG AA (4.5:1) ── */
.foot-col ul li a,
.cl-item,
.cl-item a,
.cl-item span,
.foot-about-p,
.foot-nl p {
  color: #cbd5e1;
}
.foot-bottom,
.foot-bottom span,
.foot-bottom .fl a {
  color: #cbd5e1;
}

/* The newsletter sits on the dark footer, so its placeholder needs to go
   lighter rather than darker. */
.nl-form input::placeholder { color: #94a3b8; }

/* ── Heading tags in cards/sidebars changed h4 -> h2/h3 for a valid outline;
   keep the original visual weight. ── */
.svc-order-box h2{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16px;color:#fff;margin-bottom:6px}
.svc-includes h2{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--navy);margin-bottom:14px}
.svc-contact-box h2{font-family:'Montserrat',sans-serif;font-weight:700;font-size:13.5px;color:var(--navy);margin-bottom:10px}
.related-card-body h3{font-family:'Montserrat',sans-serif;font-weight:700;font-size:14px;color:var(--navy);margin-bottom:5px}

/* Cards and CTAs became real links/buttons instead of click-handled divs. */
.related-card{display:block;color:inherit}
.btn-order-svc,.btn-quote-svc,.btn-cta-w,.btn-cta-g,.btn-hdrcta{display:inline-block;text-decoration:none}
.btn-order-svc,.btn-quote-svc{display:block}
.faq-q{width:100%;background:none;border:none;text-align:left;font-family:'Montserrat',sans-serif}

/* The services dropdown previously opened on :hover only. Its links stayed in
   the tab order while invisible, so keyboard users focused things they could
   not see. Reveal it on focus as well. */
.nav-drop:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* The "Most Popular" pricing card is class="price-card feat", so it also
   matched the generic .feat{display:flex} rule used by the homepage feature
   rows -- which laid its icon, heading, price, feature list and button out in
   a single horizontal row instead of stacking them. .price-card.feat set only
   border and shadow, never display, so the flex rule won. Restate the block
   layout here (0,2,0 beats 0,1,0) so the featured card matches its siblings. */
.price-card.feat {
  display: block;
  gap: normal;
  align-items: normal;
}
