/* =====================================================
   BRIGHTSPHERE TECHNOLOGIES — Main Stylesheet
   Brand: #0d0d14 (bg) | #00d4ff (cyan) | #a855f7 (purple) | #fff (text)
   ===================================================== */

:root {
  --bg: #0d0d14;
  --bg-2: #12121f;
  --bg-card: #161626;
  --bg-card-hover: #1c1c2e;
  --cyan: #00d4ff;
  --purple: #a855f7;
  --white: #ffffff;
  --grey: #94a3b8;
  --grey-light: #cbd5e1;
  --border: rgba(255,255,255,0.08);
  --glow-cyan: rgba(0, 212, 255, 0.15);
  --glow-purple: rgba(168, 85, 247, 0.15);
  --gradient: linear-gradient(135deg, var(--cyan), var(--purple));
  --font-body: 'Inter', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; transition: all 0.3s; text-decoration: none;
  border: none; font-family: var(--font-body);
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 0 24px rgba(0,212,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,212,255,0.5); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION HEADERS ---- */
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { color: var(--grey); max-width: 540px; margin: 0 auto; font-size: 1.1rem; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(13,13,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.nav-brand { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--white); }
.nav-brand-sub { font-weight: 400; color: var(--grey); }
.nav-links { display: flex; gap: 32px; list-style: none; margin-left: auto; }
.nav-links a { color: var(--grey-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta { margin-left: 16px; padding: 10px 24px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 120px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
}
.hero-glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--cyan), transparent 70%); top: -200px; right: -100px; }
.hero-glow-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--purple), transparent 70%); bottom: -200px; left: -100px; }

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--cyan); font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 24px; line-height: 1.1; }
.hero-subtitle { color: var(--grey); font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--grey); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-globe-wrapper { position: relative; width: 420px; height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-globe { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; animation: floatGlobe 6s ease-in-out infinite; }
.globe-orbit {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: rotateOrbit 8s linear infinite;
}
.globe-orbit-1 { width: 460px; height: 460px; border-color: rgba(0,212,255,0.2); animation-duration: 10s; }
.globe-orbit-2 { width: 500px; height: 500px; border-color: rgba(168,85,247,0.15); animation-direction: reverse; animation-duration: 15s; }

@keyframes floatGlobe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes rotateOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--grey); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--grey), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* =====================================================
   SERVICES
   ===================================================== */
.services { padding: 120px 0; background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); background: var(--bg-card-hover); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.service-card.featured { border-color: rgba(0,212,255,0.4); background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(168,85,247,0.05)); }
.service-badge { position: absolute; top: 16px; right: 16px; padding: 4px 12px; background: var(--gradient); border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--grey); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--cyan); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { gap: 8px; }

/* =====================================================
   ABOUT
   ===================================================== */
.about { padding: 120px 0; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-globe { width: 360px; height: 360px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(0,212,255,0.2); box-shadow: 0 0 60px rgba(0,212,255,0.2); }
.about-globe img { width: 100%; height: 100%; object-fit: cover; }
.about-float-card {
  position: absolute; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.9rem; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: floatGlobe 4s ease-in-out infinite;
}
.about-card-1 { top: 40px; right: -20px; animation-delay: 0s; }
.about-card-2 { bottom: 60px; left: -20px; animation-delay: 2s; }
.card-icon { font-size: 1.4rem; }
.about-content .section-tag { display: inline-block; margin-bottom: 16px; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }
.about-lead { font-size: 1.15rem; color: var(--grey-light); margin-bottom: 16px; }
.about-content p { color: var(--grey); margin-bottom: 32px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pillar { display: flex; align-items: flex-start; gap: 16px; }
.pillar-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; margin-top: 6px; }
.pillar strong { display: block; margin-bottom: 4px; }
.pillar p, .pillar div { color: var(--grey); font-size: 0.95rem; }

/* =====================================================
   WHY US
   ===================================================== */
.why-us { padding: 120px 0; background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s; }
.why-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); }
.why-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; opacity: 0.6; }
.why-card h4 { font-size: 1.05rem; margin-bottom: 12px; }
.why-card p { color: var(--grey); font-size: 0.9rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact { padding: 120px 0; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 24px; padding: 64px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start;
}
.contact-glow { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,212,255,0.1), transparent 70%); pointer-events: none; }
.contact-content .section-tag { margin-bottom: 16px; }
.contact-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.contact-content > p { color: var(--grey); margin-bottom: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s; width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey); }
.contact-form select { appearance: none; }
.contact-form select option { background: var(--bg-card); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--cyan); }
.contact-form textarea { resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 32px; padding-top: 100px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon { font-size: 1.8rem; flex-shrink: 0; }
.info-item strong { display: block; margin-bottom: 4px; }
.info-item div { color: var(--grey); font-size: 0.9rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand .footer-logo { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { color: var(--grey); font-size: 0.9rem; max-width: 300px; line-height: 1.7; margin-top: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-col h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--grey-light); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; color: var(--grey); font-size: 0.85rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 48px; padding: 48px; }
  .contact-info { padding-top: 0; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-globe-wrapper { width: 280px; height: 280px; }
  .globe-orbit-1 { width: 310px; height: 310px; }
  .globe-orbit-2 { width: 340px; height: 340px; }
  .hero-subtitle, .hero-cta { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-container { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
}

/* =====================================================
   OUR WORK
   ===================================================== */
.work { padding: 120px 0; background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: all 0.3s;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.work-card-large {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(168,85,247,0.05));
  border-color: rgba(0,212,255,0.25);
}
.work-tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.3);
  color: #c084fc; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.work-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.work-card p { color: var(--grey); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.work-stats {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.work-stats span {
  padding: 4px 12px; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--grey-light);
}
.work-footer {
  text-align: center; margin-top: 48px;
  padding: 40px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.work-footer p {
  color: var(--grey); margin-bottom: 24px; font-size: 0.95rem;
}

/* =====================================================
   TECH STACK
   ===================================================== */
.stack { padding: 120px 0; background: var(--bg-2); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stack-category {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s;
}
.stack-category:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-2px);
}
.stack-category h4 {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cyan);
  margin-bottom: 16px;
}
.stack-items { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-tag {
  padding: 6px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--grey-light); font-weight: 500;
  transition: all 0.2s;
}
.stack-tag:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
  color: var(--cyan);
}

/* =====================================================
   SERVICES 4-COL GRID
   ===================================================== */
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =====================================================
   FOOTER CONTACT ROW
   ===================================================== */
.footer-contact-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; flex-wrap: wrap;
}
.footer-contact-row a {
  color: var(--cyan); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: opacity 0.2s;
}
.footer-contact-row a:hover { opacity: 0.8; }
.footer-contact-row span { color: var(--grey); }

/* =====================================================
   RESPONSIVE ADDITIONS
   ===================================================== */
@media (max-width: 1200px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card-large { grid-column: span 2; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card-large { grid-column: span 1; }
  .stack-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* =====================================================
   FLAGSHIP PRODUCTS
   ===================================================== */
.flagship { padding: 120px 0; background: var(--bg-2); }

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.flagship-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flagship-ff {
  border-color: rgba(0, 212, 255, 0.2);
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(13,13,20,1));
}

.flagship-apex {
  border-color: rgba(168, 85, 247, 0.25);
  background: linear-gradient(135deg, rgba(168,85,247,0.05), rgba(13,13,20,1));
}

.flagship-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.flagship-ff:hover { border-color: rgba(0,212,255,0.4); }
.flagship-apex:hover { border-color: rgba(168,85,247,0.4); }

.flagship-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flagship-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.flagship-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}

.flagship-apex .flagship-tag { color: #c084fc; }

.flagship-header h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.flagship-tagline {
  color: var(--grey);
  font-size: 0.95rem;
  font-style: italic;
}

.flagship-desc {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
}

.flagship-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.flagship-metric { text-align: center; }

.metric-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-lbl {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flagship-stack,
.flagship-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flagship-stack span,
.flagship-modules span {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.flagship-stack span {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan);
}

.flagship-modules span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--grey-light);
}

.flagship-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flagship-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.feat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.flagship-feature strong { display: block; margin-bottom: 3px; font-size: 0.9rem; }
.flagship-feature div { color: var(--grey); font-size: 0.85rem; line-height: 1.5; }

.flagship-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
}

.flagship-price {
  color: var(--grey);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .flagship-grid { grid-template-columns: 1fr; }
  .flagship-metrics { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .flagship-metrics { grid-template-columns: repeat(2, 1fr); }
  .flagship-card { padding: 28px 20px; }
}

/* =====================================================
   LUCIDE ICON SIZING
   ===================================================== */
.service-icon i { width: 40px; height: 40px; stroke: url(#grad) var(--cyan); stroke-width: 1.5; }
.service-icon { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 16px; }
.service-icon svg { width: 40px; height: 40px; stroke: var(--cyan); stroke-width: 1.5; }

.flagship-icon svg { width: 32px; height: 32px; stroke: var(--cyan); stroke-width: 1.5; }
.flagship-apex .flagship-icon svg { stroke: #c084fc; }

.feat-icon svg { width: 20px; height: 20px; stroke: var(--cyan); stroke-width: 2; flex-shrink: 0; }
.flagship-apex .feat-icon svg { stroke: #c084fc; }

.card-icon svg { width: 20px; height: 20px; stroke: var(--cyan); stroke-width: 2; }

.info-icon svg { width: 28px; height: 28px; stroke: var(--cyan); stroke-width: 1.5; }

.hero-badge svg { width: 14px; height: 14px; stroke: var(--cyan); stroke-width: 2; display: inline; vertical-align: middle; margin-right: 2px; }
