/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: #1e293b; background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── VARIABLES ─── */
:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2040;
  --navy-soft: #112240;
  --blue:      #2563eb;
  --blue-h:    #1d4ed8;
  --blue-lt:   #60a5fa;
  --white:     #ffffff;
  --g50:       #f8fafc;
  --g100:      #f1f5f9;
  --g200:      #e2e8f0;
  --g400:      #94a3b8;
  --g500:      #64748b;
  --g700:      #334155;
  --text:      #1e293b;
  --r:         12px;
  --r-sm:      6px;
  --sh:        0 4px 20px rgba(0,0,0,.08);
  --sh-lg:     0 12px 48px rgba(0,0,0,.14);
  --t:         .2s ease;
  --mw:        1200px;
  --hh:        72px;
}

/* ─── UTILITY ─── */
.container { width: min(var(--mw), 100% - 2rem); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: .6rem;
}
.section-head { text-align: center; max-width: 58ch; margin-inline: auto; margin-bottom: 3.5rem; }
.section-head h2 { color: var(--navy); margin-bottom: .75rem; }
.section-head .desc { color: var(--g500); font-size: 1.05rem; }

/* ─── TYPOGRAPHY ─── */
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .9rem;
  transition: all var(--t); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-h); border-color: var(--blue-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--hh); background: var(--navy);
  display: flex; align-items: center;
  padding: 0 2rem; gap: 1.5rem;
  z-index: 1001;
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  background: rgba(10, 22, 40, 0.95);
}

/* ── Logo: show in a clean white pill so original colors are visible ── */
.brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-logo {
  height: 36px !important; width: auto !important;
  max-height: 36px; object-fit: contain; flex-shrink: 0;
  background: rgba(255,255,255,.97);
  border-radius: 6px; padding: 3px 8px;
}
.brand-text { color: var(--white); line-height: 1.15; }
.brand-text strong { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -.01em; }
.brand-text small { font-size: .62rem; font-weight: 400; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ── Navigation ── */
.site-nav { display: flex; align-items: center; gap: .1rem; flex: 1; justify-content: center; }
.site-nav a {
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
  padding: .45rem .9rem; border-radius: var(--r-sm);
  transition: all var(--t); white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }

.nav-dropdown { 
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; opacity: .7; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + .2rem); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--sh-lg); min-width: 280px; padding: .75rem; z-index: 200;
  margin-top: -.2rem;
  border: 1px solid var(--g100);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.dropdown-menu a {
  display: block; color: var(--g700) !important;
  padding: .65rem 1.1rem !important; border-radius: var(--r-sm) !important;
  font-size: .86rem !important; background: transparent !important;
  font-weight: 500 !important; transition: all var(--t) !important;
}
.dropdown-menu a:hover { background: var(--g50) !important; color: var(--blue) !important; }

/* ── Header actions ── */
.header-actions { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.lang-switch { display: flex; align-items: center; gap: .2rem; background: rgba(255,255,255,.1); border-radius: 999px; padding: .2rem; }
.lang-switch button { background: none; border: none; color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 700; padding: .28rem .6rem; border-radius: 999px; cursor: pointer; transition: all var(--t); letter-spacing: .04em; }
.lang-switch button.active { background: var(--white); color: var(--navy); }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; padding: .4rem; margin-left: auto; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 55%, #1a3a6e 100%);
  display: flex; align-items: center;
  padding-top: var(--hh);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(37,99,235,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(37,99,235,.1) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  width: min(var(--mw), 100% - 2rem); margin-inline: auto;
  display: grid; grid-template-columns: 52fr 48fr;
  gap: 3rem; align-items: center;
  padding: 3rem 0 4rem; position: relative;
}

/* Hero copy (left) */
.hero-copy { color: var(--white); }
.hero-copy .eyebrow { color: var(--blue-lt); font-size: .78rem; }
.hero-copy h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 48ch; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-row { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.1); }
.trust-item { display: flex; flex-direction: column; gap: .15rem; }
.trust-item b { font-size: .83rem; color: rgba(255,255,255,.9); }
.trust-item small { font-size: .73rem; color: rgba(255,255,255,.5); }

/* ── Hero visual (right): clean side-by-side layout ── */
.hero-visual { 
  display: flex; 
  align-items: stretch;
  position: relative;
  min-height: 450px;
}

/* Container: holds building and dashboard in non-overlapping layout */
.hero-scene {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 450px;
  border-radius: 16px;
  overflow: visible;
  display: flex;
  align-items: flex-end;
}

/* Building: background image */
.hs-building {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  z-index: 1;
}

/* Blue glow overlay */
.hs-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 35%, rgba(37,99,235,.28) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 30%, rgba(10,22,40,.5) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}

/* Dashboard: positioned cleanly without overlapping */
.hs-dashboard {
  position: relative;
  width: 75%;
  z-index: 3;
  box-shadow: -8px -8px 40px rgba(0,50,200,.35);
  border-radius: 16px;
  margin: 0 -2% 0 auto;
  flex-shrink: 0;
}

/* Cloud card mini-visual on homepage */
.cloud-card-img {
  background: linear-gradient(135deg, #0d1b3e 0%, #0f2d5e 50%, #1a3a6e 100%) !important;
  display: flex; align-items: center; justify-content: center;
  height: 220px;
}
.cloud-mini-visual { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.cloud-mini-visual img { width: 68px; height: auto; filter: drop-shadow(0 0 12px rgba(37,99,235,.5)); }
.cloud-mini-visual span { color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.cloud-mini-visual small { color: rgba(255,255,255,.45); font-size: .72rem; display: block; margin-top: -.4rem; }

/* ─── LOGO STRIP ─── */
.logo-strip { background: var(--g50); border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200); padding: 3rem 0; }
.logo-strip-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; text-align: center; }
.logo-strip p { font-size: .82rem; color: var(--g500); font-weight: 500; margin-bottom: 1.5rem; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 3.5rem; flex-wrap: wrap; }
.logo-row span { font-size: .9rem; font-weight: 800; color: var(--g400); letter-spacing: .08em; text-transform: uppercase; }

/* ─── SERVICES HOME SECTION ─── */
.services-home { padding: 6.5rem 0; background: var(--white); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Service cards with image thumbnails */
.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r); transition: all var(--t);
  text-decoration: none; overflow: hidden;
  height: 100%;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--sh-lg); transform: translateY(-4px); }

.service-card-img { height: 220px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* IoT card: contain so full diagram is visible */
.service-card-img.sc-contain img {
  object-fit: contain !important;
  background: #eef2ff;
  padding: .5rem;
}

.service-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.service-icon { width: 44px; height: 44px; background: rgba(37,99,235,.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.service-card h3 { color: var(--navy); }
.service-card p { color: var(--g500); font-size: .9rem; flex: 1; }
.learn-more { font-size: .85rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: .3rem; margin-top: auto; }
.learn-more::after { content: '→'; }

/* ─── ABOUT PREVIEW ─── */
.about-home { padding: 6.5rem 0; background: var(--g50); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-content .eyebrow { color: var(--blue); }
.about-content h2 { color: var(--navy); margin-bottom: 1rem; }
.about-content p { color: var(--g500); font-size: 1.02rem; margin-bottom: 1.75rem; line-height: 1.75; }
.mini-link { font-size: .9rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: .3rem; }
.mini-link::after { content: '→'; }
.about-visual { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.about-visual img { width: 100%; height: 400px; object-fit: cover; }

/* ─── WHY SECTION ─── */
.why-home { padding: 6.5rem 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.why-card { padding: 2.25rem; border: 1px solid var(--g200); border-radius: var(--r); background: var(--white); transition: all var(--t); }
.why-card:hover { border-color: var(--blue); box-shadow: var(--sh); }
.why-num { font-size: 2.5rem; font-weight: 900; color: var(--g200); line-height: 1; margin-bottom: .75rem; }
.why-card h3 { color: var(--navy); margin-bottom: .45rem; }
.why-card p { color: var(--g500); font-size: .93rem; }

/* ─── CTA SECTION ─── */
.cta-home { padding: 6.5rem 0; background: var(--navy); text-align: center; }
.cta-home h2 { color: var(--white); margin-bottom: 1rem; }
.cta-home p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 52ch; margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.7; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy-mid); padding: 3rem 0 2rem; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }

/* Footer brand: logo in white pill + text */
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand-logo {
  height: 34px !important; width: auto !important;
  max-height: 34px; object-fit: contain; flex-shrink: 0;
  background: rgba(255,255,255,.95);
  border-radius: 6px; padding: 3px 8px;
}
.footer-brand-info strong { display: block; color: var(--white); font-size: .9rem; }
.footer-brand-info span { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-brand-info a { color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-brand-info a:hover { color: var(--white); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ─── PAGE HERO (INNER PAGES) ─── */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: calc(var(--hh) + 4.5rem) 0 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(37,99,235,.14) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; position: relative; }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; display: flex; gap: .4rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 { color: var(--white); max-width: 20ch; margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 60ch; margin-bottom: 2.25rem; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

/* Hero image panel */
.page-hero-img { border-radius: var(--r); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.page-hero-img img { width: 100%; height: 360px; object-fit: cover; }

/* ── IoT page: show full diagram without cropping ── */
.page-hero-img.img-contain { overflow: visible; }
.page-hero-img.img-contain img {
  height: auto !important; max-height: 400px;
  object-fit: contain !important;
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
}

/* ── Cloud page visual ── */
.cloud-hero-visual {
  background: linear-gradient(135deg, #0d1b3e 0%, #0f2d5e 50%, #1a3a6e 100%);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(37,99,235,.2);
}
.cloud-hero-inner { text-align: center; }
.cloud-hero-inner img { width: 150px; height: auto; margin: 0 auto 1.5rem; filter: drop-shadow(0 0 20px rgba(37,99,235,.4)); }
.cloud-hero-inner p { color: rgba(255,255,255,.75); font-size: 1.05rem; font-weight: 600; }
.cloud-hero-inner small { display: block; margin-top: .5rem; color: rgba(255,255,255,.45); font-size: .82rem; }

/* ─── CONTENT SECTIONS ─── */
.cs { padding: 5rem 0; }
.cs.light { background: var(--g50); }
.cs-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; }
.cs h2 { color: var(--navy); margin-bottom: 2.5rem; }

.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.offer-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); padding: 1.75rem; }
.offer-card h3 { color: var(--navy); margin-bottom: .5rem; }
.offer-card p { color: var(--g500); font-size: .92rem; line-height: 1.65; }

.problems-block { background: var(--navy); border-radius: var(--r); padding: 2.5rem 3rem; }
.problems-block .eyebrow { color: var(--blue-lt); }
.problems-block h2 { color: var(--white); margin-bottom: .75rem; }
.problems-block p { color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); padding: 1.75rem; }
.step-num { font-size: 2.25rem; font-weight: 900; color: rgba(37,99,235,.15); line-height: 1; margin-bottom: .6rem; }
.step-card h3 { color: var(--navy); margin-bottom: .5rem; }
.step-card p { color: var(--g500); font-size: .9rem; }

/* Feature image: contain for diagrams/tech, cover for photos */
.img-feature { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); margin-top: 2.5rem; }
.img-feature img { width: 100%; height: 420px; object-fit: cover; }

/* IoT-specific: show full diagram */
.img-feature.img-full { overflow: visible; background: transparent; }
.img-feature.img-full img {
  height: auto !important; max-height: 480px;
  object-fit: contain !important;
  background: rgba(255,255,255,.03);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
}

.pill-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }
.pill-list li { background: rgba(37,99,235,.08); color: var(--blue); font-size: .82rem; font-weight: 600; padding: .38rem 1rem; border-radius: 999px; border: 1px solid rgba(37,99,235,.2); }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.benefit-card { padding: 1.75rem; border: 1px solid var(--g200); border-radius: var(--r); background: var(--white); }
.benefit-card h3 { color: var(--navy); margin-bottom: .45rem; font-size: 1.05rem; }
.benefit-card p { color: var(--g500); font-size: .9rem; }

.page-cta { background: var(--navy); padding: 5rem 0; text-align: center; }
.page-cta-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; }
.page-cta h2 { color: var(--white); margin-bottom: 1rem; }
.page-cta p { color: rgba(255,255,255,.65); font-size: 1.02rem; margin-bottom: 2.25rem; }

/* ─── ABOUT PAGE ─── */
.about-body { padding: 5rem 0; }
.about-body-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text h2 { color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--g500); font-size: 1.02rem; margin-bottom: 1.25rem; line-height: 1.75; }
.about-text h3 { color: var(--navy); margin-top: 2rem; margin-bottom: .5rem; }
.about-img { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-lg); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-values { padding: 5rem 0; background: var(--g50); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.value-card { padding: 2rem; border: 1px solid var(--g200); border-radius: var(--r); background: var(--white); }
.value-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.value-card h3 { color: var(--navy); margin-bottom: .4rem; }
.value-card p { color: var(--g500); font-size: .9rem; }

/* ─── SERVICES PAGE ─── */
.services-page { padding: 5rem 0; }
.services-page-inner { width: min(var(--mw), 100% - 2rem); margin-inline: auto; }
.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.sp-card { border: 1px solid var(--g200); border-radius: var(--r); overflow: hidden; transition: all var(--t); text-decoration: none; }
.sp-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); border-color: var(--blue); }
.sp-card-img { height: 220px; overflow: hidden; }
.sp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sp-card:hover .sp-card-img img { transform: scale(1.04); }
.sp-card-body { padding: 1.75rem; }
.sp-card-body h3 { color: var(--navy); margin-bottom: .5rem; }
.sp-card-body p { color: var(--g500); font-size: .9rem; margin-bottom: 1rem; }
.sp-card-body .learn { font-size: .85rem; font-weight: 700; color: var(--blue); }

/* ─── CONTACT PAGE ─── */
.contact-body { padding: 5rem 0; }
.contact-layout { width: min(var(--mw), 100% - 2rem); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-left h2 { color: var(--navy); margin-bottom: .75rem; }
.contact-left .sub { color: var(--g500); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.contact-card { background: var(--white); border: 1px solid var(--g200); border-radius: var(--r); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.contact-item { display: flex; flex-direction: column; gap: .35rem; }
.contact-item .label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--g500); }
.contact-item .value { font-size: 1.05rem; color: var(--text); font-weight: 500; }
.contact-item a { color: var(--blue); }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrap { background: var(--g50); border: 1px solid var(--g200); border-radius: var(--r); padding: 2.5rem; }
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--g700); letter-spacing: .02em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--g200); border-radius: var(--r-sm);
  font-family: inherit; font-size: .93rem; color: var(--text);
  background: var(--white); transition: border-color var(--t);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--hh); left: 0; right: 0;
    background: var(--navy); padding: 1.25rem;
    gap: .15rem; z-index: 999; border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open .nav-dropdown { position: static; }
  .site-nav.open .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,.06); transform: none; margin-top: .15rem; }
  .site-nav.open .dropdown-menu a { color: rgba(255,255,255,.75) !important; }
  .site-nav.open .dropdown-menu a:hover { color: var(--white) !important; background: rgba(255,255,255,.1) !important; }
  .menu-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0 3rem; }
  .hero-visual { order: -1; min-height: 340px; }
  .hero-scene { min-height: 340px; }
  .hs-dashboard { width: 78%; }

  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  .page-hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .about-body-inner { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  :root { --hh: 64px; }
  .hero-btns { flex-direction: column; }
  .trust-row { gap: 1.25rem; }
  .logo-row { gap: 1.5rem; }
  .page-hero-actions { flex-direction: column; }
  .benefits-grid, .values-grid { grid-template-columns: 1fr; }
  section, .cs, .services-home, .about-home, .why-home, .cta-home { padding-block: 3rem; }
  .page-hero { padding-top: calc(var(--hh) + 3rem); padding-bottom: 3rem; }
  .hero-scene { min-height: 300px; }
  .hs-dashboard { width: 82%; }
}
