:root{
  --bg:#f6f7f4;
  --bg-soft:#eef2f5;
  --text:#080b12;
  --muted:#6f7782;
  --line:#e1e6ea;
  --card:#ffffff;
  --glass:rgba(255,255,255,.72);
  --green:#0b9f78;
  --blue:#1d73ff;
  --radius:26px;
  --shadow:0 28px 70px rgba(20,30,40,.10);
  --font:Inter,Arial,Helvetica,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  padding-bottom:130px;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}

.page{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}
.section{
  padding:90px 0;
}
.center{text-align:center}
.eyebrow{
  font-size:11px;
  letter-spacing:5px;
  color:#8c929a;
  text-transform:uppercase;
  margin-bottom:16px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(56px,9vw,110px);
  line-height:.92;
  letter-spacing:-4px;
}
h2{
  font-size:clamp(42px,6vw,72px);
  line-height:.95;
  letter-spacing:-3px;
}
h3{
  font-size:24px;
  line-height:1.05;
  letter-spacing:-1px;
}
p{
  color:var(--muted);
  line-height:1.55;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 22px;
  border-radius:999px;
  border:0;
  background:#050505;
  color:#fff;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}
.btn.blue{background:var(--blue)}
.mini-label{
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
}
.soft-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(210,218,224,.8);
  border-radius:32px;
  box-shadow:var(--shadow);
}
.card-img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:18px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

/* Bottom Navigation */
.bottom-nav{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:min(760px,calc(100% - 32px));
  z-index:50;
}
.nav-shell{
  position:relative;
  display:grid;
  grid-template-columns:96px 1fr 132px;
  align-items:center;
  min-height:72px;
  padding:8px 10px 8px 14px;
  border-radius:26px;
  background:rgba(246,248,248,.72);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 20px 55px rgba(15,25,35,.18);
  backdrop-filter:blur(22px) saturate(120%);
}
.nav-logo img{
  width:76px;
  height:58px;
  object-fit:contain;
}
.nav-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  min-width:0;
}
.nav-links a,
.product-trigger{
  border:0;
  background:transparent;
  padding:10px 0;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
  white-space:nowrap;
}
.nav-links a:hover,
.product-trigger:hover{color:var(--green)}
.nav-contact{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  height:52px;
  width:120px;
  border-radius:18px;
  background:#fff;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
}
.nav-toggle{display:none}
.product-wrap{position:relative}
.product-menu{
  position:absolute;
  left:50%;
  bottom:calc(100% + 18px);
  transform:translate(-50%,12px);
  width:380px;
  padding:16px;
  border-radius:30px;
  background:rgba(225,229,231,.82);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 24px 60px rgba(15,25,35,.18);
  backdrop-filter:blur(22px);
  opacity:0;
  pointer-events:none;
  transition:.2s ease;
}
.product-wrap:hover .product-menu,
.product-wrap:focus-within .product-menu,
.product-menu.open{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}
.product-menu a{
  display:block;
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.58);
}
.product-menu a+a{margin-top:10px}
.product-menu strong{
  display:block;
  font-size:22px;
  margin-bottom:8px;
}
.product-menu span{
  color:var(--muted);
  line-height:1.4;
}

/* Hero */
.home-hero{
  padding:70px 0 90px;
}
.brand-title{
  display:flex;
  align-items:flex-end;
  gap:8px;
}
.brand-title h1{
  margin-bottom:16px;
}
.brand-title span{
  margin-bottom:30px;
}
.hero-copy{
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:26px;
}
.hero-copy p{max-width:560px}
.hero-image{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}
.hero-image img{
  width:100%;
  height:360px;
  object-fit:cover;
}
.page-hero{
  min-height:720px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-radius:0 0 32px 32px;
}
.page-hero.bg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.page-hero.bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(246,247,244,.9),rgba(246,247,244,.35));
  z-index:1;
}
.page-hero .page{
  position:relative;
  z-index:2;
}
.page-hero h1{
  max-width:760px;
  font-size:clamp(56px,8vw,90px);
}
.page-hero p{max-width:520px}

/* Home Cards */
.domain-card,
.capability-card,
.offer-card,
.use-card,
.setup-card{
  min-height:270px;
}
.domain-card img,
.capability-card img,
.offer-card img,
.use-card img,
.setup-card img{
  height:110px;
  width:100%;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:16px;
}
.capability-card{box-shadow:var(--shadow)}
.offer-card{padding:18px}
.offer-card img{height:150px}

/* Services */
.service-grid-card{
  padding:22px;
  min-height:260px;
}
.service-grid-card img{
  height:120px;
  width:100%;
  object-fit:cover;
  border-radius:16px;
  margin:16px 0;
}
.feature-section{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:70px;
  align-items:center;
}
.feature-section.reverse{
  grid-template-columns:1fr .9fr;
}
.feature-card{padding:24px}
.feature-card img{
  height:330px;
  width:100%;
  object-fit:cover;
  border-radius:22px;
  margin-bottom:18px;
}
.pills{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.pill{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef0f0;
  font-size:12px;
  font-weight:700;
}

/* About */
.about-box{
  padding:36px;
  border:1px solid var(--line);
  background:#fff;
}
.about-box img{
  height:360px;
  width:100%;
  object-fit:cover;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.process-card{
  min-height:210px;
  padding:34px;
}
.process-card.highlight{
  background:#dff0ff;
  border-color:#a8d4ff;
}
.statement{
  display:flex;
  align-items:center;
  gap:24px;
  padding:28px 34px;
  margin-top:34px;
}
.statement-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:#24314d;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
}

/* Contact */
.contact-wrap{
  min-height:680px;
  display:grid;
  place-items:center;
}
.contact-panel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  width:min(980px,calc(100% - 40px));
  padding:26px;
}
.contact-info,
.contact-form{
  padding:34px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
}
.badge{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#e8f2ff;
  color:#1d73ff;
  font-size:11px;
  font-weight:900;
  margin-bottom:18px;
}
.email-box{
  display:flex;
  gap:16px;
  align-items:center;
  padding:18px;
  border-radius:18px;
  background:#e1f2ff;
  margin:28px 0;
}
.email-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:#1673ff;
  color:#fff;
  display:grid;
  place-items:center;
}
.form-row{margin-bottom:14px}
label{
  display:block;
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}
input,textarea{
  width:100%;
  border:1px solid #dae3ef;
  border-radius:14px;
  background:#f5f8fc;
  padding:14px;
  outline:none;
}
textarea{min-height:110px;resize:vertical}

/* Product Pages */
.hero-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:38px;
}
.hero-glass-card{
  padding:18px;
  min-height:112px;
  border-radius:16px;
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.7);
}
.product-spec-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  gap:22px;
}
.spec-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.spec-row span:first-child{color:var(--muted)}
.spec-row span:last-child{text-align:right;font-weight:700}
.product-shot{
  max-height:360px;
  margin:20px auto;
  object-fit:contain;
}
.coming-soon{
  position:absolute;
  right:22px;
  bottom:22px;
  padding:12px 22px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#777;
  font-weight:900;
  font-size:13px;
}
.touch-hero-img{
  position:relative;
  overflow:hidden;
  border-radius:24px;
}

/* Footer */
.site-footer{
  padding:70px 0 46px;
  background:#f1f4f6;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid #d9dee3;
}
.footer-top h3{
  font-size:20px;
  margin-bottom:12px;
}
.footer-contact h4{
  margin:0 0 14px;
  color:#9aa1aa;
  font-size:12px;
  letter-spacing:3px;
}
.footer-contact p{margin:0 0 12px;color:#111}
.copyright{
  text-align:center;
  padding-top:22px;
  font-size:12px;
  color:#8a9098;
}

/* Reveal kept visible so content never disappears if JS fails */
.reveal{
  opacity:1;
  transform:none;
  transition:.55s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media(max-width:900px){
  body{padding-bottom:110px}
  .page{width:min(100% - 28px,1180px)}
  .section{padding:64px 0}
  h1{letter-spacing:-2px}
  h2{letter-spacing:-2px}
  .grid-2,.grid-3,.grid-4,
  .feature-section,.feature-section.reverse,
  .contact-panel,.product-spec-grid,
  .process-grid,.hero-cards{
    grid-template-columns:1fr;
  }
  .hero-copy{
    align-items:flex-start;
    flex-direction:column;
  }
  .hero-image img{height:300px}
  .page-hero{min-height:620px}
  .nav-shell{
    grid-template-columns:82px 1fr 58px;
    min-height:70px;
  }
  .nav-logo img{width:64px;height:52px}
  .nav-contact{display:none}
  .nav-toggle{
    display:grid;
    place-items:center;
    justify-self:end;
    width:48px;
    height:48px;
    border:0;
    border-radius:16px;
    background:#fff;
    font-size:22px;
  }
  .nav-links{
    position:absolute;
    left:10px;
    right:10px;
    bottom:calc(100% + 12px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:14px;
    border-radius:24px;
    background:rgba(255,255,255,.9);
    box-shadow:var(--shadow);
    backdrop-filter:blur(20px);
  }
  .nav-links.open{display:flex}
  .nav-links a,.product-trigger{
    width:100%;
    text-align:left;
    padding:14px;
  }
  .product-menu{
    position:static;
    width:100%;
    transform:none;
    display:none;
    opacity:1;
    pointer-events:auto;
    box-shadow:none;
    margin-top:4px;
  }
  .product-menu.open{display:block;transform:none}
  .footer-top{display:block}
  .footer-contact{margin-top:34px}
}