/* ===================== VARIABLES ===================== */
:root {
  --electric-blue: #328EC5;
  --sky-blue: #69C3DA;
  --golden-yellow: #F7B026;
  --orange: #DF6B2A;
  --copper: #8B4C2A;
  --white: #FCFDFD;
  --silver: #BCBBB8;
  --slate: #6D7590;
  --navy: #2E4663;
  --bg-void: #060809;
  --bg-surface: #0C1016;
  --bg-elevated: #121820;
  --text-primary: #F4F7FA;
  --text-secondary: #A8B0BC;
  --text-muted: #546070;
  --border-subtle: rgba(255,255,255,0.055);
  --border-glow: rgba(255,255,255,0.12);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1280px;
  --accent: #328EC5;
  --border: rgba(255,255,255,0.055);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ===================== LAYOUT ===================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; position: relative; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.display-xl { font-size: clamp(3.8rem, 10vw, 8.5rem); }
.display-lg { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.display-md { font-size: clamp(2rem, 4vw, 3.4rem); }
.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo), background 0.3s, border-color 0.3s, color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98) translateY(1px) !important; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--golden-yellow) 100%);
  color: #0D0600;
  box-shadow: 0 8px 28px -10px rgba(223,107,42,0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(223,107,42,0.85); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--sky-blue); color: var(--sky-blue); transform: translateY(-2px); }

/* ===================== TAGS / PILLS ===================== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  align-self: flex-start;
  width: fit-content;
}
.tag-blue { background: rgba(50,142,197,0.12); color: var(--sky-blue); border: 1px solid rgba(50,142,197,0.22); }
.tag-orange { background: rgba(223,107,42,0.12); color: var(--orange); border: 1px solid rgba(223,107,42,0.22); }
.tag-yellow { background: rgba(247,176,38,0.12); color: var(--golden-yellow); border: 1px solid rgba(247,176,38,0.22); }
.pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: #fff;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
}

/* ===================== MISC ===================== */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: live-pulse 2.2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.grad-line { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(50,142,197,0.4) 30%, rgba(247,176,38,0.4) 70%, transparent 100%); }
.glass {
  background: rgba(12,16,22,0.7);
  backdrop-filter: blur(20px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ===================== EQUALIZER ===================== */
.equalizer { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.eq-bar { width: 3px; border-radius: 2px; background: var(--electric-blue); animation: eq 0.8s ease-in-out infinite alternate; }
.eq-bar:nth-child(2) { animation-delay: 0.12s; background: var(--sky-blue); }
.eq-bar:nth-child(3) { animation-delay: 0.24s; background: var(--golden-yellow); }
.eq-bar:nth-child(4) { animation-delay: 0.06s; }
.eq-bar:nth-child(5) { animation-delay: 0.18s; background: var(--orange); }
.eq-bar:nth-child(6) { animation-delay: 0.30s; background: var(--sky-blue); }
.eq-bar:nth-child(7) { animation-delay: 0.09s; }
.eq-bar:nth-child(8) { animation-delay: 0.21s; background: var(--golden-yellow); }
@keyframes eq { from { height: 3px; } to { height: var(--h, 24px); } }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,9,0.82);
  backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 24px;
  max-width: var(--wrap); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; mix-blend-mode: screen; }
.nav-links { display: none; align-items: center; gap: 4px; list-style: none; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link {
  padding: 8px 15px; font-size: 0.87rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: rgba(255,255,255,0.045); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: none; }
.nav-right .btn { display: none; }
@media (min-width: 900px) { .nav-right .btn { display: inline-flex; } }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 9px;
  border-radius: 4px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 18px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s var(--ease-expo), opacity 0.3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; flex-direction: column; gap: 4px; padding: 0 16px 20px; max-width: var(--wrap); margin: 0 auto; }
.nav-open .nav-drawer { display: flex; }
@media (min-width: 900px) { .nav-open .nav-drawer { display: none; } }

/* ===================== PAGE HERO ===================== */
.page-hero {
  padding: clamp(80px,10vw,130px) 0 clamp(56px,7vw,90px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,142,197,0.1) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .label { margin-bottom: 20px; }
.page-hero-content h1 { margin-bottom: 22px; }
.page-hero-content p {
  font-size: clamp(1rem,1.6vw,1.12rem);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.72;
  margin-bottom: 36px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== LAYOUT UTILITIES ===================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-2-asym { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-lg { gap: clamp(40px, 6vw, 80px); }
.mb-lg { margin-bottom: clamp(64px, 8vw, 100px); }
.align-center { align-items: center; }

@media (max-width: 991px) {
  .grid-2, .grid-3, .grid-2-asym { 
    grid-template-columns: 1fr; 
  }
}

/* ===================== SECTION INTRO ===================== */
.section-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: end;
  margin-bottom: clamp(48px,6vw,72px);
}
@media (max-width: 768px) { .section-intro { grid-template-columns: 1fr; } }
.section-intro p { font-size: 1.04rem; color: var(--text-secondary); line-height: 1.75; max-width: 44ch; margin-bottom: 28px; }

/* ===================== BENTO GRID ===================== */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
@media (max-width: 960px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }
.bc {
  background: var(--bg-surface); border: none; border-radius: 14px;
  padding: 28px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px; gap: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13);
  transition: box-shadow 0.3s, transform 0.35s var(--ease-expo);
}
.bc:hover { box-shadow: inset 0 0 0 1px rgba(50,142,197,0.45); transform: translateY(-4px); }
.bc::before { content:''; position:absolute; inset:0; border-radius:inherit; background:radial-gradient(circle at 0% 0%, rgba(50,142,197,0.05) 0%, transparent 55%); pointer-events:none; }
.bc-icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; align-self:flex-start; flex-shrink:0; }
.bc h3 { font-family:var(--font-display); font-size:1.55rem; color:var(--text-primary); letter-spacing:0.03em; margin-bottom:10px; }
.bc p { font-size:0.88rem; color:var(--text-secondary); line-height:1.65; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-4 { grid-column: span 4; }
.span-3 { grid-column: span 3; }
.span-6 { grid-column: span 6; }
.span-12 { grid-column: span 12; }
@media (max-width: 960px) { .span-5,.span-7,.span-4,.span-3,.span-6 { grid-column: span 1; } }
@media (max-width: 600px) { .span-5,.span-7,.span-4,.span-3,.span-6,.span-12 { grid-column: span 1; } }

/* ===================== EXPERIENCE FLOW ===================== */
.experience { background: linear-gradient(180deg, transparent 0%, var(--bg-surface) 12%, var(--bg-surface) 88%, transparent 100%); }
.flow-line { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-bottom:64px; }
.flow-line::before { content:''; position:absolute; top:28px; left:12.5%; right:12.5%; height:1px; background:linear-gradient(90deg,var(--orange),var(--golden-yellow),var(--electric-blue),var(--sky-blue)); z-index:0; }
@media (max-width:700px) { .flow-line { grid-template-columns:1fr; gap: 40px; } .flow-line::before { display:none; } }
.flow-step { text-align:center; padding:0 20px; }
.flow-num { width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-weight:700; font-size:1rem; margin:0 auto 20px; position:relative; z-index:1; }
.flow-step:nth-child(1) .flow-num { background:var(--orange); color:#fff; }
.flow-step:nth-child(2) .flow-num { background:var(--golden-yellow); color:#0D0500; }
.flow-step:nth-child(3) .flow-num { background:var(--electric-blue); color:#fff; }
.flow-step:nth-child(4) .flow-num { background:var(--sky-blue); color:#050C12; }
.flow-step h3 { font-size:1.5rem; color:var(--text-primary); margin-bottom:8px; }
.flow-step p { font-size:0.85rem; color:var(--text-muted); line-height:1.6; max-width:22ch; margin:0 auto; }

/* ===================== APP SCREENS ===================== */
.app-screens { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:680px; margin:0 auto; }
@media (max-width:700px) { .app-screens { grid-template-columns:1fr; gap: 24px; max-width: 320px; } }
.app-screen { background:var(--bg-elevated); border:1px solid var(--border-subtle); border-radius:18px; aspect-ratio:9/16; display:flex; align-items:center; justify-content:center; padding:20px; flex-direction:column; gap:10px; }
.app-screen.active { border-color:rgba(50,142,197,0.3); box-shadow:0 0 40px -12px rgba(50,142,197,0.2); }
.screen-label { font-family:var(--font-mono); font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); }
.screen-bar { height:3px; border-radius:2px; background:rgba(255,255,255,0.06); width:100%; }
.screen-bar.accent { background:rgba(50,142,197,0.4); }

/* ===================== INDUSTRIES ===================== */
.ind-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:3px; border-radius:18px; overflow:hidden; background:rgba(255,255,255,0.03); }
@media (max-width:700px) { .ind-grid { grid-template-columns:1fr; } }
.ind-card { background:var(--bg-surface); padding:clamp(32px,4vw,52px); position:relative; transition:transform 0.4s var(--ease-expo), box-shadow 0.4s; cursor:pointer; overflow:hidden; min-height:340px; display:flex; flex-direction:column; justify-content:flex-end; }
.ind-card-bg { position:absolute; inset:0; background-size:cover; background-position:center; transition:transform 0.6s var(--ease-expo); }
.ind-card:hover .ind-card-bg { transform:scale(1.04); }
.ind-card-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(6,8,9,0.92) 0%, rgba(6,8,9,0.65) 45%, rgba(6,8,9,0.15) 100%); transition:background 0.4s; }
.ind-card:hover .ind-card-overlay { background:linear-gradient(to top, rgba(6,8,9,0.96) 0%, rgba(6,8,9,0.72) 45%, rgba(6,8,9,0.22) 100%); }
.ind-card-content { position:relative; z-index:2; }
.ind-card:hover .ind-arrow { transform:translate(4px,-4px); color:var(--sky-blue); }
.ind-icon { width:60px; height:60px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.ind-card h3 { font-size:1.8rem; margin-bottom:12px; color:var(--text-primary); text-shadow:0 2px 12px rgba(0,0,0,0.6); }
.ind-card p { font-size:0.88rem; color:rgba(200,210,220,0.9); line-height:1.65; max-width:36ch; margin-bottom:20px; text-shadow:0 1px 8px rgba(0,0,0,0.5); }
.ind-arrow { position:absolute; top:28px; right:28px; color:var(--text-muted); transition:transform 0.3s var(--ease-expo), color 0.3s; }
.ind-tags { display:flex; gap:8px; flex-wrap:wrap; }

/* ===================== STATS ROW ===================== */
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--border-subtle); border-radius:14px; overflow:hidden; }
@media (max-width:700px) { .stats-row { grid-template-columns:repeat(2,1fr); } }
.stat-cell { padding:44px 28px; text-align:center; border-right:1px solid var(--border-subtle); }
.stat-cell:last-child { border-right:0; }
@media (max-width:700px) { .stat-cell:nth-child(2){border-right:0;} .stat-cell:nth-child(3){border-right:1px solid var(--border-subtle);} .stat-cell{border-bottom:1px solid var(--border-subtle);} .stat-cell:nth-child(3),.stat-cell:nth-child(4){border-bottom:0;} }
.stat-n { font-family:var(--font-display); font-size:clamp(2.4rem,3.5vw,3.6rem); color:var(--text-primary); line-height:1; margin-bottom:8px; letter-spacing:0.04em; }
.stat-l { font-family:var(--font-mono); font-size:0.65rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--text-muted); }
.stat-cell:nth-child(1) .stat-n { color: var(--electric-blue); }
.stat-cell:nth-child(2) .stat-n { color: var(--golden-yellow); }
.stat-cell:nth-child(3) .stat-n { color: var(--orange); }
.stat-cell:nth-child(4) .stat-n { color: var(--sky-blue); }

/* ===================== PARTNERSHIP ===================== */
.partnership-wrap { display:grid; grid-template-columns:1fr 1fr; gap:clamp(48px,7vw,100px); align-items:start; }
@media (max-width:900px) { .partnership-wrap { grid-template-columns:1fr; } }
.partner-left p { font-size:1.04rem; color:var(--text-secondary); line-height:1.75; max-width:44ch; margin:20px 0 32px; }
.check-list { display:flex; flex-direction:column; gap:12px; margin-bottom:36px; }
.check-item { display:flex; align-items:center; gap:12px; }
.check-dot { width:20px; height:20px; border-radius:50%; background:rgba(50,142,197,0.12); border:1px solid rgba(50,142,197,0.28); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.check-item span { font-size:0.9rem; color:var(--text-secondary); }
.cta-pair { display:flex; gap:12px; flex-wrap:wrap; }
.steps-list { display:flex; flex-direction:column; }
.step-row { display:grid; grid-template-columns:72px 1fr; gap:24px; padding:28px 0; border-bottom:1px solid var(--border-subtle); align-items:start; transition:border-color 0.3s; }
.step-row:last-child { border-bottom:0; }
.step-row:hover .step-n { color:rgba(50,142,197,0.5); }
.step-n { font-family:var(--font-display); font-size:3.2rem; color:rgba(255,255,255,0.055); line-height:1; transition:color 0.3s; }
.step-content h3 { font-size:1.5rem; margin-bottom:6px; }
.step-content p { font-size:0.88rem; color:var(--text-secondary); line-height:1.6; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background:linear-gradient(135deg,var(--navy) 0%,#0A1628 100%);
  border:1px solid rgba(50,142,197,0.22); border-radius:20px;
  padding:clamp(44px,6vw,76px) clamp(32px,5vw,64px);
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.cta-banner::before { content:''; position:absolute; top:-80px; right:-80px; width:360px; height:360px; background:radial-gradient(circle,rgba(50,142,197,0.16) 0%,transparent 70%); pointer-events:none; }
.cta-banner::after { content:''; position:absolute; bottom:-60px; left:20%; width:240px; height:240px; background:radial-gradient(circle,rgba(247,176,38,0.08) 0%,transparent 70%); pointer-events:none; }
.banner-content h2 { font-size:clamp(2rem,3.8vw,3.2rem); margin-bottom:12px; }
.banner-content p { color:var(--text-secondary); max-width:46ch; line-height:1.7; }
.banner-actions { display:flex; flex-direction:row; gap:10px; flex-shrink:0; flex-wrap:wrap; }

/* ===================== CONTACT / FORM ===================== */
.contact-wrap { display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(48px,7vw,100px); }
@media (max-width:900px) { .contact-wrap { grid-template-columns:1fr; } }
.contact-left p { font-size:1.04rem; color:var(--text-secondary); line-height:1.75; max-width:42ch; margin:20px 0 36px; }
.contact-info { display:flex; flex-direction:column; gap:18px; margin-bottom:36px; }
.contact-item { display:flex; align-items:center; gap:16px; }
.contact-icon { width:40px; height:40px; border-radius:9px; background:rgba(50,142,197,0.1); border:1px solid rgba(50,142,197,0.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-detail-l { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:2px; }
.contact-detail-v { font-size:0.9rem; color:var(--text-primary); transition:color 0.2s; }
.contact-detail-v:hover { color:var(--sky-blue); }
.social-row { display:flex; gap:10px; }
.soc-btn { width:36px; height:36px; border-radius:7px; background:rgba(255,255,255,0.04); border:1px solid var(--border-subtle); display:flex; align-items:center; justify-content:center; transition:background 0.2s,border-color 0.2s; }
.soc-btn:hover { background:rgba(50,142,197,0.14); border-color:rgba(50,142,197,0.35); }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:600px) { .form-row { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-label { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--text-muted); }
.form-control { width: 100%; background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:6px; padding:12px 15px; color:var(--text-primary); font-family:var(--font-body); font-size:0.9rem; outline:none; transition:border-color 0.2s; }
.form-control:focus { border-color:rgba(50,142,197,0.45); }
textarea.form-control { resize:vertical; min-height:120px; }
.form-control::placeholder { color:var(--text-muted); }

/* ===================== FOOTER ===================== */
footer { background:var(--bg-void); border-top:1px solid var(--border-subtle); padding:60px 0 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid var(--border-subtle); margin-bottom:28px; }
@media (max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:560px) { .footer-grid { grid-template-columns:1fr; } }
footer p { font-size:0.88rem; color:var(--text-muted); line-height:1.7; max-width:30ch; }
footer h4 { font-family:var(--font-mono); font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-muted); margin-bottom:18px; font-weight:400; }
.f-links { list-style:none; display:flex; flex-direction:column; gap:12px; }
.f-links a { font-size:0.88rem; color:var(--text-secondary); transition:color 0.2s; }
.f-links a:hover { color:var(--text-primary); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-bottom p { max-width:none; font-size:0.8rem; }

/* ===================== TEAM CARDS ===================== */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:960px) { .team-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .team-grid { grid-template-columns:1fr; } }
.team-card { background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:16px; padding:28px 24px; transition:border-color 0.3s,transform 0.3s var(--ease-expo); }
.team-card:hover { border-color:rgba(50,142,197,0.3); transform:translateY(-4px); }
.team-avatar { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,var(--electric-blue),var(--sky-blue)); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.5rem; color:#fff; margin-bottom:18px; }
.team-card h3 { font-size:1.3rem; color:var(--text-primary); margin-bottom:4px; }
.team-role { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--golden-yellow); margin-bottom:14px; }
.team-card p { font-size:0.85rem; line-height:1.65; }

/* ===================== FEATURE GRID ===================== */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px) { .feature-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .feature-grid { grid-template-columns:1fr; } }
.feature-card { background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:16px; padding:32px 28px; transition:border-color 0.3s, transform 0.3s var(--ease-expo); }
.feature-card:hover { border-color:rgba(50,142,197,0.28); transform:translateY(-3px); }
.feature-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.feature-card h3 { font-size:1.4rem; color:var(--text-primary); margin-bottom:10px; }
.feature-card p { font-size:0.88rem; line-height:1.65; }
.feature-card h4 { font-size:1.2rem; color:var(--text-primary); margin-bottom:8px; }

/* ===================== REVENUE MODEL ===================== */
.revenue-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:32px; }
@media (max-width:600px) { .revenue-grid { grid-template-columns:1fr; } }
.revenue-card { background:var(--bg-surface); border:1px solid var(--border-subtle); border-radius:14px; padding:28px; }
.revenue-card h3 { font-size:1.6rem; color:var(--text-primary); margin-bottom:10px; }
.revenue-card p { font-size:0.88rem; line-height:1.65; }

/* ===================== ANIMATIONS ===================== */
@keyframes fade-up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.anim { opacity:0; animation:fade-up 0.75s var(--ease-expo) forwards; }
.d1 { animation-delay:0.1s; } .d2 { animation-delay:0.2s; } .d3 { animation-delay:0.3s; }
.d4 { animation-delay:0.4s; } .d5 { animation-delay:0.5s; }
.reveal { opacity:0; transform:translateY(18px); transition:opacity 0.65s var(--ease-expo), transform 0.65s var(--ease-expo); }
.reveal.in, .reveal.visible { opacity:1; transform:translateY(0); }

/* ===================== HERO WITH MOCKUP ===================== */
.page-hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}
.page-hero-content {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.page-hero-mockup {
  flex: 0 0 auto;
  width: clamp(280px, 40%, 480px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-hero-mockup img {
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.5));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 860px) {
  .page-hero-inner { flex-direction: column; }
  .page-hero-mockup { display: none; }
}

/* ===================== RESPONSIVE UTILITY GRIDS ===================== */

/* Two-column detail layout — text+features side by side */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; } }

/* Two-column card pair (e.g. hospital/hotel cards) */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .two-col-cards { grid-template-columns: 1fr; } }

/* Four-column stat flow row */
.stat-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 48px 0 64px;
  position: relative;
}
.stat-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent, #328EC5), rgba(50,142,197,0.2));
  z-index: 0;
}
@media (max-width: 700px) {
  .stat-flow { grid-template-columns: repeat(2, 1fr); }
  .stat-flow::before { display: none; }
}
.stat-flow-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.stat-flow-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}
.stat-flow-bubble.primary {
  background: var(--accent, #328EC5);
  color: #fff;
}
.stat-flow-bubble.secondary {
  background: var(--bg-surface, #0C1016);
  border: 2px solid var(--accent, #328EC5);
  color: var(--accent, #328EC5);
}

/* ===================== MOBILE GLOBAL FIXES ===================== */
@media (max-width: 768px) {
  /* Section padding reduction */
  .section { padding: clamp(56px, 8vw, 100px) 0; }
  .section-sm { padding: clamp(36px, 5vw, 60px) 0; }

  /* Wrap padding */
  .wrap { padding: 0 16px; }

  /* Page hero content */
  .page-hero-content h1 { margin-bottom: 16px; }
  .page-hero-content p { font-size: 1rem; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }

  /* Bento cards */
  .bc { min-height: 260px; }

  /* CTA banner */
  .cta-banner { flex-direction: column; text-align: center; }
  .banner-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  /* Stats row — 2 col on mobile */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Section intro stack */
  .section-intro { grid-template-columns: 1fr; }

  /* Feature grid 4-col → 1 col */
  .feature-grid { grid-template-columns: 1fr; }

  /* Process cards */
  .process-cards { grid-template-columns: 1fr; }

  /* Nav CTA */
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 0.82rem; }
  .display-lg { font-size: clamp(2rem, 8vw, 3rem); }
  .display-xl { font-size: clamp(3rem, 10vw, 5rem); }
  .stat-flow { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-flow-bubble { width: 52px; height: 52px; font-size: 0.78rem; }
  .two-col-cards { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .bc { min-height: 220px; padding: 20px; }
  footer p { max-width: none; }
}
