:root{
  --brand: #3c485a;
  --brand2: #444f61;
  --brand3: #2f3948;

  --bg: var(--brand);
  --text: #f6f8fc;
  --muted: rgba(246,248,252,0.72);
  --line: rgba(255,255,255,0.12);
  --glass: rgba(255,255,255,0.07);
  --glass2: rgba(255,255,255,0.10);

  --shadow: 0 20px 60px rgba(0,0,0,0.28);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body{
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 12% 10%, var(--brand2), var(--bg));
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.14), transparent 48%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.10), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0,0,0,0.28), transparent 55%);
}

.page{
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 16px 70px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-header-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo{
  height: 30px;
  width: auto;
  display: block;
}

.site-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nav-link{
  color: rgba(246,248,252,0.80);
  text-decoration: none;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}
.nav-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  color: rgba(246,248,252,0.96);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.07);
  color: rgba(246,248,252,0.92);
  text-decoration: none;
  font-size: 13px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}
.header-btn{
  background: rgba(246,248,252,0.92);
  color: #1b2230;
  border-color: rgba(246,248,252,0.92);
}
.header-btn:hover{
  background: rgba(246,248,252,0.96);
}

.icon-btn{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(246,248,252,0.92);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}

.mobile-only{ display: none; }

.hamburger{
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span{
  height: 2px;
  width: 100%;
  background: rgba(246,248,252,0.92);
  border-radius: 999px;
  display: block;
}

/* Mobile drawer */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 2000;
}
.nav-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(380px, 88vw);
  background: rgba(22, 28, 40, 0.65);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(255,255,255,0.14);
  z-index: 2100;
  transform: translateX(100%);
  transition: transform 260ms var(--ease2);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open{
  transform: translateX(0%);
}

.nav-drawer-head{
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.drawer-logo{
  height: 28px;
  width: auto;
  display: block;
}
.close-x{
  width: 18px;
  height: 18px;
  position: relative;
  display: block;
}
.close-x::before,
.close-x::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(246,248,252,0.92);
  border-radius: 999px;
  transform-origin: center;
}
.close-x::before{ transform: translate(-50%, -50%) rotate(45deg); }
.close-x::after{ transform: translate(-50%, -50%) rotate(-45deg); }

.nav-drawer-links{
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-link{
  text-decoration: none;
  color: rgba(246,248,252,0.90);
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.drawer-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}
.drawer-link.strong{
  background: rgba(246,248,252,0.92);
  color: #1b2230;
  border-color: rgba(246,248,252,0.92);
}

.nav-drawer-foot{
  margin-top: auto;
  padding: 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.drawer-foot-text{
  font-weight: 700;
  letter-spacing: 0.03em;
}
.drawer-foot-sub{
  margin-top: 6px;
  color: rgba(246,248,252,0.64);
  font-size: 12px;
}

/* Layout */
.hero{
  padding: 46px 0 24px;
  max-width: 920px;
}
.kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,248,252,0.72);
}
.title{
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.lead{
  margin: 0;
  max-width: 70ch;
  color: rgba(246,248,252,0.74);
  line-height: 1.7;
  font-size: 16px;
}

.section{
  margin-top: 42px;
}
.section-head{
  margin-bottom: 16px;
  max-width: 820px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.section-head p{
  margin: 0;
  color: rgba(246,248,252,0.68);
  line-height: 1.6;
}

/* Services grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card{
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 240ms var(--ease2), box-shadow 240ms var(--ease2), border-color 240ms var(--ease2), background 240ms var(--ease2);
}
.service-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.service-media{
  position: relative;
  background:
    radial-gradient(800px 500px at 30% 20%, rgba(255,255,255,0.14), transparent 55%),
    radial-gradient(800px 500px at 80% 80%, rgba(0,0,0,0.26), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon{
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img{
  width: 46px;
  height: 46px;
  display: block;
  opacity: 0.95;
}

.service-body{
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-top{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-domain{
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 16px;
}
.service-desc{
  color: rgba(246,248,252,0.70);
  line-height: 1.55;
  font-size: 14px;
  max-width: 46ch;
}
.service-cta{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(246,248,252,0.92);
  font-size: 13px;
}
.service-cta span{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms var(--ease);
}
.service-card:hover .service-cta span{
  transform: translateX(2px);
}

/* About blocks */
.about-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 18px;
}
.about-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.about-card p{
  margin: 0;
  color: rgba(246,248,252,0.68);
  line-height: 1.6;
}

/* Footer */
.footer{
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-title{
  font-weight: 800;
  letter-spacing: 0.03em;
}
.footer-sub{
  margin-top: 6px;
  color: rgba(246,248,252,0.64);
}
.footer-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{
  color: rgba(246,248,252,0.70);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover{
  background: rgba(255,255,255,0.08);
  color: rgba(246,248,252,0.92);
}
.footer-fine{
  margin-top: 14px;
  color: rgba(246,248,252,0.60);
  font-size: 12px;
}

.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease2), transform 700ms var(--ease2);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .title{ font-size: 44px; }
  .services-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .service-card{ grid-template-columns: 42% 58%; }
}
@media (max-width: 860px){
  .site-nav{ display: none; }
  .mobile-only{ display: inline-flex; }
}
@media (max-width: 560px){
  .title{ font-size: 36px; }
  .service-card{ grid-template-columns: 1fr; }
  .service-media{ min-height: 140px; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .service-card, .btn, .nav-link, .icon-btn{ transition: none; }
}
/* Stop horizontal scroll caused by drawer */
html, body{
  overflow-x: hidden;
}

/* Drawer must NEVER affect desktop layout */
.nav-overlay,
.nav-drawer{
  display: none;
}

/* Enable drawer only on mobile */
@media (max-width: 860px){
  .nav-overlay{
    display: block;
  }
  .nav-drawer{
    display: flex;
  }
}

/* Premium background override */
:root{
  --bg0: #0f1420;
  --bg1: #1a2232;
  --bg2: #2a3447;
  --brand: #3c485a;
}

body{
  background:
    radial-gradient(900px 600px at 12% 10%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(900px 600px at 85% 18%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(1200px 900px at 70% 90%, rgba(0,0,0,0.40), transparent 55%),
    linear-gradient(140deg, var(--bg0), var(--bg1) 45%, var(--bg2));
  color: var(--text);
}

/* Make header feel lighter on dark bg */
.site-header{
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

/* Cards slightly brighter */
.service-card,
.about-card{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.service-card:hover{
  background: rgba(255,255,255,0.08);
}

/* Fix ugly default link colors if any remain */
a{
  color: rgba(246,248,252,0.90);
}

a:hover{
  color: rgba(246,248,252,0.98);
}

/* Hero image should fully cover the card */
.hero-image{
  min-height: 520px;
}

.hero-image-bg{
  inset: -2px;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.08);
}

/* Stronger overlay so text pops, but still feels premium */
.hero-image::before{
  background:
    radial-gradient(1100px 700px at 24% 22%, rgba(255,255,255,0.75), rgba(255,255,255,0.08) 55%, transparent 70%),
    linear-gradient(90deg, rgba(8,12,20,0.70), rgba(8,12,20,0.28) 60%, rgba(8,12,20,0.12));
}

/* Make the inner content align nicer in the card */
.hero-image-inner{
  min-height: 520px;
  padding: 54px 54px;
}

@media (max-width: 980px){
  .hero-image{ min-height: 480px; }
  .hero-image-inner{ min-height: 480px; padding: 34px 24px; }
}

@media (max-width: 560px){
  .hero-image{ min-height: 520px; }
  .hero-image-inner{ min-height: 520px; padding: 26px 18px; }
}
/* Image hero */
.hero-image{
  position: relative;
  margin-top: 18px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.hero-image-bg{
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.04);
}

.hero-image::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 22% 20%, rgba(255,255,255,0.70), rgba(255,255,255,0.10) 55%, transparent 70%),
    linear-gradient(90deg, rgba(10,14,22,0.65), rgba(10,14,22,0.20) 55%, rgba(10,14,22,0.10));
  pointer-events: none;
}

.hero-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.hero-image-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 44px 44px;
}

.hero-image-copy{
  max-width: 560px;
}

.hero-label{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,248,252,0.70);
  margin-bottom: 10px;
}

.hero-h1{
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(246,248,252,0.96);
}

.hero-p{
  margin: 0;
  max-width: 62ch;
  color: rgba(246,248,252,0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hero-buttons{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Button variants */
.btn.primary{
  background: rgba(246,248,252,0.92);
  color: #1b2230;
  border-color: rgba(246,248,252,0.92);
}

.btn.primary:hover{
  background: rgba(246,248,252,0.98);
}

.btn.ghost{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: rgba(246,248,252,0.92);
}

.btn.ghost:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

@media (max-width: 980px){
  .hero-h1{ font-size: 44px; }
  .hero-image-inner{ padding: 34px 24px; }
}

@media (max-width: 560px){
  .hero-image{ min-height: 420px; }
  .hero-image-inner{ min-height: 420px; padding: 26px 18px; }
  .hero-h1{ font-size: 36px; }
}
/* ===============================
   CLEAN LIGHT THEME OVERRIDE
   Put this at the VERY bottom
================================ */

:root{
  --bg: #f5f7fb;
  --panel: #ffffff;
  --text: #0b1220;
  --muted: rgba(11,18,32,0.62);
  --line: rgba(11,18,32,0.10);
  --shadow: 0 16px 50px rgba(11,18,32,0.10);
  --shadow2: 0 10px 30px rgba(11,18,32,0.10);
  --accent: #3b4bff;
  --accent2: rgba(59,75,255,0.14);
}

body{
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; }

.page{
  max-width: 1200px;
}

/* Header clean */
.site-header{
  background: rgba(255,255,255,0.70);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand-logo{
  height: 22px;
  width: auto;
  display: block;
  filter: none;
}

.nav-link{
  color: rgba(11,18,32,0.78);
}

.nav-link:hover{
  color: rgba(11,18,32,0.92);
}

.btn.header-btn{
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(59,75,255,0.25);
}

.btn.header-btn:hover{
  filter: brightness(1.03);
}

/* Hero like ref */
.hero-clean{
  padding: 64px 0 22px;
}

.hero-clean-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-label{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
  margin-bottom: 12px;
}

.hero-h1{
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-p{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-actions{
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Clean CTA buttons */
.btn.primary{
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(59,75,255,0.24);
}

.btn.primary:hover{
  filter: brightness(1.03);
}

.btn.link{
  background: transparent;
  border: 0;
  color: rgba(11,18,32,0.80);
  padding: 10px 6px;
  border-radius: 10px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.btn.link:hover{
  color: rgba(11,18,32,0.95);
}

/* Hero image right */
.hero-media{
  border-radius: 18px;
  overflow: hidden;
  background: #e9eef7;
  border: 1px solid rgba(11,18,32,0.08);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  position: relative;
}

.hero-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Sections */
.section{
  padding: 26px 0 54px;
}

.section-head h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.section-head p{
  margin: 8px 0 0;
  color: var(--muted);
}

/* Services grid clean cards */
.services-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card{
  background: var(--panel);
  border: 1px solid rgba(11,18,32,0.08);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(11,18,32,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  color: inherit;
  display: grid;
  gap: 12px;
}

.service-card:hover{
  transform: translateY(-2px);
  border-color: rgba(11,18,32,0.14);
  box-shadow: 0 18px 40px rgba(11,18,32,0.10);
}

.service-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img{
  width: 26px;
  height: 26px;
  display: block;
}

.service-domain{
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.service-desc{
  color: var(--muted);
  line-height: 1.6;
}

.service-cta{
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
  color: var(--accent);
  font-weight: 700;
}

/* Footer clean */
.footer{
  border-top: 1px solid var(--line);
  background: transparent;
}

.footer-title{
  color: var(--text);
}

.footer-sub,
.footer-fine{
  color: rgba(11,18,32,0.60);
}

.footer-links a{
  color: rgba(11,18,32,0.70);
}

.footer-links a:hover{
  color: rgba(11,18,32,0.92);
}

/* Responsive */
@media (max-width: 980px){
  .hero-clean-grid{
    grid-template-columns: 1fr;
  }
  .hero-h1{
    font-size: 44px;
  }
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .hero-h1{
    font-size: 36px;
  }
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== Hero preview (right side) ===== */
.hero-media{
  border-radius: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-preview{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,0.10);
  background: #e9eef7;
  box-shadow: 0 18px 55px rgba(11,18,32,0.12);
  transform: translateY(2px);
  transition: transform 220ms ease, box-shadow 220ms ease;
  aspect-ratio: 16 / 10;
}

.hero-preview:hover{
  transform: translateY(0px);
  box-shadow: 0 26px 70px rgba(11,18,32,0.14);
}

.hero-preview img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-preview-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 20% 20%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  pointer-events: none;
}

.hero-preview-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(11,18,32,0.10);
  color: rgba(11,18,32,0.72);
  backdrop-filter: blur(10px);
}

/* ===== Hero spacing polish ===== */
.hero-clean{
  padding: 72px 0 26px;
}

.hero-clean-grid{
  gap: 46px;
}

.hero-h1{
  font-size: 62px;
  letter-spacing: -0.035em;
}

.hero-p{
  font-size: 16.5px;
}

/* ===== Services card: match ref ===== */
.services-grid{
  margin-top: 22px;
  gap: 20px;
}

.service-card{
  padding: 20px;
  border-radius: 18px;
  min-height: 170px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59,75,255,0.12);
}

.service-icon img{
  width: 28px;
  height: 28px;
}

.service-domain{
  margin-top: 2px;
  font-size: 18px;
}

.service-desc{
  margin-top: 6px;
  max-width: 40ch;
}

.service-cta{
  grid-column: 2 / 3;
  margin-top: 12px;
  justify-content: flex-end;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-cta{
  color: var(--accent);
}

.service-card:hover .service-cta{
  transform: translateX(2px);
  transition: transform 180ms ease;
}

/* ===== Section head polish ===== */
.section-head h2{
  font-size: 24px;
}

.section-head p{
  font-size: 14.5px;
}

/* Responsive polish */
@media (max-width: 980px){
  .hero-h1{ font-size: 48px; }
  .hero-clean{ padding: 56px 0 22px; }
}

@media (max-width: 560px){
  .hero-h1{ font-size: 38px; }
  .service-card{
    grid-template-columns: 56px 1fr

