:root {
  --navy: #07164b;
  --blue: #0d6efd;
  --blue-2: #2d8cff;
  --text: #5c709d;
  --muted: #8fa0c2;
  --line: #dfe9f7;
  --soft: #f6f9ff;
  --card: #ffffff;
  --shadow: 0 18px 55px rgba(31, 74, 143, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223,233,247,.8);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.brand span { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative;
  font-size: .98rem;
  font-weight: 600;
  padding: 28px 0 24px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--blue); }

.menu-button { display:none; border:0; background:transparent; padding:8px; color:var(--navy); cursor:pointer; }

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  padding: 78px 0 70px;
}
.hero-copy { max-width: 700px; }
.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  min-height: calc(100vh - 78px);
}
.hero-centered .hero-copy {
  max-width: 920px;
  margin: 0 auto;
}
.hero-centered .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .actions {
  justify-content: center;
}
.eyebrow {
  font-size: .84rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1,
.page-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .98;
  letter-spacing: -0.055em;
}
.page-title { font-size: clamp(3rem, 5.5vw, 4.8rem); }
.hero p,
.page-lead {
  color: var(--text);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
  margin: 24px 0 30px;
  max-width: 760px;
}
.actions { display:flex; gap:16px; flex-wrap:wrap; }
.btn {
  border: 1px solid var(--blue);
  border-radius: 12px;
  min-height: 54px;
  padding: 0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(13,110,253,.14); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color:#fff; }
.btn-secondary { color:var(--blue); background:#fff; }

.hero-art {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 68% 36%, rgba(66,145,255,.22), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(110,182,255,.18), transparent 33%),
    linear-gradient(180deg, #fbfdff 5%, #eff6ff 100%);
}
.hero-art::before,
.hero-art::after {
  content:"";
  position:absolute;
  width: 390px;
  height: 390px;
  border-radius: 48% 52% 58% 42% / 44% 38% 62% 56%;
  background: linear-gradient(145deg, #dcecff, #91c4ff);
  filter: drop-shadow(0 28px 40px rgba(75,128,190,.16));
}
.hero-art::before { right: 42px; top: 92px; transform: rotate(-8deg); opacity:.9; }
.hero-art::after { right: -10px; top: 165px; width:300px; height:260px; opacity:.72; }
.cloud-panel {
  position:absolute;
  z-index:4;
  right: 120px;
  top: 185px;
  width: 185px;
  height: 145px;
  border-radius: 28px;
  background: rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.9);
  box-shadow: 0 28px 60px rgba(31,74,143,.15);
  display:grid;
  place-items:center;
  backdrop-filter: blur(8px);
}
.window-mark { display:grid; grid-template-columns:repeat(2, 42px); gap:6px; }
.window-mark i { width:42px; height:42px; background:linear-gradient(135deg,#4ca1ff,#1f7ae0); display:block; }
.orbit { position:absolute; z-index:5; inset:100px 40px 55px 40px; border:2px dashed rgba(45,140,255,.25); border-radius:50%; }
.orbit-dot { position:absolute; width:12px; height:12px; border-radius:50%; background:#91c4ff; }
.orbit-dot.d1 { left:14px; top:245px; }
.orbit-dot.d2 { right:8px; top:140px; }
.orbit-dot.d3 { right:150px; bottom:4px; }
.art-badge {
  position:absolute;
  z-index:6;
  width:82px; height:82px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 40px rgba(31,74,143,.12);
  display:grid;
  place-items:center;
  border:1px solid rgba(223,233,247,.9);
  font-weight:800;
  font-size:.85rem;
  color:var(--blue);
}
.art-badge.b1 { left:45px; top:110px; }
.art-badge.b2 { right:55px; top:110px; }
.art-badge.b3 { right:30px; bottom:70px; }
.art-badge.b4 { left:80px; bottom:60px; }
.badge-icon { width:44px; height:44px; }

.page { padding: 72px 0 86px; }
.page-header { margin-bottom: 38px; }

.services-grid {
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:16px;
}
.service-card,
.contact-card,
.about-card {
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--card);
  box-shadow: var(--shadow);
}
.service-card { padding:28px 26px 24px; display:flex; flex-direction:column; min-height:340px; }
.service-icon {
  width:62px; height:62px; border-radius:18px; background:var(--soft);
  display:grid; place-items:center; margin-bottom:20px; color:var(--blue); font-weight:800;
}
.service-card h3 { margin:0 0 10px; font-size:1.35rem; line-height:1.18; letter-spacing:-.02em; }
.service-card p { color:var(--text); margin:0 0 20px; }
.learn-more { margin-top:auto; color:var(--blue); font-weight:700; display:inline-flex; align-items:center; gap:8px; border:0; background:transparent; padding:0; cursor:pointer; text-align:left; }
.service-details { display:none; margin-top:16px; padding-top:16px; border-top:1px solid var(--line); color:var(--text); font-size:.94rem; }
.service-card.open .service-details { display:block; }

.tech-strip { margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
.section-label { font-size:.78rem; letter-spacing:.24em; text-transform:uppercase; color:var(--blue); font-weight:700; margin-bottom:14px; }
.tech-list { display:flex; gap:12px; flex-wrap:wrap; }
.tech-pill { border:1px solid var(--line); background:#fff; border-radius:12px; padding:12px 16px; color:var(--text); font-weight:600; display:inline-flex; align-items:center; gap:8px; }
.tech-dot { width:10px; height:10px; border-radius:50%; background:var(--blue); box-shadow:0 0 0 4px rgba(13,110,253,.08); }

.about-card { padding:34px; margin-top:34px; }
.about-card h2 { margin:0; font-size:2rem; letter-spacing:-.03em; }
.role { color:var(--text); font-size:1.15rem; margin:2px 0 18px; }
.skill-list { display:flex; flex-wrap:wrap; gap:12px; }
.skill-pill { padding:10px 16px; border-radius:999px; background:#edf5ff; color:var(--blue); font-weight:600; }
.approach { margin-top:40px; }
.approach h2 { font-size:clamp(2rem,3vw,3rem); margin:0 0 8px; letter-spacing:-.04em; }
.approach p { color:var(--text); font-size:1.18rem; max-width:850px; margin:0; }

.contact-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:24px; align-items:start; }
.contact-stack { display:grid; gap:18px; }
.contact-card { padding:26px; display:flex; gap:18px; align-items:center; }
.contact-icon { width:64px; height:64px; border-radius:50%; background:var(--soft); display:grid; place-items:center; flex:0 0 auto; font-size:1.6rem; }
.contact-icon svg { width: 32px; height: 32px; }
.whatsapp-icon { color: #25D366; }
.whatsapp-icon svg { fill: currentColor; }
.contact-card small { display:block; color:var(--text); margin-bottom:2px; }
.contact-card strong { color:var(--blue); font-size:1.22rem; }
.contact-card p { margin:3px 0 0; color:var(--text); }
.contact-form-card { padding:30px; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
.contact-form-card h2 { margin:0 0 4px; font-size:1.75rem; }
.contact-form-card > p { margin:0 0 22px; color:var(--text); }
.form-group { margin-bottom:16px; }
label { display:block; margin-bottom:6px; font-weight:700; }
input, textarea { width:100%; border:1px solid #cad9ef; border-radius:10px; padding:14px 15px; color:var(--navy); background:#fff; outline:none; transition:border .15s ease, box-shadow .15s ease; }
input:focus, textarea:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(13,110,253,.08); }
textarea { min-height:135px; resize:vertical; }
.form-note { color:var(--text); font-size:.88rem; margin-top:12px; }
.form-status { margin-top:12px; min-height:22px; color:var(--text); font-size:.92rem; }

.footer { padding:26px 0 38px; border-top:1px solid var(--line); color:var(--text); font-size:.9rem; }
.footer-inner { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }

@media (max-width: 980px) {
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-art { min-height:380px; }
  .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .contact-layout { grid-template-columns:1fr; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .nav { min-height:68px; }
  .nav-links {
    display:none;
    position:absolute;
    top:68px;
    left:0; right:0;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:14px 22px 24px;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .nav-links.open { display:flex; }
  .nav-link { padding:10px 0; width:100%; }
  .nav-link::after { bottom:4px; }
  .menu-button { display:block; }
  .hero { padding:56px 0 50px; }
  .hero-art { min-height:320px; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:auto; }
  .page { padding:52px 0 70px; }
  .page-title { font-size:clamp(2.7rem,15vw,4.2rem); }
  .contact-card { align-items:flex-start; }
  .footer { text-align:center; }
  .footer-inner { justify-content:center; }
}

/* Services page refinement - matched to approved mockup */
.services-page .container {
  width: min(calc(100% - 64px), 1380px);
}
.services-page .page {
  padding-top: 84px;
}
.services-page .services-header {
  margin-bottom: 32px;
}
.services-page .services-header .page-title {
  font-size: clamp(3.2rem, 5vw, 4.9rem);
}
.services-page .services-header .page-lead {
  max-width: 900px;
  margin-top: 20px;
  font-size: clamp(1.2rem, 1.9vw, 1.58rem);
  line-height: 1.42;
}
.services-page .services-grid {
  gap: 14px;
}
.services-page .service-card {
  min-height: 370px;
  padding: 28px 28px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(30, 72, 140, 0.055);
}
.services-page .service-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: 0;
  margin-bottom: 18px;
}
.services-page .brand-icon svg {
  width: 58px;
  height: 58px;
}
.services-page .microsoft-icon {
  display: grid;
  grid-template-columns: 24px 24px;
  grid-template-rows: 24px 24px;
  gap: 4px;
  align-content: center;
  justify-content: center;
}
.services-page .microsoft-icon span {
  width: 24px;
  height: 24px;
  display: block;
}
.services-page .microsoft-icon span:nth-child(1){background:#f25022;}
.services-page .microsoft-icon span:nth-child(2){background:#7fba00;}
.services-page .microsoft-icon span:nth-child(3){background:#00a4ef;}
.services-page .microsoft-icon span:nth-child(4){background:#ffb900;}
.services-page .service-card h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  margin-bottom: 12px;
}
.services-page .service-card p {
  font-size: 1rem;
  line-height: 1.5;
}
.services-page .learn-more {
  font-size: 1rem;
  gap: 12px;
}
.services-page .learn-more b {
  font-size: 1.2rem;
  font-weight: 500;
}
.services-page .tech-strip {
  margin-top: 28px;
  padding-top: 20px;
}
.services-page .tech-list-logos {
  gap: 10px;
  flex-wrap: nowrap;
}
.services-page .tech-pill {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-start;
  padding: 11px 14px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: .96rem;
}
.services-page .mini-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}
.services-page .exchange-mini { background:#1473e6; }
.services-page .sharepoint-mini { background:#0f8b8d; }
.services-page .onedrive-mini { color:#1473e6; background:#e9f3ff; font-size:1rem; }
.services-page .teams-mini { background:#5b5fc7; }
.services-page .kube-mini {
  background:#326ce5;
  color:#fff;
  padding:4px;
}
.services-page .kube-mini svg {
  width:17px;
  height:17px;
  display:block;
}
.services-page .openstack-mini { background:#ed1944; }
.services-page .linux-mini { background:#111827; }
.services-page .security-mini { background:#1677f0; }

@media (max-width: 1100px) {
  .services-page .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-page .tech-list-logos { flex-wrap: wrap; }
  .services-page .tech-pill { flex: 0 1 auto; }
}

@media (max-width: 720px) {
  .services-page .container { width: min(calc(100% - 28px), 1380px); }
  .services-page .page { padding-top: 52px; }
  .services-page .services-grid { grid-template-columns: 1fr; }
  .services-page .service-card { min-height: auto; }
  .services-page .services-header .page-lead br { display: none; }
}
