:root{
  --bg:#ffffff;
  --card:#f6f8fc;
  --muted:#475569;
  --text:#0f172a;
  --accent:#0b3d91;
  --accent2:#0a2f6e;
  --border:rgba(15,23,42,.12);
  --shadow:0 18px 50px rgba(2,6,23,.10);
  --header-h:96px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
}
a{color:var(--accent);text-decoration:none}
.main{min-height:calc(100vh - var(--header-h));display:block}
.container{width:100%;max-width:none;margin:0 auto;padding:18px 44px}
.content-max{max-width:1180px;margin:0 auto;width:100%}
.site-header{position:sticky;top:0;background:rgba(255,255,255,.90);border-bottom:1px solid var(--border);z-index:10}
.header-inner{display:flex;gap:14px;align-items:center;justify-content:space-between}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
}
.nav-toggle:hover{background:rgba(2,6,23,.03)}
.nav-toggle-ico{
  width:22px;
  height:2px;
  background:currentColor;
  border-radius:999px;
  position:relative;
  display:block;
}
.nav-toggle-ico::before,
.nav-toggle-ico::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:currentColor;
  border-radius:999px;
}
.nav-toggle-ico::before{top:-7px}
.nav-toggle-ico::after{top:7px}
.nav-overlay{display:none}
.brand{font-weight:800;letter-spacing:.2px;color:var(--text)}
.nav{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:center}
.nav-link{
  position:relative;
  padding:8px 10px;
  border-radius:10px;
  color:var(--text);
  opacity:.85;
  font-weight:600;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:4px;
  height:2px;
  background:var(--accent);
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left;
}
.nav-link:hover{
  opacity:1;
  color:var(--accent);
}
.nav-link:hover::after{transform:scaleX(1)}
.nav-link.active{
  opacity:1;
  color:var(--accent);
}
.nav-link.active::after{transform:scaleX(1)}
.nav-link:focus-visible{
  outline:2px solid rgba(11,61,145,.35);
  outline-offset:2px;
}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:12px;background:var(--accent);color:white;border:0}
.btn:hover{background:var(--accent2)}
.btn-small{padding:8px 10px;border-radius:10px;font-size:14px}
.card{background:transparent;border:none;border-radius:0;padding:18px 0;box-shadow:none}
.content{color:rgba(15,23,42,.92);line-height:1.7}
.content h2{margin-top:10px}
.site-footer{margin-top:26px;border-top:1px solid var(--border);background:rgba(2,6,23,.02)}
.footer-inner{display:flex;gap:14px;align-items:flex-start;justify-content:space-between}
.footer-title{font-weight:800}
.muted{color:var(--muted)}
.gallery{margin-top:16px;display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:12px}
.gallery-item{margin:0;background:#ffffff;border:1px solid var(--border);border-radius:14px;overflow:hidden}
.gallery-item img{display:block;width:100%;height:160px;object-fit:cover}
.gallery-item figcaption{padding:10px;color:var(--muted);font-size:14px}

/* Admin */
.admin-wrap{width:100%;max-width:none;margin:0 auto;padding:0 44px 18px 44px}
.form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.form-row label{font-weight:800;color:rgba(15,23,42,.85)}
input[type="text"],input[type="email"],input[type="password"],textarea,select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#ffffff;
  color:var(--text);
}
select{
  padding-right:40px;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15,23,42,.65) 50%),
    linear-gradient(135deg, rgba(15,23,42,.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 55%,
    calc(100% - 12px) 55%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus{
  outline:2px solid rgba(11,61,145,.25);
  outline-offset:2px;
}
textarea{min-height:220px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid var(--border);padding:10px;text-align:left}
.pill{display:inline-block;padding:3px 8px;border-radius:999px;border:1px solid var(--border);color:var(--muted);font-size:12px}
.row-actions{display:flex;gap:8px;flex-wrap:wrap}
.btn-secondary{background:#ffffff;border:1px solid var(--border);color:var(--text)}
.btn-secondary:hover{background:rgba(2,6,23,.04)}
.danger{background:#d64545}

/* Admin - Media library */
.media-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
  gap:14px;
  margin-top:14px;
}
.media-card{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}
.media-preview{
  background:rgba(2,6,23,.02);
  height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.media-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.media-preview video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.media-file{
  font-weight:900;
  color:rgba(15,23,42,.65);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.media-meta{padding:12px}
.media-name{
  font-weight:800;
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.media-linkrow{display:flex;gap:8px;align-items:center;margin-top:10px}
.media-link{
  flex:1;
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
}
.media-actions{margin-top:10px}

/* Admin keeps cards */
.admin-body{
  background:#f7f8fb;
  min-height:100vh;
}
.admin-body .card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}

.admin-fab-menu{
  position:fixed;
  top:14px;
  left:14px;
  z-index:90;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:rgba(15,23,42,.85);
  cursor:pointer;
  font-size:18px;
  line-height:1;
  display:none;
}
.admin-fab-menu:hover{background:rgba(2,6,23,.03)}
.admin-page-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin:14px 0 10px 0;
}
.admin-page-head h1{
  margin:0;
  font-size:22px;
  font-weight:900;
}
.admin-layout{
  display:grid;
  grid-template-columns: 248px 1fr;
  min-height:100vh;
}
.admin-layout--noside{grid-template-columns:1fr}
.admin-sidebar{
  background:linear-gradient(180deg,#111827 0%, #0b1220 100%);
  color:rgba(255,255,255,.92);
  border-right:1px solid rgba(255,255,255,.06);
  padding:12px 10px;
  position:sticky;
  top:0;
  height:100vh;
  display:flex;
  flex-direction:column;
}
.admin-sidebar-brand{
  display:block;
  padding:10px 10px 6px 10px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.02em;
  font-size:14px;
}
.admin-sidebar-brand span{color:rgba(255,255,255,.65);font-weight:800}
.admin-sidebar-head{
  font-size:10px;
  letter-spacing:.14em;
  font-weight:900;
  color:rgba(255,255,255,.55);
  padding:10px 10px 8px 10px;
}
.admin-sidebar-nav{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:6px;
  flex:1;
  overflow:auto;
}
.admin-side-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  font-weight:800;
  font-size:13px;
}
.admin-side-link:hover{background:rgba(255,255,255,.06)}
.admin-side-link.active{
  background:rgba(79,140,255,.18);
  border-color:rgba(79,140,255,.30);
}
.admin-side-dot{
  width:8px;height:8px;border-radius:999px;
  background:rgba(255,255,255,.35);
}
.admin-side-link.active .admin-side-dot{background:#4f8cff}
.admin-sidebar-foot{padding:10px;margin-top:auto}
.admin-sidebar-foot .btn-secondary{
  width:100%;
  justify-content:center;
  background:#ffffff;
  color:#0f172a;
  border:1px solid rgba(255,255,255,.14);
}
.admin-sidebar-foot .btn-secondary:hover{background:#f3f4f6}
.admin-side-user{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:10px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.admin-side-email{
  font-size:11px;
  color:rgba(255,255,255,.75);
  font-weight:800;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:140px;
}
.admin-overlay{display:none}
.admin-main{padding:10px 0 24px 0}
.admin-body h1{
  font-size:22px;
  margin:0 0 12px 0;
  font-weight:900;
}
.admin-body .table th{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(15,23,42,.55);
}
.admin-body .table td{vertical-align:middle}
.admin-body textarea{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:13px}

/* Header layout options */
.header-inner{min-height:var(--header-h)}
.nav.nav-center{flex:1;justify-content:center}
.nav.nav-right{margin-left:auto;justify-content:flex-end}
.brand-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text);
}
.brand-logo img{height:34px;max-width:220px;object-fit:contain;display:block}

/* Home: Hero */
.hero{
  position:relative;
  height:calc(100vh - var(--header-h));
  height:calc(100svh - var(--header-h));
  min-height:520px;
  background:#0b1220;
  background-image:var(--hero-bg);
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.22) 100%);
}
.hero-inner{position:relative;height:100%;display:flex;align-items:center;justify-content:center}
.hero-content{max-width:920px;text-align:center;color:#fff}
.hero-title{
  margin:0;
  font-size:clamp(42px, 5vw, 84px);
  font-weight:900;
  letter-spacing:.06em;
}
.hero-subtitle{
  margin:18px auto 0 auto;
  max-width:860px;
  line-height:1.8;
  font-size:clamp(14px, 1.5vw, 18px);
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
  font-style:italic;
}
.hero-actions{margin-top:22px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-hero{padding:12px 18px;border-radius:0;font-weight:800}
.btn-hero-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,.75);
  color:#fff;
}
.btn-hero-outline:hover{background:rgba(255,255,255,.10)}
.hero-dots{
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-dot{
  width:9px;height:9px;border-radius:999px;
  background:rgba(255,255,255,.45);
  border:0;
  cursor:pointer;
}
.hero-dot.active{background:#fff}

/* Home: Sections */
.section-head{padding:42px 0 22px 0;text-align:center}
.section-head h2{margin:0;font-size:clamp(24px, 2.5vw, 34px);font-weight:900}
.section-line{width:54px;height:3px;background:#0b3d91;margin:14px auto 0 auto;opacity:.9}
.features{background:#fff;padding:18px 0 22px 0}
.features-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
  padding-bottom:42px;
}
.feature-item{display:flex;gap:14px;align-items:flex-start}
.feature-ico{
  width:46px;height:46px;flex:0 0 46px;
  color:var(--accent);
  display:flex;align-items:center;justify-content:center;
}
.feature-ico::before{content:"";width:42px;height:42px;background:currentColor;mask-size:contain;mask-repeat:no-repeat;mask-position:center;-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;-webkit-mask-position:center;opacity:.95}
.feature-body{min-width:0;flex:1;display:flex;flex-direction:column}
.feature-title{font-weight:900;font-size:20px;line-height:1.2;margin-top:2px}
.feature-text{margin-top:8px;color:rgba(15,23,42,.78);line-height:1.7}

.stats{
  position:relative;
  padding:52px 0;
  background:#0b1220;
  background-size:cover;
  background-position:center;
}
.stats-overlay{position:absolute;inset:0;background:rgba(0,0,0,.62)}
.stats-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.stat-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:26px 16px;
  text-align:center;
}
.stat-ico{height:34px;margin-bottom:10px;color:var(--accent)}
.stat-ico::before{content:"";display:inline-block;width:34px;height:34px;background:currentColor;mask-size:contain;mask-repeat:no-repeat;mask-position:center;-webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;-webkit-mask-position:center}
.stat-value{font-size:44px;font-weight:900;color:#fff;line-height:1}
.stat-label{margin-top:8px;color:rgba(255,255,255,.86)}

.testimonials{padding:52px 0;background:#fff}
.kicker{font-weight:800;font-size:12px;letter-spacing:.15em;color:#f59e0b}
.testimonials-slider{
  position:relative;
  max-width:980px;
  margin:24px auto 0 auto;
  padding:0 56px;
}
.t-viewport{
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  border-radius:14px;
  scrollbar-width:none; /* Firefox */
  -ms-overflow-style:none; /* IE/Edge legacy */
}
.t-viewport::-webkit-scrollbar{height:0}
.t-track{display:flex;gap:18px}
.t-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  padding:0 2px;
}
.t-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}
.t-nav:hover{background:rgba(2,6,23,.03)}
.t-prev{left:-10px}
.t-next{right:-10px}
.t-dots{margin-top:18px;display:flex;gap:10px;justify-content:center}
.t-dot{
  width:34px;
  height:3px;
  border-radius:999px;
  border:0;
  background:rgba(15,23,42,.22);
  cursor:pointer;
}
.t-dot.active{background:var(--accent)}

@media (max-width: 900px){
  .testimonials-slider{padding:0 44px}
  .t-prev{left:-2px}
  .t-next{right:-2px}
}
.motion-off .t-viewport{scroll-behavior:auto}
.motion-on .t-viewport{scroll-behavior:smooth}
.t-viewport{cursor:grab}
.t-viewport.is-dragging{cursor:grabbing}

.testimonial-card{
  border-top:0;
  border-left:0;
  border-right:0;
  border-bottom:0;
  padding:18px;
  background:#fff;
  text-align:center;
}
.testimonial-name{font-weight:900}
.testimonial-role{color:rgba(15,23,42,.65);margin-top:4px}
.testimonial-text{margin-top:12px;line-height:1.8;color:rgba(15,23,42,.82)}

/* FAQ accordion */
.faq{
  margin-top:18px;
  margin-bottom:10px;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}
.faq-item{border-bottom:1px solid rgba(15,23,42,.10);padding:12px 0}
.faq-q{
  width:100%;
  padding:12px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:transparent;
  border:0;
  color:var(--text);
  font-weight:900;
  font-size:18px;
  text-align:left;
  cursor:pointer;
}
.faq-ico{
  width:18px;height:18px;position:relative;flex:0 0 18px;
}
.faq-ico::before,.faq-ico::after{
  content:"";
  position:absolute;inset:0;
  margin:auto;
  width:18px;height:2px;
  background:rgba(15,23,42,.65);
}
.faq-ico::after{transform:rotate(90deg)}
.faq-q[aria-expanded="true"] .faq-ico::after{transform:rotate(0deg)}
.faq-a{padding:0 0 12px 0}
.faq-a-inner{color:rgba(15,23,42,.78);line-height:1.8;padding-right:22px}

.page-title-center{
  text-align:center;
  font-size:clamp(28px, 3vw, 44px);
  font-weight:900;
  margin:18px 0 6px 0;
}

/* Gallery (like screenshot) */
.gallery2{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  padding-bottom:22px;
}
.g-item{
  border:0;
  background:transparent;
  padding:0;
  text-align:left;
  cursor:pointer;
}
.g-media{
  position:relative;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  overflow:hidden;
  aspect-ratio: 4 / 3;
}
.g-media img,.g-media video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.g-media video{pointer-events:none}
.g-embed{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
  color:rgba(15,23,42,.65);
  font-weight:900;
  letter-spacing:.04em;
}
.g-bar{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:5px;
  background:#f59e0b;
  transform:translateX(-55%);
}
.motion-on .g-item:hover .g-bar{transform:translateX(0);transition:transform .22s ease}
.g-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.g-play::before{
  content:"";
  width:56px;
  height:56px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.10);
}
.g-play::after{
  content:"";
  position:absolute;
  width:0;height:0;
  border-left:14px solid rgba(15,23,42,.85);
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:4px;
}
.g-cap{
  margin-top:10px;
  font-weight:800;
  color:rgba(15,23,42,.85);
}

@media (max-width: 980px){
  .gallery2{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .gallery2{grid-template-columns:1fr}
}

/* Lightbox */
.lb{position:fixed;inset:0;z-index:100;display:none}
.lb[data-open="1"]{display:block}
.lb-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.72)}
.lb-panel{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:20px;
}
.lb-body img{
  max-width:92vw;
  max-height:82vh;
  display:block;
}
.lb-title{color:rgba(255,255,255,.92);font-weight:800;text-align:center;max-width:92vw}
.lb-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}
.lb-nav{position:absolute;left:14px;right:14px;top:50%;transform:translateY(-50%);display:flex;justify-content:space-between;pointer-events:none}
.lb-btn{
  pointer-events:auto;
  width:46px;height:46px;border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.lb-anim .lb-panel{animation:fadeUp .22s ease both}

/* References */
.refs{background:#fff;padding:34px 0 54px 0;position:relative}
.refs::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 400px at 18% 20%, rgba(11,61,145,.08), transparent 60%),
    radial-gradient(520px 360px at 82% 30%, rgba(245,158,11,.10), transparent 60%);
  pointer-events:none;
}
.refs .content-max{position:relative}
.refs-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:14px 0 22px 0;
}
.refs-filter{
  border:0;
  background:transparent;
  padding:8px 10px;
  font-weight:900;
  color:rgba(15,23,42,.65);
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  border-bottom:2px solid transparent;
}
.refs-filter.active{color:rgba(15,23,42,.92);border-bottom-color:rgba(15,23,42,.92)}
.refs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.ref-card{
  text-decoration:none;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 14px 40px rgba(2,6,23,.06);
  padding:0;
}
.ref-card-inner{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
}
.ref-card img{
  max-width:100%;
  max-height:80px;
  object-fit:contain;
  display:block;
  filter:grayscale(0);
}
.motion-on .ref-card{transition:transform .18s ease, box-shadow .18s ease}
.motion-on .ref-card:hover{transform:translateY(-2px);box-shadow:0 18px 55px rgba(2,6,23,.10)}
.ref-placeholder{
  font-weight:900;
  color:rgba(15,23,42,.55);
  text-align:center;
}

@media (max-width: 980px){
  .refs-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .refs-grid{grid-template-columns:1fr}
}

/* Why us */
.why2{background:#fff;padding:46px 0 64px 0}
.why2-inner{text-align:center}
.why2-title{margin:0;font-size:clamp(28px,3.2vw,44px);font-weight:900}
.why2-sub{margin-top:10px;color:rgba(15,23,42,.70);font-size:18px}
.why2-lead{
  margin:18px auto 0 auto;
  max-width:920px;
  color:rgba(15,23,42,.78);
  line-height:1.95;
}
.why2-grid{
  margin:28px auto 0 auto;
  max-width:1100px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  text-align:left;
}
.why2-card{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:none;
  padding:16px;
  border-radius:14px;
}
.why2-ico{
  width:46px;height:46px;border-radius:999px;
  background:rgba(11,61,145,.10);
  display:flex;align-items:center;justify-content:center;
}
.why2-ico-inner{
  width:22px;height:22px;
  display:block;
  color:#0b3d91;
  mask-size:contain;mask-repeat:no-repeat;mask-position:center;
  -webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;-webkit-mask-position:center;
}
.why2-ico-inner::before{content:"";display:block;width:22px;height:22px;background:currentColor}
.why2-card-title{margin-top:10px;font-weight:900;font-size:18px}
.why2-card-text{margin-top:10px;color:rgba(15,23,42,.74);line-height:1.8}
.why2-timeline{
  margin-top:34px;
  position:relative;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
  padding:18px 0 8px 0;
  border:0;
  background:transparent;
  box-shadow:none;
  text-align:left;
}
.why2-wave{position:absolute;left:0;right:0;top:120px;height:160px;pointer-events:none;opacity:.98}
.why2-wave svg{width:100%;height:100%}
.why2-milestones{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:26px;
  align-items:start;
  padding:0 10px 0 10px;
}
.why2-ms{
  position:relative;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:16px 16px 14px 16px;
  min-height:132px;
  box-shadow:0 16px 40px rgba(2,6,23,.06);
}
.why2-ms:nth-child(even){margin-top:120px}
.why2-ms::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  background:rgba(11,61,145,.18);
}
.why2-ms:nth-child(odd)::after{bottom:-54px;height:54px}
.why2-ms:nth-child(even)::after{top:-54px;height:54px}
.why2-ms::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:14px;height:14px;border-radius:999px;
  background:#0b3d91;
  border:4px solid #fff;
  box-shadow:0 10px 22px rgba(2,6,23,.14);
}
.why2-ms:nth-child(odd)::before{bottom:-62px}
.why2-ms:nth-child(even)::before{top:-62px}
.why2-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;height:30px;border-radius:999px;
  background:#0b3d91;
  color:#fff;
  font-weight:900;
  font-size:13px;
}
.why2-ms-title{margin-top:10px;font-weight:900}
.why2-ms-text{margin-top:8px;color:rgba(15,23,42,.72);line-height:1.7;font-size:14px}
.why2-ms[data-color="blue"] .why2-badge{background:#2563eb}
.why2-ms[data-color="orange"] .why2-badge{background:#f59e0b}
.why2-ms[data-color="green"] .why2-badge{background:#16a34a}
.why2-ms[data-color="red"] .why2-badge{background:#ef4444}
.why2-ms[data-color="navy"] .why2-badge{background:#0b3d91}
.why2-ms[data-color="blue"]::before{background:#2563eb}
.why2-ms[data-color="orange"]::before{background:#f59e0b}
.why2-ms[data-color="green"]::before{background:#16a34a}
.why2-ms[data-color="red"]::before{background:#ef4444}
.why2-ms[data-color="navy"]::before{background:#0b3d91}

@media (max-width: 980px){
  .why2-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .why2-milestones{grid-template-columns:repeat(2, minmax(0,1fr))}
  .why2-ms:nth-child(even){margin-top:0}
  .why2-ms::before,.why2-ms::after{display:none}
  .why2-wave{display:none}
}
@media (max-width: 560px){
  .why2-grid{grid-template-columns:1fr}
  .why2-milestones{grid-template-columns:1fr}
}

/* Contact page block */
.contact-block{padding:12px 0 22px 0}
.contact-grid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.contact-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  padding:16px;
  text-align:center;
}
.contact-label{font-weight:900;color:rgba(15,23,42,.65);letter-spacing:.02em}
.contact-value{display:block;margin-top:10px;font-weight:900;color:var(--text)}

@media (max-width: 900px){
  .contact-grid{grid-template-columns:1fr}
}

/* Icons (mask SVG data-uris) */
[data-ico="machine"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v6h1a2 2 0 0 1 2 2v2h-3v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4H2v-2a2 2 0 0 1 2-2h1V5a2 2 0 0 1 2-2Zm0 2v14h10V5H7Zm-3 8v2h1v-2H4Zm15 0v2h1v-2h-1Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10a2 2 0 0 1 2 2v6h1a2 2 0 0 1 2 2v2h-3v4a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-4H2v-2a2 2 0 0 1 2-2h1V5a2 2 0 0 1 2-2Zm0 2v14h10V5H7Zm-3 8v2h1v-2H4Zm15 0v2h1v-2h-1Z'/%3E%3C/svg%3E")}
[data-ico="steam"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4c0 1.7-1 2.4-2 3.2-.8.6-1.6 1.2-1.6 2.3h-2c0-2.1 1.3-3.1 2.3-3.9.8-.6 1.3-1 1.3-1.6a2 2 0 0 0-4 0H8a4 4 0 0 1 4-4Zm-6 9h12a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2Zm0 2v7h12v-7H6Zm2 2h8v2H8v-2Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4c0 1.7-1 2.4-2 3.2-.8.6-1.6 1.2-1.6 2.3h-2c0-2.1 1.3-3.1 2.3-3.9.8-.6 1.3-1 1.3-1.6a2 2 0 0 0-4 0H8a4 4 0 0 1 4-4Zm-6 9h12a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2Zm0 2v7h12v-7H6Zm2 2h8v2H8v-2Z'/%3E%3C/svg%3E")}
[data-ico="stain"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c3 3 6 6.2 6 10a6 6 0 1 1-12 0c0-3.8 3-7 6-10Zm0 3c-2.2 2.4-4 4.7-4 7a4 4 0 1 0 8 0c0-2.3-1.8-4.6-4-7Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c3 3 6 6.2 6 10a6 6 0 1 1-12 0c0-3.8 3-7 6-10Zm0 3c-2.2 2.4-4 4.7-4 7a4 4 0 1 0 8 0c0-2.3-1.8-4.6-4-7Z'/%3E%3C/svg%3E")}
[data-ico="detergent"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4v3h-4V2Zm-1 5h6a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Zm0 2v11h6V9H9Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4v3h-4V2Zm-1 5h6a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Zm0 2v11h6V9H9Z'/%3E%3C/svg%3E")}
[data-ico="dry"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 4.8-5.2 10.2-6.2 11.2a1 1 0 0 1-1.6 0C10.2 19.2 5 13.8 5 9a7 7 0 0 1 7-7Zm0 2a5 5 0 0 0-5 5c0 3.1 3.6 7.5 5 9.1 1.4-1.6 5-6 5-9.1a5 5 0 0 0-5-5Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 4.8-5.2 10.2-6.2 11.2a1 1 0 0 1-1.6 0C10.2 19.2 5 13.8 5 9a7 7 0 0 1 7-7Zm0 2a5 5 0 0 0-5 5c0 3.1 3.6 7.5 5 9.1 1.4-1.6 5-6 5-9.1a5 5 0 0 0-5-5Z'/%3E%3C/svg%3E")}
[data-ico="fabric"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v4l2 2v14H5V8l2-2V2Zm2 2v3.2L7 9v11h10V9l-2-1.8V4H9Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v4l2 2v14H5V8l2-2V2Zm2 2v3.2L7 9v11h10V9l-2-1.8V4H9Z'/%3E%3C/svg%3E")}
[data-ico="tech"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5v2h3v2H6v-2h3v-2H6a2 2 0 0 1-2-2V5Zm2 0v10h12V5H6Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5v2h3v2H6v-2h3v-2H6a2 2 0 0 1-2-2V5Zm2 0v10h12V5H6Z'/%3E%3C/svg%3E")}
[data-ico="service"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7v4a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1V9a5 5 0 0 0-10 0v4a1 1 0 0 0 1 1h1v2H8a3 3 0 0 1-3-3V9a7 7 0 0 1 7-7Zm-4 17h8v3H8v-3Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7v4a3 3 0 0 1-3 3h-1v-2h1a1 1 0 0 0 1-1V9a5 5 0 0 0-10 0v4a1 1 0 0 0 1 1h1v2H8a3 3 0 0 1-3-3V9a7 7 0 0 1 7-7Zm-4 17h8v3H8v-3Z'/%3E%3C/svg%3E")}
[data-ico="price"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E")}
[data-ico="team"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11a4 4 0 1 0-8 0 4 4 0 0 0 8 0Zm-10 9a6 6 0 0 1 12 0v2H6v-2Zm13-7a3 3 0 0 0 0-6v2a1 1 0 1 1 0 2v2Zm1 7v2h2v-2a5 5 0 0 0-3-4.6v2.3c.6.5 1 1.3 1 2.3Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 11a4 4 0 1 0-8 0 4 4 0 0 0 8 0Zm-10 9a6 6 0 0 1 12 0v2H6v-2Zm13-7a3 3 0 0 0 0-6v2a1 1 0 1 1 0 2v2Zm1 7v2h2v-2a5 5 0 0 0-3-4.6v2.3c.6.5 1 1.3 1 2.3Z'/%3E%3C/svg%3E")}

@media (max-width: 980px){
  .features-grid{grid-template-columns:1fr 1fr}
  .stats-grid{grid-template-columns:1fr 1fr}
  .testimonials-grid{grid-template-columns:1fr}
}

/* Footer (dark like example) */
.site-footer{
  margin-top:0;
  background:linear-gradient(180deg,#0b0f17 0%, #0a0e14 100%);
  color:#e5e7eb;
  border-top:none;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:26px;
  padding-top:38px;
  padding-bottom:34px;
}
.footer-brand{font-weight:800;font-size:20px;color:#fff}
.footer-text{margin-top:14px;line-height:1.8;color:rgba(229,231,235,.82)}
.footer-subtitle{margin-top:26px;font-weight:800;color:#fff}
.footer-list{list-style:none;padding:0;margin:14px 0 0 0;display:flex;flex-direction:column;gap:10px}
.footer-list a{color:rgba(229,231,235,.88)}
.footer-list a:hover{color:#fff;text-decoration:underline}
.footer-social{display:flex;gap:10px;margin-top:12px}
.social-link{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  color:#fff;background:rgba(255,255,255,.04);
}
.social-link:hover{background:rgba(255,255,255,.08)}
.footer-contact{margin-top:14px;display:flex;flex-direction:column;gap:10px;color:rgba(229,231,235,.88)}
.footer-contact a{color:rgba(229,231,235,.92)}
.footer-contact a:hover{color:#fff;text-decoration:underline}
.contact-row{display:flex;gap:10px;align-items:flex-start}
.contact-ico{width:22px;flex:0 0 22px;opacity:.9}
.footer-bottom{border-top:1px solid rgba(255,255,255,.10);padding:14px 0;color:rgba(229,231,235,.72)}
.footer-bottom-inner{display:flex;justify-content:center;text-align:center}

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  width:62px;
  height:62px;
  border-radius:999px;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 40px rgba(34,197,94,.25);
  border:1px solid rgba(255,255,255,.25);
  z-index:50;
}
.wa-float:hover{filter:brightness(1.05)}

/* Contact map */
.map-bleed{margin-top:0;width:100%}
.map-frame{
  height:620px;
  background:#e5e7eb;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  position:relative;
}
.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.map-contact{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  background:rgba(255,255,255,.92);
  color:rgba(15,23,42,.92);
  padding:12px 14px;
  font-size:14px;
  line-height:1.6;
  max-width:320px;
  border:1px solid rgba(15,23,42,.10);
}
.map-contact a{color:rgba(15,23,42,.92);text-decoration:none}
.map-contact a:hover{text-decoration:underline}
.map-contact-row{display:flex;gap:8px;align-items:flex-start}
.map-contact-ico{width:18px;flex:0 0 18px;opacity:.95}

@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:18px}
  .map-frame{height:520px}
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns:1fr}
  .footer-col{max-width:560px;margin-left:auto;margin-right:auto;text-align:center}
  .footer-text{margin-left:auto;margin-right:auto}
  .footer-social{justify-content:center}
  .footer-list{align-items:center}
  .footer-contact{align-items:center}
  .contact-row{justify-content:center}
  .wa-float{right:14px;bottom:14px;width:56px;height:56px}
  .map-frame{height:440px}
  .map-contact{left:14px;right:14px;max-width:none}
}

@media (max-width: 820px){
  :root{--header-h:76px}
  .container{padding:16px 18px}
  .admin-wrap{padding:0 18px 18px 18px}

  .nav-toggle{display:inline-flex}
  .nav{
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    z-index:11;
    padding:14px 18px 18px;
    background:rgba(255,255,255,.98);
    border-bottom:1px solid var(--border);
    transform:translateY(-110%);
    opacity:0;
    pointer-events:none;
    transition:transform .18s ease, opacity .18s ease;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    max-height:calc(100svh - var(--header-h));
    overflow:auto;
    -webkit-overflow-scrolling:touch;
  }
  .nav-link{padding:12px 12px;border-radius:12px}
  .nav-link::after{left:12px;right:12px;bottom:8px}
  .nav-open .nav{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .nav-overlay{
    display:none;
    position:fixed;
    inset:var(--header-h) 0 0 0;
    background:rgba(2,6,23,.22);
    z-index:9;
  }
  .nav-open .nav-overlay{display:block}

  .hero-dots{display:none}
  .hero{min-height:460px}

  .admin-layout{grid-template-columns:1fr}
  .admin-fab-menu{display:inline-flex;align-items:center;justify-content:center}
  .admin-sidebar{
    position:fixed;
    top:0;
    left:0;
    width:280px;
    height:100vh;
    transform:translateX(-105%);
    transition:transform .18s ease;
    z-index:80;
  }
  .admin-sidebar-open .admin-sidebar{transform:translateX(0)}
  .admin-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:70;
  }
  .admin-sidebar-open .admin-overlay{display:block}
}

@media (max-width: 560px){
  .hero{min-height:420px}
  .hero-title{letter-spacing:.04em}
}

@media (max-width: 560px){
  .hero-content{padding:0 4px}
  .hero-title{
    font-size:clamp(34px, 10vw, 48px);
    line-height:1.05;
  }
  .hero-subtitle{
    max-width:520px;
    font-size:clamp(13px, 3.6vw, 15px);
    line-height:1.7;
  }
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .btn-hero{
    width:100%;
    max-width:320px;
    margin-left:auto;
    margin-right:auto;
  }

  .section-head{padding:30px 0 16px 0}

  .features-grid{
    grid-template-columns:1fr;
    gap:22px;
    padding-bottom:34px;
  }
  .feature-title{font-size:18px}

  .stats-grid{grid-template-columns:1fr}
  .stat-value{font-size:38px}
}

/* About page (simple) */
.about-simple{background:#fff;padding:58px 0 66px 0}
.about-simple-inner{text-align:center}
.about-simple-title{
  margin:0;
  font-size:clamp(28px, 3.2vw, 44px);
  font-weight:900;
  letter-spacing:-.02em;
}
.about-simple-sub{
  margin-top:10px;
  font-size:18px;
  color:rgba(15,23,42,.72);
}
.about-simple-text{
  margin:18px auto 0 auto;
  max-width:920px;
  color:rgba(15,23,42,.78);
  line-height:1.95;
  font-size:16px;
}
.about-cards{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}
.about-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 40px rgba(2,6,23,.08);
  padding:22px 18px;
  text-align:center;
  flex:1 1 240px;
  max-width:280px;
}
.about-card-ico{
  width:56px;height:56px;
  border-radius:999px;
  background:rgba(11,61,145,.10);
  margin:0 auto 14px auto;
  display:flex;align-items:center;justify-content:center;
}
.about-card-ico-inner{
  width:26px;height:26px;
  display:block;
  color:var(--accent);
  position:relative;
  mask-size:contain;mask-repeat:no-repeat;mask-position:center;
  -webkit-mask-size:contain;-webkit-mask-repeat:no-repeat;-webkit-mask-position:center;
}
.about-card-ico-inner::before{
  content:"";
  display:block;
  width:26px;
  height:26px;
  background:currentColor;
}
.about-card-title{font-weight:900;font-size:18px}
.about-card-text{margin-top:10px;color:rgba(15,23,42,.72);line-height:1.75;font-size:14px}

/* About: Istanbul service area */
.about-area{background:#fff;padding:0 0 70px 0}
.about-area-title{
  margin:0;
  text-align:center;
  font-size:clamp(22px, 2.6vw, 32px);
  font-weight:900;
}
.about-area-text{
  margin:12px auto 0 auto;
  text-align:center;
  max-width:900px;
  color:rgba(15,23,42,.76);
  line-height:1.85;
}
.about-area-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:18px;
  align-items:start;
}
.about-area-mapframe{
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  overflow:hidden;
  background:rgba(2,6,23,.02);
  min-height:380px;
}
.about-area-mapframe iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
  display:block;
}
.about-area-mapframe--placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(15,23,42,.55);
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.about-area-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:flex-start;
  justify-content:flex-start;
}
.district-chip{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight:800;
  font-size:13px;
  color:rgba(15,23,42,.82);
}
.about-area-seo{
  margin-top:16px;
  color:rgba(15,23,42,.72);
  line-height:1.75;
  font-size:14px;
}

/* Blog */
.page-title-center{margin:0;padding:34px 0 0 0;text-align:center;font-size:clamp(28px,3vw,44px);font-weight:900}
.page-sub-center{margin:10px auto 0 auto;text-align:center;max-width:740px}
.blog{padding:0 0 56px 0;background:#fff}
.blog-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.blog-card{
  display:block;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  color:var(--text);
}
.blog-cover{height:180px;background:rgba(2,6,23,.02)}
.blog-cover img{width:100%;height:100%;object-fit:cover;display:block}
.blog-body{padding:14px}
.blog-date{font-size:12px;color:rgba(15,23,42,.55);letter-spacing:.04em;text-transform:uppercase}
.blog-title{margin-top:8px;font-weight:900;font-size:18px;line-height:1.25}
.blog-excerpt{margin-top:10px;color:rgba(15,23,42,.74);line-height:1.7}
.blog-more{margin-top:12px;color:var(--accent);font-weight:800}
.motion-on .blog-card{transition:transform .18s ease, box-shadow .18s ease}
.motion-on .blog-card:hover{transform:translateY(-2px);box-shadow:0 18px 50px rgba(2,6,23,.10)}

.blog-post{padding:20px 0 62px 0;background:#fff}
.blog-post-head{text-align:center;padding:18px 0 10px 0}
.blog-post-kicker{font-weight:900;letter-spacing:.18em;color:rgba(11,61,145,.75);font-size:11px}
.blog-post-title{margin:10px 0 0 0;font-size:clamp(28px,3.2vw,46px);font-weight:900}
.blog-post-cover{margin:22px 0 0 0;border-radius:18px;overflow:hidden;background:rgba(2,6,23,.02)}
.blog-post-cover img{width:100%;height:auto;display:block}
.blog-post-content{margin-top:18px}

@media (max-width: 980px){
  .blog-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .blog-grid{grid-template-columns:1fr}
}

[data-ico="quality"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E")}
[data-ico="clock"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm1 3v5.6l3.2 1.9-1 1.7L11 14V7h2Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm1 3v5.6l3.2 1.9-1 1.7L11 14V7h2Z'/%3E%3C/svg%3E")}
[data-ico="shield"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1 3 5v6c0 5 3.8 9.7 9 11 5.2-1.3 9-6 9-11V5l-9-4Zm0 2.2L19 6v5c0 4-2.8 7.8-7 9-4.2-1.2-7-5-7-9V6l7-2.8Z'/%3E%3C/svg%3E")}

@media (max-width: 980px){
  .about-card{max-width:none}
  .about-area-grid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .about-cards{gap:14px}
}

/* Animations (toggleable) */
.motion-on .card{animation:fadeUp .55s ease both}
.motion-on h1{animation:fadeIn .5s ease both}
.motion-on .nav-link{transition:color .18s ease, opacity .18s ease}
.motion-on .nav-link::after{transition:transform .22s ease}

.motion-off .nav-link::after{transition:none}
.motion-on .btn{transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease}
.motion-on .btn:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(11,61,145,.18)}
.motion-on .gallery-item{animation:popIn .45s ease both}
.motion-on .gallery-item:nth-child(2n){animation-name:fadeIn}
.motion-on .gallery-item:nth-child(3n){animation-name:fadeUp}

@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes fadeUp{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes popIn{from{opacity:0;transform:scale(.98)}to{opacity:1;transform:scale(1)}}

.motion-off *{
  animation:none !important;
  transition:none !important;
  scroll-behavior:auto !important;
}

@media (prefers-reduced-motion: reduce){
  *{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}
