/* ══ 4SIGHT BUSINESS SOLUTIONS — SHARED STYLES ══ */
:root {
  --teal: #0BBCBC;
  --teal-dark: #089090;
  --teal-glow: rgba(11,188,188,0.15);
  --navy: #050D1A;
  --navy-mid: #0A1628;
  --navy-light: #0F2040;
  --navy-card: #0D1E35;
  --white: #F0F6F6;
  --muted: #7A9BA8;
  --border: rgba(11,188,188,0.18);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: all 0.3s ease;
}
nav.scrolled { height: 58px; background: rgba(5,13,26,0.99); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  color: var(--navy); letter-spacing: -1px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.nav-logo:hover .logo-mark { transform: rotate(30deg); }
.logo-text {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--white); letter-spacing: 0.5px; white-space: nowrap;
}
.logo-text span { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  color: rgba(240,246,246,0.8);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500;
  text-decoration: none; background: none; border: none; cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li.active > a, .nav-links > li.active > button {
  color: var(--teal); background: var(--teal-glow);
}
.nav-links > li > a.home-btn { font-size: 17px; padding: 8px 12px; }
.chevron { font-size: 10px; opacity: 0.6; transition: transform 0.2s; }
.nav-links > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-links > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13px; color: rgba(240,246,246,0.75);
  text-decoration: none;
  transition: all 0.15s ease;
}
.dropdown a:hover { color: var(--teal); background: var(--teal-glow); padding-left: 24px; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 12px; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-search {
  background: none; border: none; cursor: pointer;
  color: var(--teal); font-size: 16px;
  padding: 8px; border-radius: 6px;
  transition: background 0.2s;
}
.nav-search:hover { background: var(--teal-glow); }
.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a {
  color: rgba(240,246,246,0.5); font-size: 14px;
  transition: color 0.2s, transform 0.2s; text-decoration: none;
}
.social-icons a:hover { color: var(--teal); transform: translateY(-2px); }

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  overflow-y: auto;
  z-index: 999;
  padding: 20px 0 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  color: rgba(240,246,246,0.85);
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--teal); background: var(--teal-glow); }
.mobile-dropdown { display: none; background: rgba(0,0,0,0.2); }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a {
  display: block;
  padding: 11px 36px;
  font-size: 13px; color: rgba(240,246,246,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mobile-dropdown a:hover { color: var(--teal); }
.mobile-social {
  display: flex; gap: 16px; padding: 20px 24px; flex-wrap: wrap;
}
.mobile-social a {
  color: var(--muted); font-size: 18px; text-decoration: none;
  transition: color 0.2s;
}
.mobile-social a:hover { color: var(--teal); }

/* ══ BUTTONS ══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--navy);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.3px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11,188,188,0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border); color: var(--white);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 500; font-size: 14px;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--teal); color: var(--teal);
  background: var(--teal-glow);
}

/* ══ SECTION LABELS & TITLES ══ */
section { padding: 96px 80px; }
.section-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--teal); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--teal);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.1; margin-bottom: 20px;
}
.section-title strong { font-weight: 600; color: var(--teal); }
.section-sub {
  font-size: 16px; color: rgba(240,246,246,0.65);
  max-width: 560px; line-height: 1.75;
}

/* ══ STATS BAR ══ */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 80px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 44px;
  font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ══ SOLUTIONS GRID ══ */
.solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 60px;
}
.sol-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sol-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.sol-card:hover { transform: translateY(-6px); border-color: var(--teal); }
.sol-card:hover::before { opacity: 1; }
.sol-icon {
  width: 50px; height: 50px;
  background: var(--teal-glow); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--teal); margin-bottom: 20px;
}
.sol-card h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; margin-bottom: 12px;
}
.sol-card p { font-size: 14px; color: rgba(240,246,246,0.6); line-height: 1.7; }
.sol-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; color: var(--teal); font-size: 13px;
  font-weight: 500; text-decoration: none;
  transition: gap 0.2s;
}
.sol-link:hover { gap: 10px; }

/* ══ SECTORS ══ */
.sector-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.sector-tag {
  border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 30px;
  font-size: 13px; color: rgba(240,246,246,0.75);
  transition: all 0.2s ease; cursor: pointer;
}
.sector-tag:hover, .sector-tag.active {
  background: var(--teal); color: var(--navy);
  border-color: var(--teal); font-weight: 600;
}
.sectors-feature {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.sector-feat { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.sector-feat:last-child { border-right: none; }
.sector-feat-icon { font-size: 32px; margin-bottom: 14px; }
.sector-feat h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.sector-feat p { font-size: 13px; color: var(--muted); }

/* ══ VALUES ══ */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 60px;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.val-item {
  padding: 28px 24px;
  background: var(--navy-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}
.val-item:hover { background: var(--navy-light); }
.val-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--teal); letter-spacing: 2px; margin-bottom: 10px;
}
.val-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.val-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══ CAREERS ══ */
.pillar-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  text-align: center; transition: all 0.3s ease;
}
.pillar-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.pillar-letter {
  font-family: var(--font-display); font-size: 56px;
  font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px;
}
.pillar-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.pillar-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.role-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--white);
  transition: all 0.2s ease;
}
.role-card:hover { border-color: var(--teal); color: var(--teal); transform: translateX(4px); }
.role-card-left { display: flex; align-items: center; gap: 14px; }
.role-icon { font-size: 18px; color: var(--teal); width: 24px; }
.role-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.role-card p { font-size: 12px; color: var(--muted); }

/* ══ CONNECT FORM ══ */
.connect-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px;
}
.connect-form {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
}
.connect-form h3 {
  font-family: var(--font-display); font-size: 26px;
  font-weight: 600; margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--navy-light);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; color: var(--white); font-family: var(--font-body);
  font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy-mid); }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
}
.form-check input { width: auto; margin-top: 3px; accent-color: var(--teal); }
.connect-info { display: flex; flex-direction: column; gap: 24px; }
.connect-info-block {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.connect-info-block h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px; color: var(--teal);
}
.connect-info-block p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.connect-erp {
  background: linear-gradient(135deg, rgba(11,188,188,0.1), rgba(11,188,188,0.04));
  border: 1px solid var(--teal);
  border-radius: 12px; padding: 28px; text-align: center;
}
.connect-erp h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.connect-erp p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }

/* ══ SECURITY ══ */
.security-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.sec-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; transition: all 0.3s ease;
}
.sec-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.sec-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.sec-card-icon {
  width: 44px; height: 44px; background: var(--teal-glow);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--teal);
}
.sec-card h3 { font-size: 16px; font-weight: 600; }
.sec-items { list-style: none; padding: 0; }
.sec-items li {
  padding: 7px 0; font-size: 13px; color: rgba(240,246,246,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
}
.sec-items li::before { content: '✓'; color: var(--teal); font-size: 11px; }

/* ══ RESOURCES / TABS ══ */
.res-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0 48px;
  border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
.res-tab {
  padding: 10px 20px; border-radius: 8px;
  background: none; border: 1px solid var(--border);
  color: rgba(240,246,246,0.65); font-family: var(--font-body);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.2s ease;
}
.res-tab:hover, .res-tab.active {
  background: var(--teal); color: var(--navy);
  border-color: var(--teal); font-weight: 600;
}
.res-content {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.res-text h3 {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 600; margin-bottom: 16px; color: var(--teal);
}
.res-text p { font-size: 15px; color: rgba(240,246,246,0.7); line-height: 1.8; margin-bottom: 16px; }
.res-text ul { padding-left: 0; list-style: none; }
.res-text ul li {
  padding: 8px 0; font-size: 14px; color: rgba(240,246,246,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; gap: 10px;
}
.res-text ul li::before { content: '▸'; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.res-visual {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.cert-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cert-badge {
  background: var(--navy-light); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 12px; text-align: center;
  transition: border-color 0.2s;
}
.cert-badge:hover { border-color: var(--teal); }
.cert-abbr {
  font-family: var(--font-mono); font-size: 16px; font-weight: 700;
  color: var(--teal); display: block; margin-bottom: 6px;
}
.cert-full { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ══ STEP CARDS ══ */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px;
}
.step-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; position: relative;
  transition: all 0.3s ease;
}
.step-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-mono); font-size: 36px; font-weight: 700;
  color: rgba(11,188,188,0.2); line-height: 1; margin-bottom: 14px;
}
.step-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══ WHY CARDS ══ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.why-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; display: flex; gap: 16px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--teal); }
.why-num {
  font-family: var(--font-mono); font-size: 18px; font-weight: 700;
  color: var(--teal); flex-shrink: 0; padding-top: 2px;
}
.why-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══ QUOTE STRIP ══ */
.quote-strip {
  background: linear-gradient(135deg, rgba(11,188,188,0.08), rgba(11,188,188,0.02));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 80px; text-align: center;
}
.quote-strip blockquote {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px);
  font-weight: 300; font-style: italic;
  color: rgba(240,246,246,0.85); max-width: 800px; margin: 0 auto;
  line-height: 1.4;
}
.quote-strip blockquote span { color: var(--teal); }
.quote-strip cite {
  display: block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
  font-style: normal;
}

/* ══ ZOHO HERO ══ */
.zoho-hero {
  background: var(--navy); padding: 80px;
  min-height: 70vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.zoho-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(11,188,188,0.07) 0%, transparent 60%);
}
.zoho-content { position: relative; z-index: 1; max-width: 700px; }
.zoho-content h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px);
  font-weight: 300; line-height: 1.05; margin-bottom: 20px;
}
.zoho-content h1 strong { font-weight: 600; color: var(--teal); display: block; }
.zoho-stack { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 36px; }
.zoho-badge {
  background: var(--teal-glow); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 20px;
  font-size: 13px; color: rgba(240,246,246,0.8);
}

/* ══ FOOTER ══ */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 80px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-top: 12px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; text-decoration: none;
  transition: all 0.2s ease;
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-glow); }
.footer-col h5 {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(240,246,246,0.55);
  text-decoration: none; transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom .teal { color: var(--teal); }

/* ══ SCROLL REVEAL ══ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Offset anchor links so fixed nav doesn't cover section headings */
section[id], div[id], .page-hero[id] {
  scroll-margin-top: 80px;
}

/* ══ PAGE HERO (inner pages) ══ */
.page-hero {
  padding: 140px 80px 80px;
  background: linear-gradient(160deg, #050D1A 0%, #0A1628 50%, #050D1A 100%);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(11,188,188,0.07) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(var(--teal) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; line-height: 1.05; margin-bottom: 20px;
}
.page-hero h1 strong { font-weight: 600; color: var(--teal); }
.page-hero p {
  font-size: 17px; color: rgba(240,246,246,0.7);
  max-width: 560px; line-height: 1.8;
}

/* ══ INSIGHT CARDS ══ */
.insight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.insight-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: all 0.3s ease; cursor: pointer;
}
.insight-card:hover { transform: translateY(-6px); border-color: var(--teal); }
.insight-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
}
.insight-card-body { padding: 20px; }
.insight-type {
  font-family: var(--font-mono); font-size: 10px; color: var(--teal);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.insight-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.insight-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══ KNOW-US ══ */
.know-us-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-right .social-icons { display: none; }
  .hamburger { display: flex; }
  section, .hero, footer, .page-hero, .zoho-hero { padding: 60px 24px !important; }
  section { padding: 60px 24px; }
  .stats-bar { padding: 24px; }
  .solutions-grid, .security-grid, .insight-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .connect-grid, .know-us-grid, .res-content { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .sectors-feature { grid-template-columns: 1fr; }
  .sector-feat { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
  .quote-strip { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .career-roles { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cert-badges { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 15px; }
}
