:root{
  --ink:#0b1428;
  --muted:#4f6384;
  --line:#d9e4f2;
  --blue:#2f6eff;
  --blue2:#4f8cff;
  --navy:#071226;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  min-height:100%;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:#fff;
}
body{overflow-x:hidden}
.page-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(390px,37vw) 1fr;
}
.brand-panel{
  position:sticky;
  top:0;
  height:100vh;
  padding:44px 42px;
  color:#fff;
  background:
    radial-gradient(circle at 28% 86%,rgba(47,110,255,.72),transparent 27%),
    linear-gradient(155deg,#0c2243 0%,#071226 56%,#06101f 100%);
  overflow:hidden;
}
.brand-panel:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(91,139,204,.14) 1px,transparent 1px),
    linear-gradient(90deg,rgba(91,139,204,.14) 1px,transparent 1px);
  background-size:56px 56px;
  opacity:.72;
}
.brand-panel>*{position:relative}
.brand-lockup{display:flex;align-items:center;gap:16px}
.logo-mark-img{
  width:46px;
  height:46px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 0 10px rgba(99,215,255,.25));
}
.brand-name{letter-spacing:9px;font-weight:900;font-size:15px}
.tagline{color:#b9c6dd;font-size:13px;font-weight:700;margin-top:3px}
.hero-copy{margin-top:190px;max-width:560px}
.eyebrow{
  margin:0 0 18px;
  color:#4d8cff;
  letter-spacing:4px;
  font-size:13px;
  font-weight:900;
}
.hero-copy h1{
  font-size:clamp(44px,5vw,70px);
  line-height:.95;
  letter-spacing:-4px;
  margin:0 0 28px;
  font-weight:950;
}
.hero-copy h1 span{color:var(--blue2)}
.intro{font-size:18px;line-height:1.55;color:#dce7f8;max-width:530px}
.hero-list{position:absolute;left:42px;right:42px;bottom:52px}
.hero-list h2{font-size:22px;line-height:1.1;margin:0 0 22px}
.hero-list ul{list-style:none;margin:0;padding:0;display:grid;gap:14px;color:#e8f0ff;font-size:16px}
.hero-list li{display:flex;gap:12px;align-items:center}
.hero-list li:before{
  content:"✓";
  width:20px;
  height:20px;
  border:1px solid rgba(96,188,255,.75);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#63d7ff;
  font-size:12px;
  font-weight:900;
}
.content-panel{
  padding:44px 52px 38px;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  min-width:0;
}
.section-header{margin-bottom:28px}
.section-header h2{
  font-size:clamp(42px,4.2vw,66px);
  line-height:.95;
  letter-spacing:-4px;
  margin:0 0 18px;
  font-weight:950;
}
.section-header>p:last-child{font-size:18px;color:var(--muted);margin:0}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:0 24px 54px rgba(15,38,77,.09);
  min-height:390px;
  display:flex;
  flex-direction:column;
  gap:14px;
  overflow:visible;
}
.card-top{display:grid;grid-template-columns:50px 1fr;gap:16px;align-items:start}
.icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:#eaf2ff;
  color:#2f6eff;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:20px;
}
.service-card h3{font-size:21px;line-height:1.06;letter-spacing:-.6px;margin:4px 0 0;font-weight:900}
.service-card p{color:#40567a;font-size:15.5px;line-height:1.48;margin:0}
.shot{
  width:100%;
  margin:10px 0 0;
  padding:10px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#f7fbff;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:185px;
  overflow:visible;
}
.shot img{
  display:block;
  width:100%;
  height:auto;
  max-height:260px;
  object-fit:contain;
  object-position:center center;
  border-radius:10px;
}
.cloud-strip{
  margin-top:28px;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 26px;
  display:grid;
  grid-template-columns:60px 1fr auto;
  gap:18px;
  align-items:center;
  background:#fff;
  box-shadow:0 18px 42px rgba(15,38,77,.07);
}
.shield{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#eaf2ff;
  color:#2f6eff;
  display:grid;
  place-items:center;
  font-size:26px;
}
.cloud-strip h3{margin:0 0 4px;font-size:22px;letter-spacing:-.8px}
.cloud-strip p{margin:0;color:var(--muted)}
.google-wordmark{font-size:28px;color:#667085;font-weight:500;white-space:nowrap}
.google-wordmark span{color:#4285f4;font-weight:700}
@media (max-width:1180px){
  .page-shell{grid-template-columns:1fr}
  .brand-panel{height:auto;position:relative;min-height:650px}
  .hero-copy{margin-top:120px}
  .content-panel{padding:36px 26px}
  .service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cloud-strip{grid-template-columns:54px 1fr}
  .google-wordmark{grid-column:2}
}
@media(max-width:680px){
  .brand-panel{padding:28px 22px;min-height:720px}
  .hero-copy h1{font-size:48px}
  .service-grid{grid-template-columns:1fr}
  .section-header h2{font-size:42px}
  .cloud-strip{grid-template-columns:1fr}
  .google-wordmark{grid-column:auto}
  .service-card{min-height:0}
}
