:root{
  --brand:#004A7F;
  --brand-hover:#003b66;
  --brand-deep:#002742;
  --brand-light:rgba(0,74,127,.10);
  --green:#1f9d55;
  --green-hover:#178247;
  --text:#0f172a;
  --muted:#5b6778;
  --line:#e2e8f0;
  --bg:#f8fafc;
  --card:#ffffff;
  --shadow:0 12px 30px rgba(2,14,27,.08);
  --shadow-strong:0 24px 60px rgba(2,14,27,.16);
  --radius:22px;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  -webkit-tap-highlight-color:transparent;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* TOPBAR */

.topbar{
  background:var(--brand);
  color:#fff;
  font-size:14px;
}

.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  flex-wrap:wrap;
}

/* NAV */

.sticky-nav{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}

.brand{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
  font-weight:800;
  font-size:clamp(22px,2.2vw,30px);
  line-height:1;
  letter-spacing:-.03em;
}

.brand [data-brand-main]{
  color:var(--brand);
}

.brand [data-brand-accent]{
  color:var(--green);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:700;
  color:#334155;
}

.nav-links a{
  transition:color .2s ease;
}

.nav-links a:hover{
  color:var(--brand);
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:14px 22px;
  font-weight:800;
  transition:.2s ease;
  white-space:nowrap;
}

.btn i{
  font-size:16px;
}

.btn-brand{
  background:var(--brand);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-brand:hover{
  background:var(--brand-hover);
}

.btn-green{
  background:var(--green);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-green:hover{
  background:var(--green-hover);
}

.btn-white{
  background:#fff;
  color:#06243a;
  border:1px solid #dbe5ef;
  box-shadow:0 10px 24px rgba(2,14,27,.06);
}

.btn-white:hover{
  background:#f8fbff;
  border-color:#cbd7e3;
}

.btn-outline{
  background:#fff;
  color:var(--brand);
  border:1.5px solid var(--brand);
  box-shadow:none;
}

.btn-outline:hover{
  background:var(--brand-light);
  color:var(--brand);
}

.btn-outline:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(11,92,145,.12);
}

.menu-btn{
  display:none;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  padding:6px;
  color:var(--text);
}

.menu-btn i{
  display:block;
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
}

.mobile-menu.open{
  display:block;
}

.mobile-menu .container{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:14px 0;
}

.mobile-menu a{
  padding:12px 0;
  font-weight:700;
  color:#1e293b;
}

.mobile-menu-call{
  color:var(--brand) !important;
}

.mobile-menu-text{
  color:var(--green) !important;
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
}

.hero-split{
  background:
    radial-gradient(circle at top left, rgba(0,74,127,.09), transparent 36%),
    radial-gradient(circle at right center, rgba(31,157,85,.08), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #f3f8fc 52%, #eef5fa 100%);
  padding:72px 0 56px;
}

.hero-split::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.52) 0%, transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,.34) 100%);
}

.hero-inner{
  position:relative;
  z-index:1;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.16fr) minmax(0,.84fr);
  gap:40px;
  align-items:center;
}

.hero-content{
  max-width:760px;
  padding-top:8px;
}

.hero-eyebrow{
  display:none;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(0,74,127,.08);
  border:1px solid rgba(0,74,127,.10);
  color:var(--brand);
  font-size:14px;
  line-height:20px;
  font-weight:800;
}

.hero-title{
  margin:0 0 18px;
  max-width:18ch;
  font-size:clamp(42px,4.6vw,64px);
  line-height:.96;
  letter-spacing:-.045em;
  color:var(--text);
  text-wrap:balance;
}

.hero-title span{
  display:inline;
}

.hero-text{
  margin:0;
  color:var(--muted);
}

.hero-text-lead{
  max-width:640px;
  margin-bottom:28px;
  font-size:19px;
  line-height:1.6;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero-actions .btn{
  min-height:56px;
  padding-left:28px;
  padding-right:28px;
  border-radius:14px;
  font-size:16px;
}

.hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:12px 20px;
}

.hero-benefit{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  line-height:22px;
  color:#334155;
  font-weight:700;
}

.hero-benefit i{
  color:var(--green);
  font-size:16px;
}

.hero-urgency{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff4e8;
  border:1px solid #ffe0bd;
  color:#9a4b00;
  font-size:14px;
  font-weight:700;
  line-height:20px;
}

.hero-urgency i{
  color:#f97316;
}

.hero-visual{
  position:relative;
  width:100%;
  max-width:540px;
  justify-self:end;
}

.hero-visual-card{
  position:relative;
  width:100%;
  height:460px;
  border-radius:28px;
  overflow:visible;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow-strong);
}

.hero-visual-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  color:#0f172a;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  font-size:13px;
  font-weight:800;
  line-height:18px;
  backdrop-filter:blur(8px);
}

.hero-visual-badge i{
  color:var(--brand);
}

.hero-floating-card{
  position:absolute;
  left:-30px;
  bottom:24px;
  z-index:2;
  width:290px;
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.hero-rating{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:14px;
}

.hero-rating strong{
  font-size:28px;
  line-height:1;
  letter-spacing:-.04em;
  color:var(--text);
}

.hero-rating span{
  font-size:14px;
  line-height:20px;
  color:var(--muted);
  font-weight:600;
}

.hero-proof-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.hero-proof-list li{
  position:relative;
  padding-left:18px;
  color:#334155;
  font-size:14px;
  line-height:20px;
  font-weight:700;
}

.hero-proof-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
}

/* LEGACY HERO SUPPORT */

.hero h1{
  margin:0 0 8px;
  font-size:clamp(36px,6vw,68px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.hero h2{
  margin:0 0 18px;
  font-size:clamp(22px,3vw,34px);
  line-height:1.15;
  font-weight:700;
}

.hero p{
  margin:0 auto 30px;
  max-width:820px;
  font-size:clamp(18px,2.2vw,22px);
}

.hero .hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-points{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.hero-point{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:10px 14px;
  font-size:14px;
  backdrop-filter:blur(8px);
}

/* TRUST BAR */

.trust{
  background:#fff;
  border-bottom:1px solid #eef2f7;
}

.trust .container{
  display:flex;
  justify-content:center;
  gap:34px;
  flex-wrap:wrap;
  padding:22px 0;
  color:#334155;
  font-weight:700;
}

.trust .container > div{
  display:flex;
  align-items:center;
  gap:8px;
}

/* SECTIONS */

section{
  padding:82px 0;
}

.section-title{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-.02em;
  text-align:center;
}

.section-text{
  margin:0 auto 34px;
  max-width:760px;
  text-align:center;
  color:var(--muted);
  font-size:18px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:.2s ease;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(2,14,27,.10);
}

.center{
  text-align:center;
}

.icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  font-size:28px;
  font-weight:800;
}

.icon i{
  font-size:28px;
}

.icon-blue{
  background:var(--brand-light);
  color:var(--brand);
}

.icon-green{
  background:rgba(31,157,85,.12);
  color:var(--green);
}

.icon-red{
  background:rgba(220,38,38,.10);
  color:#dc2626;
}

.card h3{
  margin:0 0 12px;
  font-size:24px;
}

.card p{
  margin:0 0 18px;
  color:var(--muted);
}

.link{
  display:inline-block;
  font-weight:800;
  color:var(--brand);
}

/* SERVICES */

.services-section{
  background:#fff;
}

.services-head{
  margin-bottom:34px;
}

.services-featured{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-bottom:24px;
}

.service-feature-card{
  position:relative;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border:1px solid var(--line);
  border-radius:28px;
  padding:26px;
  box-shadow:var(--shadow);
}

.service-feature-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 12px;
  margin-bottom:18px;
  border-radius:999px;
  background:rgba(0,74,127,.10);
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.service-feature-card__badge--green{
  background:rgba(31,157,85,.12);
  color:var(--green);
}

.service-feature-card__icon{
  margin:0 0 16px;
}

.service-feature-card h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.03em;
}

.service-feature-card p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
}

.service-points{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.service-points li{
  position:relative;
  padding-left:18px;
  color:#334155;
  font-size:14px;
  line-height:1.45;
  font-weight:600;
}

.service-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
}

.service-feature-card .btn{
  min-height:52px;
  border-radius:14px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-mini-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:.2s ease;
  display:flex;
  flex-direction:column;
}

.service-mini-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(2,14,27,.10);
}

.service-mini-card__top{
  margin-bottom:12px;
}

.service-mini-card__top .icon{
  margin:0 0 14px;
  width:58px;
  height:58px;
}

.service-mini-card h3{
  margin:0;
  font-size:22px;
  line-height:1.15;
}

.service-mini-card p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.service-mini-card .link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:15px;
  line-height:1.4;
  font-weight:800;
}

.services-bottom-cta{
  margin-top:28px;
  background:#f1f7fb;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.services-bottom-cta__text h3{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.15;
  color:var(--text);
}

.services-bottom-cta__text p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

/* PRICING */

.pricing{
  background:#f1f7fb;
}

.pricing-factors{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:0 0 24px;
}

.pricing-factor{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  color:#334155;
  font-weight:700;
  box-shadow:var(--shadow);
}

.pricing-factor i{
  color:var(--brand);
  font-size:18px;
  flex:0 0 auto;
}

.pricing-grid{
  align-items:stretch;
}

.price-card{
  position:relative;
  padding:26px;
}

.price-card--featured{
  border-color:rgba(0,74,127,.18);
  box-shadow:0 18px 36px rgba(2,14,27,.10);
}

.price-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  margin-bottom:14px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(0,74,127,.10);
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.price-card h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.15;
}

.amount{
  font-size:36px;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:10px;
  color:var(--brand);
}

.price-card p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.price-points{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.price-points li{
  position:relative;
  padding-left:18px;
  color:#334155;
  font-size:14px;
  line-height:1.5;
  font-weight:600;
}

.price-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
}

.pricing-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  color:#334155;
  font-size:15px;
  box-shadow:var(--shadow);
}

.pricing-estimate-cta{
  margin-top:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:var(--shadow);
}

.pricing-estimate-cta__text h3{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.15;
  color:var(--text);
}

.pricing-estimate-cta__text p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

/* DARK SECTION */

.dark-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.05), transparent 34%),
    radial-gradient(circle at bottom right, rgba(31,157,85,.12), transparent 28%),
    linear-gradient(180deg, #062238 0%, #082a44 100%);
  color:#fff;
}

.dark-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 42%);
}

.dark-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.06fr) minmax(0, .94fr);
  gap:28px;
  align-items:start;
}

.dark-copy{
  max-width:720px;
}

.dark-section .section-title,
.dark-section .section-text{
  text-align:left;
  margin-left:0;
  margin-right:0;
}

.dark-section .section-title{
  max-width:13ch;
  margin-bottom:14px;
}

.dark-section .section-text{
  max-width:650px;
  margin-bottom:26px;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.65;
}

.check-list{
  display:grid;
  gap:12px;
}

.check-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:15px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.check-item strong{
  color:#fff;
}

.check-item div{
  color:rgba(255,255,255,.84);
  font-size:15px;
  line-height:1.6;
}

.tick{
  width:30px;
  height:30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:rgba(34,197,94,.18);
  color:#86efac;
  border:1px solid rgba(134,239,172,.22);
  font-weight:900;
  margin-top:1px;
}

.tick i{
  font-size:13px;
}

.stat-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  align-content:start;
}

.stat{
  min-height:136px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:22px;
  text-align:left;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(8px);
}

.stat strong{
  display:block;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.03em;
  margin-bottom:8px;
  color:#fff;
}

.stat span{
  color:rgba(255,255,255,.76);
  font-size:15px;
  line-height:1.45;
}

/* REVIEWS */

.reviews{
  background:#fff;
}

.stars{
  display:flex;
  gap:4px;
  color:#f59e0b;
  font-size:20px;
  margin-bottom:12px;
}

.review p{
  color:#334155;
}

.review small{
  display:block;
  margin-top:14px;
  color:#64748b;
}

/* CONTACT */

.contact-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.contact-note{
  text-align:center;
  margin-top:18px;
  color:var(--muted);
  font-size:15px;
}

/* FOOTER */

.site-footer{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.04), transparent 28%),
    radial-gradient(circle at bottom right, rgba(31,157,85,.10), transparent 24%),
    linear-gradient(180deg, #0b1526 0%, #0f172a 100%);
  color:#cbd5e1;
  padding:56px 0 28px;
  border-top:1px solid rgba(255,255,255,.06);
}

.site-footer__top{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:40px;
  align-items:start;
}

.site-footer__logo{
  display:inline-block;
  margin-bottom:14px;
  color:#fff;
  font-size:30px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.03em;
}

.site-footer__text{
  margin:0;
  max-width:640px;
  color:#94a3b8;
  font-size:16px;
  line-height:1.7;
}

.site-footer__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.site-footer__badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#e2e8f0;
  font-size:14px;
  font-weight:700;
}

.site-footer__badges i{
  color:#60a5fa;
}

.site-footer__nav{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.site-footer__col h3{
  margin:0 0 14px;
  color:#fff;
  font-size:15px;
  line-height:1.2;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.site-footer__col nav,
.site-footer__contact-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.site-footer__col a,
.site-footer__contact-item{
  color:#cbd5e1;
  font-size:15px;
  line-height:1.5;
  transition:color .2s ease, transform .2s ease;
}

.site-footer__col a:hover,
.site-footer__contact-item:hover{
  color:#fff;
  transform:translateX(2px);
}

.site-footer__contact-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.site-footer__contact-item i{
  width:18px;
  text-align:center;
  color:#60a5fa;
  flex:0 0 18px;
}

.site-footer__cta{
  margin-top:34px;
  padding:24px 26px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:rgba(255,255,255,.04);
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.site-footer__cta-text h3{
  margin:0 0 8px;
  color:#fff;
  font-size:24px;
  line-height:1.15;
}

.site-footer__cta-text p{
  margin:0;
  color:#cbd5e1;
  font-size:16px;
  line-height:1.65;
  max-width:760px;
}

.site-footer__cta-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  flex:0 0 auto;
}

.site-footer__bottom{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.site-footer__meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  color:#94a3b8;
  font-size:14px;
}

.site-footer__dot{
  color:#475569;
}

.site-footer__copy{
  margin:0;
  color:#94a3b8;
  font-size:14px;
}

/* MOBILE ACTION BAR */

.mobile-action-bar{
  display:none;
}

.mobile-action-icon{
  font-size:20px;
  line-height:1;
}

.mobile-action-icon i{
  font-size:20px;
  line-height:1;
}

/* FAQ */

.faq-preview{
  background:#fff;
  border-top:1px solid var(--line);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.faq-item h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.25;
}

.faq-item p{
  margin:0;
  color:var(--muted);
}

.faq-preview-cta{
  margin-top:28px;
  background:#f1f7fb;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.faq-preview-cta__text h3{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.15;
}

.faq-preview-cta__text p{
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.page-hero{
  padding:40px 0 24px;
  background:linear-gradient(180deg,#eef4f8 0%,#f8fbfd 100%);
  border-bottom:1px solid #e5e7eb;
}

.breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
  font-size:14px;
  color:var(--muted);
}

.breadcrumbs a{
  color:var(--brand);
  font-weight:700;
  text-decoration:none;
}

.page-hero__content{
  max-width:900px;
}

.page-hero__content--compact{
  display:block;
}

.page-hero__text{
  max-width:860px;
}

.page-hero__content h1{
  margin:0 0 16px;
  max-width:760px;
  font-size:clamp(40px,5vw,72px);
  line-height:.98;
  letter-spacing:-.04em;
  color:#0f172a;
}

.page-hero__content p{
  margin:0;
  max-width:820px;
  font-size:clamp(18px,2vw,24px);
  line-height:1.6;
  color:#334155;
}

.page-hero .hero-actions{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.page-hero .hero-actions .btn{
  min-width:260px;
  justify-content:center;
}

.page-hero + .trust{
  border-top:none;
}

.faq-nav-section{
  background:#fff;
}

.faq-topic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.faq-topic-card{
  text-align:center;
  transition:.2s ease;
}

.faq-topic-card h3{
  margin:0 0 8px;
}

.faq-topic-card p{
  margin:0;
}

.faq-list{
  display:grid;
  gap:22px;
  max-width:920px;
  margin:0 auto;
}

.faq-list .faq-item{
  padding:26px 28px;
}

.faq-list .faq-item h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}

.faq-list .faq-item p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.faq-cta-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* GALLERY */

.gallery{
  background:#ffffff;
  border-top:1px solid var(--line);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery-item{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:4/3;
  transition:.35s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
}

/* RESPONSIVE */

@media (max-width:1200px){
  .hero-grid{
    gap:32px;
  }

  .hero-content{
    max-width:700px;
  }

  .hero-title{
    font-size:clamp(40px,4.2vw,56px);
    max-width:17ch;
  }

  .hero-visual{
    max-width:500px;
  }

  .hero-visual-card{
    height:430px;
  }

  .hero-floating-card{
    width:260px;
    left:-18px;
  }
}

@media (max-width:1080px){
  .site-footer__top{
    grid-template-columns:1fr;
  }

  .site-footer__nav{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .site-footer__cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:1024px){
  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }

  .faq-topic-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .services-featured{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pricing-factors{
    grid-template-columns:1fr;
  }

  .dark-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .stat-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
    align-items:start;
  }

  .hero-content{
    max-width:100%;
    padding-top:0;
  }

  .hero-title{
    max-width:16ch;
    font-size:clamp(38px,6vw,52px);
    line-height:1;
  }

  .hero-title span{
    display:inline;
  }

  .hero-text-lead{
    max-width:680px;
  }

  .hero-visual{
    max-width:100%;
    justify-self:start;
  }

  .hero-visual-card{
    height:420px;
  }

  .hero-floating-card{
    left:16px;
    bottom:16px;
    width:240px;
  }
}

@media (max-width:860px){
  .nav-links,
  .desktop-call{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .faq-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:820px){
  .site-footer{
    padding:48px 0 24px;
  }

  .site-footer__logo{
    font-size:26px;
  }

  .site-footer__nav{
    grid-template-columns:1fr 1fr;
  }

  .site-footer__col:last-child{
    grid-column:1 / -1;
  }

  .site-footer__cta{
    padding:22px 20px;
  }

  .site-footer__cta-text h3{
    font-size:22px;
  }

  .site-footer__cta-actions{
    width:100%;
  }

  .site-footer__cta-actions .btn{
    min-width:0;
    width:100%;
    justify-content:center;
  }

  .site-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:768px){
  .topbar{
    display:none;
  }

  .mobile-action-bar{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:100;
    background:#fff;
    box-shadow:0 -2px 12px rgba(0,0,0,.10);
    padding-bottom:env(safe-area-inset-bottom);
    border-top:1px solid #edf2f7;
  }

  .mobile-action-bar a{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:66px;
    padding:8px 10px;
    font-weight:800;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.04em;
    text-align:center;
    line-height:1.2;
  }

  .mobile-action-bar a + a{
    border-left:1px solid #f1f5f9;
  }

  .mobile-text{
    color:var(--green);
  }

  .mobile-quote{
    color:var(--brand);
  }

  .mobile-quote span:last-child{
    max-width:120px;
    white-space:normal;
  }

  body{
    padding-bottom:76px;
  }

  .section-title,
  .section-text{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }

  .center{
    text-align:left;
  }

  .icon{
    margin-left:0;
    margin-right:0;
  }

  .brand{
    gap:6px;
    font-size:clamp(20px,6vw,26px);
  }

  .hero-split{
    padding:48px 0;
  }

  .hero-eyebrow{
    display:inline-flex;
  }

  .hero-title{
    font-size:34px;
    line-height:1.02;
    max-width:12ch;
    letter-spacing:-.035em;
    text-wrap:pretty;
  }

  .hero-title span{
    display:block;
  }

  .hero-text-lead{
    font-size:16px;
    line-height:1.58;
    margin-bottom:24px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
    min-width:0;
  }

  .hero-benefits{
    flex-direction:column;
    gap:10px;
  }

  .hero-visual-card{
    height:340px;
    border-radius:22px;
  }

  .hero-image{
    border-radius:22px;
  }

  .hero-visual-badge{
    top:12px;
    left:12px;
    padding:8px 12px;
    font-size:12px;
  }

  .hero-floating-card{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    padding:16px;
    border-radius:18px;
  }

  .hero-rating strong{
    font-size:24px;
  }

  .services-section .section-title,
  .services-section .section-text{
    text-align:left;
    margin-left:0;
    margin-right:0;
  }

  .service-feature-card{
    padding:24px;
    border-radius:24px;
  }

  .service-feature-card h3{
    font-size:26px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .check-item{
    padding:14px 15px;
  }

  .check-item div{
    font-size:15px;
    line-height:1.55;
  }

  .stat-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
  }

  .stat{
    min-height:118px;
    padding:18px;
    border-radius:18px;
  }

  .stat strong{
    font-size:20px;
    margin-bottom:6px;
  }

  .stat span{
    font-size:13px;
    line-height:1.35;
  }

  .services-bottom-cta,
  .pricing-estimate-cta,
  .faq-preview-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .services-bottom-cta .btn,
  .pricing-estimate-cta .btn,
  .faq-preview-cta .btn{
    width:100%;
    justify-content:center;
  }

  .page-hero{
    padding:28px 0 12px;
  }

  .breadcrumbs{
    margin-bottom:14px;
    font-size:13px;
  }

  .page-hero__content h1{
    max-width:none;
    font-size:clamp(34px,9vw,52px);
    line-height:1.02;
  }

  .page-hero__content p{
    font-size:18px;
    line-height:1.55;
  }

  .page-hero .hero-actions{
    margin-top:22px;
    flex-direction:column;
    align-items:stretch;
  }

  .page-hero .hero-actions .btn{
    width:100%;
    min-width:0;
  }

  .faq-topic-grid{
    grid-template-columns:1fr;
  }

  .faq-cta-buttons{
    width:100%;
    flex-direction:column;
  }

  .faq-cta-buttons .btn{
    width:100%;
    justify-content:center;
  }
}

@media (max-width:640px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:560px){
  .site-footer__nav{
    grid-template-columns:1fr;
    gap:18px;
  }

  .site-footer__badges{
    display:grid;
    grid-template-columns:1fr;
  }

  .site-footer__badges span{
    width:100%;
    justify-content:flex-start;
  }

  .site-footer__text{
    font-size:15px;
  }

  .site-footer__meta{
    gap:8px;
  }

  .site-footer__dot{
    display:none;
  }
}

@media (max-width:480px){
  .container{
    width:min(var(--max), calc(100% - 24px));
  }

  .hero-title{
    font-size:31px;
    max-width:11ch;
  }

  .hero-text-lead{
    font-size:15px;
  }

  .hero-visual-card{
    height:300px;
  }

  .hero-benefit{
    font-size:14px;
  }

  .hero-urgency{
    font-size:13px;
    width:100%;
    justify-content:center;
    border-radius:16px;
  }

  .tick{
    width:28px;
    height:28px;
  }

  .tick i{
    font-size:12px;
  }

  .stat{
    min-height:110px;
    padding:16px;
  }

  .stat strong{
    font-size:18px;
  }

  .stat span{
    font-size:12.5px;
  }

  .mobile-action-bar a{
    min-height:68px;
    font-size:9px;
    letter-spacing:.03em;
  }

  .mobile-quote span:last-child{
    max-width:110px;
  }
}

/* WHY SECTION ADDITIONS */

.why-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.why-cta-card{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  padding:26px;
  box-shadow:0 24px 50px rgba(0,0,0,.25);
}

.why-cta-card h3{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.02em;
}

.why-cta-card p{
  margin:0 0 18px;
  font-size:15px;
  color:rgba(255,255,255,.80);
  line-height:1.55;
}

.why-cta-card .btn{
  width:100%;
  justify-content:center;
  min-height:54px;
  font-size:16px;
}

@media (max-width:768px){
  .why-cta-card{
    padding:22px;
    border-radius:20px;
  }
}

/* ===== GALLERY IMPROVEMENTS ===== */

.gallery{
  background:linear-gradient(180deg,#ffffff 0%, #f7fafc 100%);
}

.gallery-item{
  position:relative;
  background:#fff;
}

.gallery-item figcaption{
  padding:12px 14px;
  font-size:14px;
  font-weight:700;
  color:#334155;
  border-top:1px solid var(--line);
  background:#fff;
}

.gallery-cta{
  margin-top:34px;
  padding:26px;
  border-radius:22px;
  background:#f1f7fb;
  border:1px solid var(--line);
  text-align:center;
}

.gallery-cta h3{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.02em;
}

.gallery-cta p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}

/* ===== BLOG PREVIEW ===== */

.blog-preview{
  background:linear-gradient(180deg,#f7fafc 0%, #ffffff 100%);
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.blog-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(2,14,27,.12);
}

.blog-card img{
  width:100%;
  height:210px;
  object-fit:cover;
}

.blog-card__content{
  padding:28px 26px 30px;
  display:flex;
  flex-direction:column;
  height:100%;
  gap:8px;
}

.blog-card__meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:6px;
}

.blog-card__date{
  font-size:12px;
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.blog-card__category{
  font-size:12px;
  font-weight:800;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.blog-card h3{
  margin:6px 0 14px;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.01em;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.blog-card h3 a{
  color:var(--text);
}

.blog-card h3 a:hover{
  color:var(--brand);
}

.blog-card p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.blog-card .link{
  margin-top:auto;
  font-size:15px;
  font-weight:800;
  color:var(--brand);
}

.blog-card--hero{
  grid-column:span 2;
}

.blog-card--hero img{
  height:260px;
}

.blog-preview-cta{
  margin-top:34px;
  text-align:center;
}

/* ===== RESPONSIVE ===== */

@media (max-width:1024px){
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .blog-card--hero{
    grid-column:span 1;
  }

  .blog-card--hero img{
    height:210px;
  }
}

@media (max-width:768px){
  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-card img{
    height:190px;
  }

  .blog-card__content{
    padding:24px 22px 26px;
    gap:6px;
  }

  .blog-card__meta{
    gap:10px;
    margin-bottom:4px;
  }

  .blog-card h3{
    margin:4px 0 12px;
    font-size:21px;
  }

  .blog-card p{
    margin:0 0 18px;
    line-height:1.65;
  }
}

/* ===== REVIEWS SECTION ===== */

.reviews{
  background:#ffffff;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.review-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(2,14,27,.12);
}

.review-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:var(--brand-light);
  color:var(--brand);
  font-size:22px;
  flex:0 0 auto;
}

.review-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.01em;
}

.review-card p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width:1024px){
  .reviews-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .reviews-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    padding:24px;
  }

  .review-icon{
    width:50px;
    height:50px;
    font-size:20px;
  }
}

.blog-post-body{
  font-size:18px;
  line-height:1.8;
  color:#1f2937;
}

.blog-post-body p{
  margin:0 0 22px;
}

.blog-post-body h2{
  margin:38px 0 16px;
  font-size:32px;
  line-height:1.25;
}

.blog-post-body h3{
  margin:30px 0 14px;
  font-size:24px;
  line-height:1.3;
}

.blog-post-body ul,
.blog-post-body ol{
  margin:0 0 24px 22px;
  padding:0;
}

.blog-post-body li{
  margin-bottom:10px;
}

.blog-post-body img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  display:block;
  margin:24px 0;
}

.blog-post-body blockquote{
  margin:24px 0;
  padding:16px 20px;
  border-left:4px solid #004A7F;
  background:#f8fafc;
  border-radius:12px;
}

.blog-post-body a{
  text-decoration:underline;
}

.blog-post-body strong{
  font-weight:700;
}

.page-hero--article{
  padding-bottom:30px;
}

.article-hero-wide{
  width:100%;
  padding:40px 60px 0;
}

.article-hero-inner{
  max-width:1200px;
}

.article-title{
  font-size:64px;
  line-height:1.05;
  margin:10px 0 18px;
  letter-spacing:-0.5px;
}

.article-intro{
  font-size:22px;
  line-height:1.6;
  max-width:900px;
  color:#4b5563;
}

.article-meta{
  margin-top:18px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
  opacity:.85;
}

@media (max-width:991px){
  .article-hero-wide{
    padding:28px 24px 0;
  }

  .article-title{
    font-size:46px;
  }

  .article-intro{
    font-size:20px;
  }
}

@media (max-width:767px){
  .article-hero-wide{
    padding:20px 16px 0;
  }

  .article-title{
    font-size:34px;
    line-height:1.1;
  }

  .article-intro{
    font-size:18px;
    line-height:1.55;
  }

  .article-meta{
    gap:10px;
    font-size:13px;
  }
}

.blog-cats{
  margin-bottom:34px;
  flex-wrap:wrap;
  gap:10px;
}

.blog-grid-featured{
  margin-bottom:40px;
}

.blog-pagination{
  justify-content:center;
}

.blog-page-indicator{
  padding:12px 18px;
  background:#fff;
  border-radius:10px;
  font-weight:600;
}

/* BLOG POST IMAGE */

.blog-post{
  max-width:980px;
  margin:0 auto;
}

.blog-post__image{
  margin-bottom:32px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-strong);
  background:#fff;
}

.blog-post__image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

@media (min-width:768px){
  .blog-post__image img{
    aspect-ratio:16/9;
  }
}

@media (max-width:767px){
  .blog-post__image{
    margin-bottom:24px;
    border-radius:18px;
  }
}
.service-feature-card__image{
  width:100%;
  height:200px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:18px;
}

.service-feature-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.services-section{
  scroll-margin-top:120px;
}
.gallery-head{
  margin-bottom:34px;
}

.gallery .section-title{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.gallery .section-text{
  max-width:860px;
}

.gallery-grid{
  align-items:stretch;
}

.gallery-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(2,14,27,.12);
}

.gallery-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.gallery-item figcaption{
  padding:14px 16px;
  font-size:15px;
  line-height:1.45;
  font-weight:800;
  color:#1e293b;
  background:#fff;
  border-top:1px solid var(--line);
}

.gallery-cta{
  margin-top:32px;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(180deg,#f1f7fb 0%, #ffffff 100%);
  border:1px solid var(--line);
  text-align:center;
  box-shadow:var(--shadow);
}

.gallery-cta h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.02em;
}

.gallery-cta p{
  margin:0 auto 18px;
  max-width:760px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}
.service-area{
  background:#fff;
  border-top:1px solid var(--line);
}

.service-area__head{
  margin-bottom:30px;
}

.service-area__box{
  background:linear-gradient(180deg,#f8fbfe 0%, #ffffff 100%);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}

.service-area__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.service-area__item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:12px 14px;
  text-align:center;
  font-weight:800;
  font-size:15px;
  line-height:1.3;
  color:#1e293b;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  transition:.2s ease;
}

.service-area__item:hover{
  transform:translateY(-2px);
  border-color:#cbd5e1;
  box-shadow:0 12px 24px rgba(2,14,27,.08);
}

@media (max-width:1024px){
  .service-area__grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media (max-width:768px){
  .service-area__box{
    padding:22px;
    border-radius:20px;
  }

  .service-area__grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .service-area__item{
    min-height:48px;
    font-size:14px;
    border-radius:14px;
  }
}

@media (max-width:480px){
  .service-area__grid{
    grid-template-columns:1fr 1fr;
  }
}
.gallery-slider{
  width:100%;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.gallery-item{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.gallery-item img{
  display:block;
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}

.gallery-item figcaption{
  padding:16px 18px;
  font-size:15px;
  line-height:1.5;
  font-weight:700;
  color:#1e293b;
}

@media (max-width:1024px){
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:768px){
  .gallery-slider{
    overflow:hidden;
    margin-right:-20px;
  }

  .gallery-grid{
    display:flex;
    gap:14px;
    overflow-x:auto;
    padding:2px 20px 10px 0;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .gallery-grid::-webkit-scrollbar{
    display:none;
  }

  .gallery-item{
    flex:0 0 82%;
    scroll-snap-align:start;
    border-radius:20px;
  }

  .gallery-item img{
    aspect-ratio: 4 / 3;
  }

  .gallery-item figcaption{
    padding:14px 16px;
    font-size:14px;
  }
}

@media (max-width:480px){
  .gallery-item{
    flex:0 0 86%;
  }
}