/* ==========================================================================
   OnlineIT — Brand System
   ========================================================================== */

:root {
  --brand-cyan: #00B6E8;
  --brand-cyan-dark: #0090BA;
  --brand-cyan-light: #E5F7FD;
  --brand-cyan-glow: rgba(0, 182, 232, 0.30);

  --ink: #0B1220;
  --ink-soft: #131C2C;
  --ink-line: #1F2A3F;
  --ink-deep: #060A12;

  --text: #1F2937;
  --text-muted: #5B6470;
  --text-faint: #8E9BA9;

  --surface: #FFFFFF;
  --surface-alt: #F4F7FB;
  --surface-tint: #EDF3FA;
  --border: #E5EAF0;
  --border-strong: #D2DAE3;

  --success: #4DD17A;
  --warning: #FFB547;
  --danger:  #FF5C5C;

  --max: 1240px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --shadow-card:       0 1px 3px rgba(11,18,32,.04), 0 8px 24px rgba(11,18,32,.06);
  --shadow-card-hover: 0 1px 3px rgba(11,18,32,.06), 0 18px 40px rgba(11,18,32,.10);
  --shadow-glow:       0 8px 28px var(--brand-cyan-glow);

  --tx-fast: 150ms cubic-bezier(.2,.8,.2,1);
  --tx-base: 250ms cubic-bezier(.2,.8,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }

a { color: var(--brand-cyan-dark); text-decoration: none; transition: color var(--tx-fast); }
a:hover { color: var(--brand-cyan); }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); letter-spacing: -0.025em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

/* Layout primitives */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 110px 0; }
.section--tight { padding: 72px 0; }
.section--alt  { background: var(--surface-alt); }
.section--dark { background: var(--ink); color: #E6EDF3; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FFFFFF; }
.section--dark p { color: #B5C0CC; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .lead { font-size: 1.15rem; color: var(--text-muted); margin: 12px 0 0; }
.section--dark .section-head .lead { color: #B5C0CC; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--brand-cyan);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--tx-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr { transition: transform var(--tx-fast); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--brand-cyan);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: var(--brand-cyan-dark); color: #fff; box-shadow: 0 12px 32px var(--brand-cyan-glow); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); color: #fff; }

.btn-light { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-light:hover { background: var(--surface-alt); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--brand-cyan-dark);
  border-color: var(--brand-cyan);
}
.btn-outline:hover {
  background: var(--brand-cyan);
  color: #fff;
  box-shadow: 0 6px 20px var(--brand-cyan-glow);
}

.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* Hide the mobile-only portal item by default; shown inside the drawer at <900px */
.site-nav__portal-mobile { display: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(11,18,32,.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img { width: 190px; height: auto; display: block; }
.site-header__brand-text { font-weight: 500; font-size: 4rem; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.site-header__brand-text .accent { color: var(--brand-cyan); }

.site-nav {
  display: flex; align-items: center; gap: 32px;
}
.site-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
  padding: 8px 0;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--brand-cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tx-base);
}
.site-nav a:hover::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: 18px; }
.site-header__support {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.92rem; font-weight: 500;
}
.site-header__support:hover { color: var(--brand-cyan); }
.site-header__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-muted);
}
.site-header__status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(77,209,122,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77,209,122,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(77,209,122,.06); }
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: #E6EDF3;
  overflow: hidden;
  padding: 130px 0 110px;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px circle at 18% 20%, rgba(0,182,232,.22), transparent 55%),
    radial-gradient(720px circle at 82% 78%, rgba(0,182,232,.12), transparent 50%),
    radial-gradient(560px circle at 60% 0%,  rgba(99,102,241,.08), transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}
.hero__inner { max-width: 940px; }
.hero .eyebrow { color: var(--brand-cyan); }
.hero h1 { color: #fff; margin: 0; line-height: 0.95; }
.hero h1 .accent {
  color: var(--brand-cyan);
  background: linear-gradient(120deg, var(--brand-cyan), #6FD9F5);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: #B5C0CC;
  max-width: 760px;
  margin: 1.4rem 0 2.4rem;
  line-height: 1.55;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 2.6rem;
  display: flex; gap: 28px; flex-wrap: wrap;
  color: #8E9BA9; font-size: 0.88rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}
.hero__trust .check { color: var(--brand-cyan); }

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats {
  background: var(--ink-soft);
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid var(--ink-line);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat__num {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--brand-cyan);
  letter-spacing: -0.025em;
  line-height: 1;
}
.stat__label {
  font-size: 0.95rem;
  color: #B5C0CC;
  margin-top: 10px;
}
.trust-pillar { text-align: center; padding: 0 12px; }
.trust-pillar__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--brand-cyan);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,182,232,.12);
  border: 1px solid rgba(0,182,232,.22);
  border-radius: 14px;
}
.trust-pillar__icon svg { width: 26px; height: 26px; }
.trust-pillar__head { font-weight: 700; font-size: 1.02rem; color: #fff; line-height: 1.45; }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--tx-base);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), #6FD9F5);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tx-base);
}
.service-card:hover {
  border-color: rgba(0,182,232,.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-dark));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: #fff;
  box-shadow: 0 6px 18px var(--brand-cyan-glow);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: 0.97rem; margin: 0; }
.service-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  color: var(--brand-cyan-dark);
  font-size: 0.9rem; font-weight: 600;
  transition: gap var(--tx-fast);
}
.service-card:hover .service-card__more { gap: 10px; color: var(--brand-cyan); }

/* ==========================================================================
   PILLARS (Why Us)
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { padding: 8px; }
.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--surface-tint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-cyan);
  margin-bottom: 20px;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; }
.pillar p { color: var(--text-muted); margin: 0; }

/* ==========================================================================
   INDUSTRIES STRIP
   ========================================================================== */
.industries-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.industry-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 14px;
  text-align: center;
  transition: all var(--tx-base);
  color: var(--text);
}
.industry-pill:hover {
  border-color: var(--brand-cyan);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.industry-pill__icon { color: var(--brand-cyan); margin-bottom: 10px; display: inline-flex; }
.industry-pill__icon svg { width: 26px; height: 26px; }
.industry-pill__name { font-weight: 600; font-size: 0.92rem; }

/* ==========================================================================
   PARTNERS / TECH STACK
   ========================================================================== */
.partners {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.partners span {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  opacity: .68;
  transition: opacity var(--tx-base), color var(--tx-base);
}
.partners span:hover { opacity: 1; color: var(--ink); }

/* Platforms grid (homepage) */
.platforms {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}
.platform-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 96px;
  transition: all var(--tx-base);
}
.platform-card img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.55);
  opacity: 0.75;
  transition: filter var(--tx-base), opacity var(--tx-base);
}
.platform-card__name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color var(--tx-base);
}
.platform-card:hover {
  border-color: rgba(0, 182, 232, 0.30);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.platform-card:hover .platform-card__name { color: var(--ink); }
.platform-card:hover img { filter: none; opacity: 1; }
.platform-card__img--missing { display: none; }
@media (max-width: 1024px) {
  .platforms { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 760px) {
  .platforms { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .platforms { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote__bar {
  width: 56px; height: 3px;
  background: var(--brand-cyan);
  margin: 0 auto 28px;
}
.quote p {
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.quote__attr { color: var(--text-muted); font-size: 0.95rem; }
.quote__attr strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(720px circle at 50% 50%, rgba(0,182,232,.22), transparent 60%),
    radial-gradient(500px circle at 20% 80%, rgba(99,102,241,.10), transparent 60%);
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: #B5C0CC; max-width: 560px; margin: 0 auto 36px; font-size: 1.12rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink-deep); color: #B5C0CC; padding: 80px 0 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1A2332;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 20px;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #B5C0CC; font-size: 0.94rem; }
.site-footer a:hover { color: var(--brand-cyan); }

.site-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.site-footer__brand img { height: 44px; width: auto; }
.site-footer__brand-text { font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: -0.02em; }
.site-footer__brand-text .accent { color: var(--brand-cyan); }
.site-footer__addr { font-size: 0.93rem; line-height: 1.7; }
.site-footer__addr a { color: #fff; font-weight: 500; }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-size: 0.85rem; color: #5B6470;
  flex-wrap: wrap; gap: 16px;
}
.site-footer__bottom-left {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.site-footer__status {
  display: inline-flex; align-items: center; gap: 8px;
  color: #8E9BA9;
}
.site-footer__status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(77,209,122,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #B5C0CC;
  transition: all var(--tx-fast);
}
.site-footer__social a:hover { background: var(--brand-cyan); color: #fff; }
.site-footer__social svg { width: 16px; height: 16px; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--tx-fast), box-shadow var(--tx-fast);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(0,182,232,.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field--honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-validation { color: var(--danger); font-size: 0.85rem; margin-top: 4px; }
.form-success {
  background: rgba(77,209,122,.10);
  border: 1px solid rgba(77,209,122,.4);
  color: #1B7A3E;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-error {
  background: rgba(255,92,92,.10);
  border: 1px solid rgba(255,92,92,.4);
  color: #B33A3A;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap { background: #fff; }
.form-footnote { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

.contact-aside {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-aside h3 { margin-bottom: 16px; font-size: 1.15rem; }
.contact-address { color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.contact-block { padding: 14px 0; border-top: 1px solid var(--border); }
.contact-block__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-block__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-block__value:hover { color: var(--brand-cyan); }
.contact-block__value--plain {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}
.contact-status {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.contact-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(77,209,122,.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   SERVICE DETAIL — features grid, process stepper, outcomes list
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--tx-base);
}
.feature-card:hover {
  border-color: rgba(0,182,232,.30);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--surface-tint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-cyan);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.96rem; margin: 0; }

.process-stepper {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.process-stepper::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-cyan), rgba(0,182,232,.15));
}
.process-step {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.process-step__num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-cyan);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px var(--brand-cyan-glow);
  position: relative; z-index: 1;
}
.process-step__body { padding-top: 8px; }
.process-step__body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-step__body p { color: var(--text-muted); margin: 0; }

.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 960px;
  margin-inline: auto;
}
.outcomes-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.55;
}
.outcomes-list__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(77,209,122,.12);
  color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.outcomes-list__check svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .process-step { gap: 16px; }
  .process-step__num { width: 40px; height: 40px; font-size: 1rem; }
  .process-stepper::before { left: 19px; }
}

/* ==========================================================================
   ABOUT — founder block + address card
   ========================================================================== */
.founder {
  max-width: 820px;
  margin: 0 auto;
}
.founder__lead {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 36px;
}
.founder__body p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 1.1em;
}
.founder__body p:first-of-type {
  font-size: 1.18rem;
  color: var(--ink);
}
.founder__sign {
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--brand-cyan);
  padding-left: 18px;
  margin-top: 32px !important;
}
.founder__attr {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.founder__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px var(--brand-cyan-glow);
}
.founder__name { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.founder__role { color: var(--text-muted); font-size: 0.92rem; }

.address-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 36px;
}
.address-card__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
}
.address-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.address-card__big {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.address-card__lines {
  color: var(--text);
  line-height: 1.7;
}
.address-card__lines a { font-weight: 500; color: var(--ink); }
.address-card__lines a:hover { color: var(--brand-cyan); }

@media (max-width: 700px) {
  .address-card { padding: 28px 24px; }
  .address-card__inner { grid-template-columns: 1fr; gap: 24px; }
  .founder__body p, .founder__body p:first-of-type { font-size: 1.05rem; }
}

/* ==========================================================================
   PAGE HEADERS (sub-pages)
   ========================================================================== */
.page-header {
  background: var(--ink);
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(700px circle at 80% 20%, rgba(0,182,232,.16), transparent 60%);
}
.page-header__inner { position: relative; max-width: 820px; }
.page-header h1 { color: #fff; margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-header p { color: #B5C0CC; font-size: 1.15rem; max-width: 640px; margin: 0; }

/* ==========================================================================
   REFERRAL (about page)
   ========================================================================== */
.referral {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.referral::before {
  content: '';
  position: absolute;
  top: 0; left: 32px;
  width: 60px; height: 4px;
  background: var(--brand-cyan);
  border-radius: 0 0 4px 4px;
}
.referral__inner p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}
.referral__inner p:last-child { margin-bottom: 0; }
.referral__ask {
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 8px !important;
}

/* ==========================================================================
   RESOURCE LIST (blog / downloads)
   ========================================================================== */
.resource-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.resource-list__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: box-shadow var(--tx-base), transform var(--tx-base);
}
.resource-list__item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.resource-list__topic {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.resource-list__item h3 {
  font-size: 1.32rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}
.resource-list__item p {
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.65;
}
.resource-list__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-cyan-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.resource-list__cta:hover { color: var(--brand-cyan); }

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */
.case-studies {
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.case-study {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
}
.case-study__industry {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.case-study h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 24px;
}
.case-study__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-study__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-cyan-dark);
  margin-bottom: 8px;
}
.case-study__grid p {
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: box-shadow var(--tx-base);
}
.faq__item[open] { box-shadow: var(--shadow-card); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brand-cyan);
  transition: transform var(--tx-base);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.7;
}

/* ==========================================================================
   LEGAL DOCS (privacy / terms)
   ========================================================================== */
.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}
.legal-doc h2 {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 36px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.legal-doc h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-doc p {
  color: var(--text);
  margin: 0 0 16px;
}
.legal-doc ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text);
}
.legal-doc li { margin-bottom: 6px; }
.legal-doc a { color: var(--brand-cyan-dark); }
.legal-doc a:hover { color: var(--brand-cyan); }

/* ==========================================================================
   UTILITIES & RESPONSIVE
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

@media (max-width: 1024px) {
  .site-nav { gap: 22px; }
}
@media (max-width: 900px) {
  /* backdrop-filter on header creates a containing block for fixed children — disable on mobile so the nav drawer can anchor to the viewport */
  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav,
  .site-header__support,
  .site-header__status { display: none; }
  .nav-toggle { display: inline-flex; }

  /* When drawer is open, pin header to viewport (sticky breaks on iOS once a fixed sibling appears) */
  body.nav-open .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 70;
  }

  /* Mobile nav drawer — sits below the fixed header */
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 96px;
    left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 8px 0;
    gap: 0;
    border-top: 1px solid var(--border);
    z-index: 55;
    overflow-y: auto;
    animation: slideDown .25s ease-out;
  }
  .site-nav.is-open a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
  }
  .site-nav.is-open a::after { display: none; }
  .site-nav.is-open a:hover,
  .site-nav.is-open a:active { background: var(--surface-alt); color: var(--brand-cyan); }

  /* Mobile drawer portal CTA — pinned visually with cyan background */
  .site-nav.is-open .site-nav__portal-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 16px 24px 0;
    padding: 16px 20px;
    background: var(--brand-cyan);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 6px 18px var(--brand-cyan-glow);
  }
  .site-nav.is-open .site-nav__portal-mobile:hover,
  .site-nav.is-open .site-nav__portal-mobile:active {
    background: var(--brand-cyan-dark);
    color: #fff;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-toggle.is-open svg { transform: rotate(90deg); transition: transform .2s; }

  .services-grid,
  .pillars { grid-template-columns: 1fr 1fr; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-strip { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .hero { padding: 90px 0 70px; }

  .case-study__grid { grid-template-columns: 1fr; gap: 22px; }
  .referral { padding: 36px 32px; }
}
@media (max-width: 600px) {
  :root { --gutter: 18px; }

  /* On phones, hide the desktop portal button — it lives in the drawer instead */
  .site-header__portal-btn { display: none; }

  .services-grid,
  .pillars { grid-template-columns: 1fr; }
  .industries-strip { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__trust { gap: 14px; font-size: 0.82rem; }
  .site-header__inner { height: 68px; }
  .site-header__logo img { width: 150px; }
  .site-header__brand-text { font-size: 2.6rem; }

  /* Drawer aligns to the smaller mobile header */
  .site-nav.is-open { top: 68px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  .hero { padding: 68px 0 56px; }
  .hero .lead { font-size: 1rem; margin: 1.1rem 0 1.8rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }

  .resource-list__item { padding: 22px 22px; }
  .case-study { padding: 24px 22px; }
  .referral { padding: 28px 22px; }
  .legal-doc { font-size: 0.97rem; }

  .stats { padding: 44px 0; }
  .stats__grid { gap: 28px 20px; }
  .stat__num { font-size: 2rem; }

  .cta-section { padding: 64px 0; }

  .page-header { padding: 56px 0 44px; }
  .page-header h1 { font-size: 2rem; }
  .page-header p { font-size: 1rem; }

  .contact-aside { padding: 24px 22px; }
  .contact-aside h3 { font-size: 1.05rem; }
  .contact-block__value { font-size: 1rem; }

  .form-field input,
  .form-field textarea {
    padding: 14px 14px;
    font-size: 16px; /* prevents iOS zoom-on-focus */
    border-radius: 12px;
  }
  .form-field textarea { min-height: 140px; }
  .form-grid .btn-primary { width: 100%; justify-content: center; padding: 16px 24px; }

  .site-footer { padding: 56px 0 0; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   STAT COUNTER ANIMATION
   ========================================================================== */
.stat__num { display: inline-block; }
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }
