/* ═══ Reset ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #0B1120; color: #E2E8F0; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══ Typography ═══ */
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(42px, 6.5vw, 78px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }

.text-light  { color: #E2E8F0; }
.text-muted  { color: #334155; }
.text-ghost  { color: rgba(148,163,184,0.15); }

.grad-blue-teal       { background: linear-gradient(135deg, #3B82F6, #14B8A6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-teal-green      { background: linear-gradient(135deg, #14B8A6, #22C55E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-blue-teal-green { background: linear-gradient(135deg, #3B82F6, #14B8A6, #22C55E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-blue            { background: linear-gradient(135deg, #3B82F6, #60A5FA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-green-teal      { background: linear-gradient(135deg, #22C55E, #14B8A6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══ Layout ═══ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 650px;  margin: 0 auto; padding: 0 32px; }
.section      { padding: 100px 0; }

.section-head { margin-bottom: 52px; }
.section-head h2 { margin: 14px 0 14px; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-sub {
  font-size: 16px;
  color: #64748B;
  line-height: 1.65;
  max-width: 600px;
  margin-top: 8px;
}

/* ═══ Buttons ═══ */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3B82F6, #14B8A6);
  padding: 15px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(20,184,166,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(20,184,166,0.45); }
.btn-lg { padding: 16px 48px; font-size: 16px; }

.btn-ghost {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #94A3B8;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  padding: 15px 38px;
  border-radius: 50px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); color: #CBD5E1; }

/* ═══ Scrollbar ═══ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0B1120; }
::-webkit-scrollbar-thumb { background: rgba(20,184,166,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20,184,166,0.4); }
::selection { background: rgba(20,184,166,0.3); color: #fff; }

/* ═══ NAV ═══ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 16px 0;
  transition: padding 0.4s, background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 8px 0;
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(59,130,246,0.08);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-box {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #3B82F6, #14B8A6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.logo-sm { width: 22px; height: 22px; border-radius: 6px; font-size: 10px; }
.nav-logo span { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: #E2E8F0; letter-spacing: -0.3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: rgba(148,163,184,0.8); padding: 8px 12px; border-radius: 8px;
  transition: color 0.3s;
}
.nav-links a:hover { color: #5EEAD4; }
.nav-cta {
  color: #fff !important;
  background: linear-gradient(135deg, #3B82F6, #14B8A6);
  padding: 9px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(20,184,166,0.25);
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(20,184,166,0.4) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #E2E8F0; border-radius: 2px; }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #0B1120 0%, #0F1D32 35%, #0B1929 65%, #0B1120 100%);
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
}
.orb-a { width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); top: -8%; right: -8%; animation: orbA 22s ease-in-out infinite; }
.orb-b { width: 600px; height: 600px; background: radial-gradient(circle, rgba(20,184,166,0.10) 0%, transparent 70%); bottom: -5%; left: -6%; animation: orbB 26s ease-in-out infinite; }
.orb-c { width: 500px; height: 500px; background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%); top: 45%; left: 35%; animation: orbC 19s ease-in-out infinite; }

@keyframes orbA { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-35px,45px) scale(1.06)} 66%{transform:translate(25px,-25px) scale(0.94)} }
@keyframes orbB { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(45px,-35px) scale(1.08)} 66%{transform:translate(-25px,35px) scale(0.92)} }
@keyframes orbC { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,-30px) scale(1.07)} }

.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.05) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}

.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 140px 32px 100px;
  position: relative; z-index: 1;
  animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
@keyframes heroIn { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,184,166,0.08); border: 1px solid rgba(20,184,166,0.18);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #2DD4BF; box-shadow: 0 0 10px #2DD4BF; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-badge span { font-size: 13px; color: #94A3B8; font-weight: 500; }

.hero-content h1 { margin-bottom: 28px; max-width: 820px; }

.hero-sub {
  font-size: 19px; color: #64748B; line-height: 1.7;
  max-width: 600px; margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-tags { }
.tag-label { font-size: 11px; color: #475569; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.tags-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-pill {
  font-size: 11px; color: #475569;
  border: 1px solid rgba(59,130,246,0.08);
  padding: 5px 12px; border-radius: 20px;
  background: rgba(59,130,246,0.03);
  animation: fadeTag 0.6s ease both;
}
@keyframes fadeTag { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ═══ METRICS BANNER ═══ */
.metrics-banner {
  background: #0A0F1E;
  padding: 56px 0;
  border-top: 1px solid rgba(59,130,246,0.06);
  border-bottom: 1px solid rgba(59,130,246,0.06);
}
.metrics-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.metric { text-align: center; }
.metric-value {
  font-family: 'Sora', sans-serif; font-size: clamp(36px,5vw,52px); font-weight: 700; line-height: 1;
}
.metric-label { font-size: 12px; color: #475569; margin-top: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

/* ═══ SERVICES (Accordion) ═══ */
.services-section { background: linear-gradient(180deg,#0A0F1E 0%,#0D1424 50%,#0A0F1E 100%); }

.acc-item {
  background: rgba(59,130,246,0.02);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 20px; overflow: hidden; margin-bottom: 16px;
  transition: border-color 0.3s;
}
.acc-item:hover { border-color: rgba(59,130,246,0.12); }

.acc-header {
  padding: 26px 32px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s;
}
.acc-header:hover { background: rgba(59,130,246,0.04); }

.acc-left { display: flex; gap: 20px; align-items: center; flex: 1; }

.acc-num {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.acc-title-wrap { }
.acc-title-row { display: flex; align-items: center; gap: 10px; }
.acc-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 600; color: #E2E8F0; }
.acc-sub-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(20,184,166,0.2); border-radius: 50px; padding: 2px 10px;
}
.acc-tagline { font-size: 13px; color: #64748B; margin-top: 4px; }

.acc-right { display: flex; align-items: center; gap: 16px; }
.acc-metric-pill {
  font-size: 11px; color: #475569;
  background: rgba(59,130,246,0.06); padding: 4px 12px; border-radius: 50px;
}
.acc-chevron {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(59,130,246,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #64748B; font-size: 14px; font-weight: 700;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.acc-item.open .acc-body { max-height: 900px; }

.acc-body-inner {
  padding: 0 32px 28px;
  border-top: 1px solid rgba(59,130,246,0.06);
}

.acc-desc { font-size: 15px; color: #94A3B8; line-height: 1.7; margin: 20px 0 20px; max-width: 700px; }

.offerings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px;
}
.offering-card {
  background: rgba(59,130,246,0.03);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 12px; padding: 18px;
}
.offering-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #E2E8F0; margin-bottom: 6px; }
.offering-detail { font-size: 13px; color: #64748B; line-height: 1.55; }

.platforms-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.platforms-label { font-size: 11px; color: #475569; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.platform-pill {
  font-size: 11px; color: #64748B;
  background: rgba(20,184,166,0.06); border: 1px solid rgba(20,184,166,0.1);
  padding: 3px 10px; border-radius: 50px;
}

.acc-impact { font-size: 12px; font-weight: 600; }

/* ═══ TRUST ═══ */
.trust-section { background: #0A0F1E; border-top: 1px solid rgba(59,130,246,0.06); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px;
}
.trust-card {
  background: rgba(59,130,246,0.02);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.4s, transform 0.4s;
  cursor: default;
}
.trust-card:hover { border-color: rgba(20,184,166,0.2); transform: translateY(-4px); }
.trust-icon { font-size: 28px; margin-bottom: 14px; }
.trust-title { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; color: #E2E8F0; margin-bottom: 10px; }
.trust-desc { font-size: 14px; color: #64748B; line-height: 1.65; }

/* ═══ SOLUTIONS ═══ */
.solutions-section { background: linear-gradient(180deg,#0D1424 0%,#0A0F1E 100%); border-top: 1px solid rgba(59,130,246,0.06); }

.size-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }

.size-card {
  border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(20,184,166,0.04));
  transition: background 0.4s;
}
.size-inner { background: #0D1424; border-radius: 17px; padding: 32px; height: 100%; display: flex; flex-direction: column; }
.size-icon { font-size: 36px; margin-bottom: 16px; }
.size-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 600; color: #E2E8F0; margin-bottom: 12px; }
.size-desc { font-size: 15px; color: #64748B; line-height: 1.65; flex: 1; }
.size-budget { font-size: 13px; font-weight: 600; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(59,130,246,0.08); }

.models-box {
  margin-top: 52px;
  background: rgba(59,130,246,0.02);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 18px; padding: 32px;
}
.models-box h3 { font-size: 18px; color: #E2E8F0; margin-bottom: 6px; }
.models-box > p { font-size: 14px; color: #64748B; margin-bottom: 20px; }
.models-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.model-card { background: rgba(59,130,246,0.03); border: 1px solid rgba(59,130,246,0.06); border-radius: 10px; padding: 16px; }
.model-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: #E2E8F0; }
.model-provider { font-size: 11px; color: #14B8A6; font-weight: 500; margin-top: 2px; }
.model-best { font-size: 12px; color: #64748B; margin-top: 6px; }

/* ═══ ABOUT ═══ */
.about-section { background: #0A0F1E; border-top: 1px solid rgba(59,130,246,0.06); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { margin: 14px 0 24px; line-height: 1.15; }
.about-text p { font-size: 15px; color: #64748B; line-height: 1.75; margin-bottom: 16px; }

.team-cards { display: flex; flex-direction: column; gap: 16px; }
.team-card {
  background: rgba(59,130,246,0.02);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 14px; padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.team-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.team-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; color: #E2E8F0; }
.team-role { font-size: 12px; font-weight: 600; margin-top: 3px; }
.team-desc { font-size: 13px; color: #64748B; margin-top: 8px; line-height: 1.55; }

/* ═══ INDUSTRIES ═══ */
.industries-section { background: linear-gradient(180deg,#0D1424 0%,#0A0F1E 100%); border-top: 1px solid rgba(59,130,246,0.06); }
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 52px; }
.industry-card {
  background: rgba(59,130,246,0.02);
  border: 1px solid rgba(59,130,246,0.06);
  border-radius: 14px; padding: 22px 20px;
  text-align: left; transition: border-color 0.4s, background 0.4s, transform 0.4s; cursor: default;
}
.industry-card:hover { transform: translateY(-4px); }
.ind-icon { font-size: 28px; margin-bottom: 10px; }
.ind-name { font-family: 'Sora', sans-serif; font-size: 15px; color: #E2E8F0; font-weight: 600; margin-bottom: 6px; }
.ind-cases { font-size: 12px; color: #64748B; line-height: 1.5; }

/* ═══ CONTACT ═══ */
.contact-section { background: #0A0F1E; border-top: 1px solid rgba(59,130,246,0.06); position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section h2 { margin: 14px 0 16px; line-height: 1.15; }
.contact-sub { font-size: 16px; color: #64748B; line-height: 1.65; margin-bottom: 40px; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-email { font-size: 16px; color: #14B8A6; margin-top: 8px; transition: opacity 0.2s; }
.contact-email:hover { opacity: 0.8; }
.contact-phones { font-size: 15px; color: #475569; display: flex; align-items: center; gap: 12px; }
.contact-phones a { color: #475569; transition: color 0.2s; }
.contact-phones a:hover { color: #14B8A6; }
.divider { color: #334155; }
.contact-links { display: flex; gap: 24px; margin-top: 8px; }
.contact-links a { font-size: 13px; color: #475569; font-weight: 500; transition: color 0.3s; }
.contact-links a:hover { color: #14B8A6; }

/* ═══ FOOTER ═══ */
.footer { background: #080C1A; padding: 36px 0; border-top: 1px solid rgba(59,130,246,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo span { font-size: 12px; color: #334155; }
.footer-right { font-size: 11px; font-style: italic; color: rgba(148,163,184,0.35); }

/* ═══ Fade-up animation ═══ */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .metrics-inner { grid-template-columns: repeat(2,1fr); }
  .offerings-grid { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .acc-right .acc-metric-pill { display: none; }
  .section { padding: 70px 0; }
}
@media (max-width: 540px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .acc-header { padding: 20px; }
  .acc-body-inner { padding: 0 20px 20px; }
}
