:root {
  --surface: #f9f9ff;
  --surface-low: #f2f3fd;
  --surface-high: #e6e7f2;
  --surface-lowest: #ffffff;
  --on-surface: #191b23;
  --on-surface-variant: #424754;
  --outline-variant: #c2c6d6;
  --primary: #0058be;
  --primary-soft: rgba(0, 88, 190, 0.1);
  --secondary: #0060ac;
  --tertiary: #924700;
  --shadow-blue: 0 10px 30px rgba(59, 130, 246, 0.08);
  --shadow-deep: 0 20px 50px rgba(30, 41, 59, 0.12);
  --radius: 1rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--on-surface);
}
body {
  position: relative;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(0, 88, 190, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(100, 168, 254, 0.12), transparent 28%),
    var(--surface);
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  opacity: 0.18;
  background-image:
    linear-gradient(140deg, transparent 49.4%, rgba(0, 150, 214, 0.38) 49.7%, rgba(0, 150, 214, 0.38) 50.3%, transparent 50.6%),
    linear-gradient(116deg, transparent 49.4%, rgba(0, 150, 214, 0.26) 49.7%, rgba(0, 150, 214, 0.26) 50.3%, transparent 50.6%),
    linear-gradient(78deg, transparent 49.4%, rgba(0, 150, 214, 0.2) 49.7%, rgba(0, 150, 214, 0.2) 50.3%, transparent 50.6%),
    linear-gradient(rgba(0, 150, 214, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 214, 0.12) 1px, transparent 1px);
  background-size:
    260px 260px,
    220px 220px,
    300px 300px,
    180px 180px,
    180px 180px;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  mask-image: radial-gradient(circle at 50% 42%, rgba(0,0,0,0.9), rgba(0,0,0,0.18) 68%, transparent 100%);
}
body::after {
  opacity: 0.75;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 150, 214, 0.9) 0 8px, transparent 9px),
    radial-gradient(circle at 21% 30%, rgba(0, 150, 214, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at 33% 60%, rgba(0, 150, 214, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 74%, rgba(0, 150, 214, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 25%, rgba(0, 150, 214, 0.68) 0 3px, transparent 4px),
    radial-gradient(circle at 83% 48%, rgba(0, 150, 214, 0.82) 0 6px, transparent 7px),
    radial-gradient(circle at 47% 44%, rgba(0, 150, 214, 0.6) 0 2px, transparent 3px),
    radial-gradient(circle at 63% 14%, rgba(0, 150, 214, 0.56) 0 2px, transparent 3px);
  background-repeat: no-repeat;
}
body > * {
  position: relative;
  z-index: 1;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(249, 249, 255, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(194, 198, 214, 0.35);
  box-shadow: var(--shadow-blue);
}
.nav-wrapper { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; }
.site-logo { width: 44px; height: 44px; object-fit: contain; }
.brand-icon { color: var(--primary); font-size: 32px; }
.brand-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative; color: var(--on-surface-variant); font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
}
.desktop-nav a.active, .desktop-nav a:hover { color: var(--primary); }
.desktop-nav a.active::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--primary);
}

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.4rem; border-radius: 1rem; font-weight: 700; transition: all 0.2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 24px rgba(0, 88, 190, 0.2); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(0, 88, 190, 0.24); }
.btn-outline { background: rgba(0, 88, 190, 0.08); color: var(--primary); }
.btn-outline:hover { background: rgba(0, 88, 190, 0.14); }

.mobile-toggle { display: none; border: 0; background: transparent; color: var(--on-surface); }
.mobile-toggle .material-symbols-outlined { font-size: 30px; }
.mobile-menu-backdrop, .mobile-menu { display: none; }

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.site-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader-video {
  width: min(420px, 78vw);
  max-height: 56vh;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}
@media (max-width: 620px) {
  .site-preloader-video { width: min(320px, 82vw); }
}

.site-footer {
  background: #ffffff;
  color: #191b23;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(194, 198, 214, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.95fr));
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(194, 198, 214, 0.6);
}
.footer-col h4 { margin-bottom: 1rem; font-size: 1rem; color: #191b23; }
.footer-col li, .footer-col p { margin-bottom: 0.5rem; color: #424754; }
.footer-col a:hover { color: #0058be; }
.footer-brand { grid-column: auto; }
.footer-brand p { max-width: 360px; }
.footer-brand-mark { margin-bottom: 1rem; }
.footer-brand-mark .site-logo { width: 40px; height: 40px; }
.footer-bottom { padding-top: 2rem; text-align: center; color: #424754; font-size: 0.875rem; }
.footer-col p a { text-decoration: underline; text-underline-offset: 2px; }
.footer-contact-card {
  padding: 1rem 1rem 0.9rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(194, 198, 214, 0.7);
  background: #f9f9ff;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.footer-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 88, 190, 0.22);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(30, 41, 59, 0.08);
}
.footer-address,
.footer-meta,
.footer-call {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  line-height: 1.55;
}
.footer-address::before,
.footer-meta::before,
.footer-call::before {
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  line-height: 1;
  color: #0058be;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-address::before { content: 'location_on'; }
.footer-meta::before { content: 'mail'; }
.footer-call::before { content: 'call'; }
.footer-call a { font-weight: 700; color: #191b23; }
.footer-call a:hover { color: #0058be; }

.section-shell { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h1, .section-header h2, .section-header h3,
.hero-title, .page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}
.hero-title, .page-title { font-size: clamp(2.75rem, 5vw, 4.25rem); line-height: 1.08; }
.section-header h2 { font-size: clamp(2rem, 3vw, 3rem); }
.section-header p, .muted, .lead { color: var(--on-surface-variant); }

.glass-card, .feature-card, .info-card, .content-card, .value-card, .service-card, .contact-card {
  display: block;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(194,198,214,0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
}
.glass-card:hover, .feature-card:hover, .value-card:hover, .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }

.hero-section { padding: 5rem 0 4rem; }
.hero-grid, .content-row, .two-col-grid { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: 1.08fr 0.92fr; }
.hero-copy p, .content-copy p { color: var(--on-surface-variant); max-width: 54ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-visual {
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(194,198,214,0.35);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  max-width: 640px;
  justify-self: end;
}
.hero-visual img, .content-visual img, .cover-image {
  border-radius: calc(var(--radius-xl) - 0.35rem);
  border: 1px solid rgba(194,198,214,0.45);
  box-shadow: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .55s ease;
}
.hero-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(59,130,246,.14);
}
.hero-visual:hover img {
  transform: scale(1.04);
}
.pill {
  display: inline-flex; padding: 0.35rem 0.8rem; border-radius: 9999px; background: var(--primary-soft); color: var(--primary);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.feature-card { padding: 1.75rem; position: relative; overflow: hidden; }
.product-card {
  display: block;
  position: relative;
  padding: 1.15rem;
  overflow: hidden;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card::before,
.mini-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.product-card::after,
.mini-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  pointer-events: none;
}
.product-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(200, 215, 238, 0.14);
  border-color: rgba(153, 193, 238, 0.25);
}
.product-card:hover::before,
.mini-card:hover::before {
  opacity: 1;
}
.product-card .thumb {
  height: 170px;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(135deg, rgba(0,88,190,0.14), rgba(100,168,254,0.28));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(194,198,214,.35);
  overflow: hidden;
}
.product-card .thumb span { font-size: 56px; color: var(--primary); }
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card h3 { margin-bottom: 0.5rem; }
.product-card p { color: var(--on-surface-variant); }
.ms-app-logo {
  width: 76px;
  height: 76px;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(30, 41, 59, 0.14);
  border: 1px solid rgba(255,255,255,0.4);
}
.ms-app-logo.word { background: linear-gradient(135deg, #2b579a, #5b8def); }
.ms-app-logo.excel { background: linear-gradient(135deg, #217346, #4caf6f); }
.ms-app-logo.powerpoint { background: linear-gradient(135deg, #d24726, #ff7a59); }
.ms-app-logo.teams { background: linear-gradient(135deg, #6264a7, #8a8df0); }
.ms-app-logo.outlook { background: linear-gradient(135deg, #0078d4, #5ba9ff); }
.ms-app-logo.onedrive { background: linear-gradient(135deg, #0a66d1, #4ea1ff); }
.ms-app-logo.sharepoint { background: linear-gradient(135deg, #0078d4, #00b7c3); }
.ms-app-logo.powerbi { background: linear-gradient(135deg, #f2c811, #ffd84d); color: #191b23; }
.ms-app-logo.teams-rooms { background: linear-gradient(135deg, #5c2d91, #8654da); }
.ms-app-logo.admin { background: linear-gradient(135deg, #0f6cbd, #4b8ef7); }
.feature-card h3, .service-card h3, .value-card h3, .info-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 0.75rem; font-size: 1.15rem; }
.feature-icon, .service-icon {
  width: 56px; height: 56px; border-radius: 1.25rem; display: grid; place-items: center; margin-bottom: 1.25rem; background: var(--primary-soft); color: var(--primary);
}
.feature-icon.secondary, .service-icon.secondary { background: rgba(0, 96, 172, 0.1); color: var(--secondary); }
.feature-icon.tertiary, .service-icon.tertiary { background: rgba(146, 71, 0, 0.1); color: var(--tertiary); }

.content-rows-section, .alt-section { padding: 5rem 0; background: linear-gradient(180deg, rgba(242,243,253,0.7), rgba(249,249,255,1)); }
.content-row + .content-row { margin-top: 3rem; }
.content-copy h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.75rem, 2.4vw, 2.5rem); margin-bottom: 1rem; }

.page-panel { padding: 3rem; }
.service-card { padding: 2rem; }
.service-card + .service-card { margin-top: 1.5rem; }
.service-image img { width: 100%; border-radius: 1.5rem; }
.value-grid, .info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.value-card, .info-card { padding: 1.75rem; }

.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 1.5rem; }
.contact-hero { padding: 5rem 0 2rem; text-align: center; }
.contact-hero h1, .services-hero h1, .detail-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); line-height: 1.1; }
.contact-hero p, .services-hero p, .detail-hero p { color: var(--on-surface-variant); max-width: 48rem; margin: 1rem auto 0; }
.services-hero, .detail-hero { padding: 5rem 0 3rem; }
.filter-row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.filter-chip {
  padding: .7rem 1rem; border-radius: 9999px; background: rgba(255,255,255,.75); border: 1px solid rgba(194,198,214,.5);
  font-weight: 700; color: var(--on-surface-variant);
}
.filter-chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.detail-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; align-items: start; }
.sidebar-list { display: grid; gap: .75rem; }
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(194,198,214,.45);
  background: rgba(255,255,255,.75);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.sidebar-list a:hover { transform: translateX(4px); box-shadow: 0 10px 24px rgba(59,130,246,.08); }
.sidebar-list a.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 12px 26px rgba(0,88,190,.22); }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.mini-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(194,198,214,.45);
  background: rgba(255,255,255,.8);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mini-card .mini-hero {
  height: 110px;
  border-radius: 1rem;
  margin-bottom: .85rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 30%),
    linear-gradient(135deg, rgba(0,88,190,.12), rgba(100,168,254,.22));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194,198,214,.32);
}
.mini-card .mini-hero span { font-size: 42px; color: var(--secondary); }
.mini-card.product-app .mini-hero { height: 92px; }
.mini-card.product-app .mini-hero span { font-size: 34px; }
.mini-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.mini-card p { font-size: .92rem; color: var(--on-surface-variant); }
.product-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.product-tag {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 9999px;
  background: rgba(0,88,190,.08);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.34);
}
.brand-logo {
  width: 92px;
  height: 92px;
  border-radius: 1.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 30px rgba(30, 41, 59, 0.14);
  border: 1px solid rgba(255,255,255,.35);
}
.brand-logo.aws { background: linear-gradient(135deg, #232f3e, #ff9900); }
.brand-logo.azure { background: linear-gradient(135deg, #0078d4, #50b2ff); }
.brand-logo.gcp { background: linear-gradient(135deg, #4285f4, #ea4335); }
.brand-logo.moodle { background: linear-gradient(135deg, #f98012, #ffb14d); }
.brand-logo.canvas { background: linear-gradient(135deg, #e7352c, #ff796c); }
.brand-logo.teachable { background: linear-gradient(135deg, #111827, #4b5563); }
.brand-logo.crowdstrike { background: linear-gradient(135deg, #dc2626, #f97316); }
.brand-logo.bitdefender { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.brand-logo.norton { background: linear-gradient(135deg, #facc15, #f59e0b); color: #191b23; }
.brand-logo.powerbi { background: linear-gradient(135deg, #f2c811, #ffd84d); color: #191b23; }
.brand-logo.tableau { background: linear-gradient(135deg, #1f77b4, #2d9cdb); }
.brand-logo.zoho { background: linear-gradient(135deg, #ef4444, #f97316); }
.brand-logo.hubspot { background: linear-gradient(135deg, #ff7a59, #ffb36b); }
.brand-logo.salesforce { background: linear-gradient(135deg, #00a1e0, #70c8ff); }
.brand-logo.fishbowl { background: linear-gradient(135deg, #0f172a, #334155); }
.brand-logo.netsuite { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.brand-logo.sap { background: linear-gradient(135deg, #0f62fe, #6ba6ff); }
.brand-logo.dynamics { background: linear-gradient(135deg, #5c2d91, #8b5cf6); }
.brand-logo.oracle { background: linear-gradient(135deg, #c74634, #ef4444); }
.brand-logo.powerapps { background: linear-gradient(135deg, #5c2d91, #9b7be0); }
.brand-logo.outsystems { background: linear-gradient(135deg, #0f172a, #2563eb); }
.brand-logo.github { background: linear-gradient(135deg, #111827, #6b7280); }
.brand-logo.gusto { background: linear-gradient(135deg, #a855f7, #ec4899); }
.brand-logo.rippling { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.brand-logo.mailchimp { background: linear-gradient(135deg, #ffe08a, #f59e0b); color: #191b23; }
.brand-logo.semrush { background: linear-gradient(135deg, #0f766e, #10b981); }
.brand-logo.hootsuite { background: linear-gradient(135deg, #7c3aed, #c084fc); }
.brand-logo.shopify { background: linear-gradient(135deg, #96bf48, #4caf50); }
.brand-logo.woocommerce { background: linear-gradient(135deg, #7f54b3, #b794f4); }
.brand-logo.wix { background: linear-gradient(135deg, #111827, #8b5cf6); }
.brand-logo.wordpress { background: linear-gradient(135deg, #21759b, #4ea5d9); }
.brand-logo.webflow { background: linear-gradient(135deg, #1e40af, #38bdf8); }
.brand-logo.squarespace { background: linear-gradient(135deg, #111827, #374151); }
.contact-card { padding: 2rem; }
.contact-grid .mini-card { min-height: 100%; }
.field { margin-bottom: 1rem; }
.field label { display: block; margin-bottom: 0.45rem; font-size: 0.875rem; font-weight: 600; color: var(--on-surface); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(194,198,214,0.9); background: var(--surface-lowest); border-radius: 1rem; padding: 0.95rem 1rem;
  font: inherit; color: var(--on-surface); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,88,190,0.08); }

@media (max-width: 968px) {
  .desktop-nav, .header-cta { display: none !important; }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 998;
  }
  .mobile-menu {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(249,249,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(194,198,214,0.45);
    box-shadow: var(--shadow-deep);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 999;
    padding: 0 24px;
  }
  .mobile-menu.active, .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-menu.active { display: block; }
  .mobile-menu-backdrop.active { display: block; }
  .mobile-menu-inner { padding: 1rem 0 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
  .mobile-menu a { padding: 0.9rem 0; border-bottom: 1px solid rgba(194,198,214,0.25); font-weight: 600; }
  .mobile-menu a:last-child { border-bottom: 0; }
  body.menu-open { overflow: hidden; }
  .hero-grid, .content-row, .two-col-grid, .contact-grid, .value-grid, .info-grid, .cards-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-grid, .detail-layout, .detail-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 1rem; }
  .hero-visual {
    max-width: 100%;
    justify-self: stretch;
  }
  .hero-visual img { max-height: 390px; }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 0.75rem 0.9rem;
  }
  .whatsapp-float span { display: none; }
  .hero-section { padding-top: 3.5rem; }
  .section-shell, .content-rows-section, .alt-section { padding: 3.5rem 0; }
}

/* AI-powered business hero image */
.hero-image-section {
  position: relative;
  min-height: clamp(560px, 72vh, 860px);
  padding: 0 !important;
  overflow: hidden;
  isolation: isolate;
  background: #04194f;
  border-radius: 0;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
}
.hero-image-fallback {
  z-index: 0;
  transition: opacity .2s ease;
}
.hero-video {
  z-index: 1;
  display: block;
  border: 0;
  background: #04194f;
  opacity: 1;
  animation: aiHeroVideoDrift 10s ease-in-out infinite;
}
.hero-video::-webkit-media-controls { display: none !important; }
.hero-image-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(1,17,65,.05) 0%, transparent 55%, rgba(1,10,45,.18) 100%);
}
.hero-motion-glow {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 62%;
  width: min(44vw, 620px);
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(64,220,255,.12), transparent 68%);
  filter: blur(16px);
  animation: aiRunnerGlow 1.6s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-runner-overlay {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 69%;
  width: min(30vw, 420px);
  height: 3px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(90,235,255,.9));
}
.hero-runner-overlay span {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: rgba(210,250,255,.9);
  animation: aiSpeedLine 1.15s linear infinite;
}
.hero-runner-overlay span:nth-child(1) { width: 38%; left: 0; animation-delay: -.15s; }
.hero-runner-overlay span:nth-child(2) { width: 24%; left: 38%; animation-delay: -.55s; }
.hero-runner-overlay span:nth-child(3) { width: 16%; left: 64%; animation-delay: -.9s; }
.hero-image-content {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: clamp(28px, 5vh, 56px);
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-image-btn {
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.hero-image-btn-light {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(10px);
}
.hero-image-btn-light:hover {
  color: #fff;
  background: rgba(255,255,255,.2);
}
@keyframes aiHeroVideoDrift {
  0%, 100% { transform: scale(1.02) translate3d(-.25%, 0, 0); }
  50% { transform: scale(1.045) translate3d(.25%, -.15%, 0); }
}
@keyframes aiRunnerGlow {
  from { opacity: .55; transform: translate(-50%, -50%) scale(.96); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes aiSpeedLine {
  from { transform: translateX(-35%) scaleX(.7); opacity: 0; }
  25% { opacity: 1; }
  to { transform: translateX(35%) scaleX(1.15); opacity: 0; }
}
@media (max-width: 768px) {
  .hero-image-section { min-height: 610px; }
  .hero-image { inset: 0; width: 100%; height: 100%; object-position: 50% 50%; animation-duration: 8s; }
  .hero-motion-glow { top: 61%; width: 80vw; height: 160px; }
  .hero-runner-overlay { top: 68%; width: 65vw; }
  .hero-image-content { width: calc(100% - 28px); bottom: 22px; }
  .hero-image-btn { flex: 1 1 160px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image, .hero-motion-glow, .hero-runner-overlay span { animation: none !important; }
}
