
  :root {
    --orange:       #F97316;
    --orange-light: #FB923C;
    --orange-glow:  #FDBA74;
    --navy:         #0F1B35;
    --navy-mid:     #1A2D52;
    --navy-light:   #243A68;
    --white:        #FFF8F3;
    --muted:        #94A3C0;
    --card-bg:      rgba(255,255,255,0.04);
    --border:       rgba(249,115,22,0.2);
    --border-navy:  rgba(255,255,255,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* Ambient background */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 15% 10%, rgba(249,115,22,0.10) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 85% 85%, rgba(249,115,22,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 55% 40%, rgba(26,45,82,0.8) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
  }

  /* ===== TICKER ===== */
  .ticker {
    background: linear-gradient(90deg, var(--orange), #EA580C, var(--orange));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  @keyframes shimmer { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }

  /* ===== NAVBAR ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(15,27,53,0.90);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-navy);
    height: 72px;
  }

  .logo-img { height: 52px; width: auto; display: block; }

  .nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
  .nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: var(--orange-light); }

  .btn-nav {
    background: var(--orange) !important;
    color: #fff !important;
    padding: 0.5rem 1.3rem;
    border-radius: 100px;
    font-weight: 700 !important;
    transition: background 0.2s, transform 0.2s !important;
    box-shadow: 0 2px 16px rgba(249,115,22,0.4);
  }
  .btn-nav:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

  /* ===== HERO ===== */
  .hero {
    position: relative; z-index: 1;
    min-height: 88vh;
    display: flex; align-items: center;
    padding: 5rem 5% 4rem;
    gap: 4rem;
  }

  .hero-content { flex: 1; max-width: 620px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.4);
    color: var(--orange-light);
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--orange);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.6)} }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--orange), var(--orange-glow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero p {
    color: var(--muted); font-size: 1.05rem; line-height: 1.75;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange), #EA580C);
    color: #fff;
    padding: 0.9rem 2rem; border-radius: 100px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(249,115,22,0.45);
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(249,115,22,0.6);
  }

  .btn-outline {
    border: 1.5px solid rgba(249,115,22,0.5);
    color: var(--orange-light);
    padding: 0.9rem 2rem; border-radius: 100px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-outline:hover {
    background: rgba(249,115,22,0.1);
    border-color: var(--orange);
    transform: translateY(-2px);
  }

  .hero-trust {
    display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.85rem; color: var(--muted);
  }
  .trust-icon {
    width: 32px; height: 32px;
    background: rgba(249,115,22,0.15);
    border-radius: 8px; display: grid; place-items: center; font-size: 1rem;
    border: 1px solid rgba(249,115,22,0.2);
  }

  /* ===== HERO VISUAL ===== */
  .hero-visual {
    flex: 0 0 400px;
    display: flex; align-items: center; justify-content: center;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .orbit-wrap { position: relative; width: 380px; height: 380px; }

  .orbit-ring {
    position: absolute; border-radius: 50%; border: 1.5px solid;
    animation: spin 20s linear infinite;
  }
  .or1 { inset: 0; border-color: rgba(249,115,22,0.3); }
  .or2 { inset: 22px; border-color: rgba(249,115,22,0.18); animation-duration: 14s; animation-direction: reverse; }
  .or3 { inset: 44px; border-color: rgba(249,115,22,0.10); animation-duration: 28s; }

  .or1::after, .or2::after, .or3::after {
    content: '';
    position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px var(--orange), 0 0 28px rgba(249,115,22,0.4);
  }
  .or2::after { background: var(--orange-light); }
  .or3::after { background: var(--orange-glow); box-shadow: 0 0 10px var(--orange-glow); }

  @keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

  .orbit-center {
    position: absolute; inset: 78px;
    background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(26,45,82,0.6));
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249,115,22,0.35);
    box-shadow: 0 0 40px rgba(249,115,22,0.15);
  }
  .orbit-icon { font-size: 3.2rem; line-height: 1; }
  .orbit-label {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 0.75rem; color: var(--orange-light);
    letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem;
  }

  .stat-float {
    position: absolute;
    background: rgba(15,27,53,0.92);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 0.75rem 1.1rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .stat-float .n {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem;
    color: var(--orange);
  }
  .stat-float .l { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }

  .sf1 { bottom: 28px; left: -12px; animation: floatY 4s ease-in-out infinite; }
  .sf2 { top: 24px; right: -12px; animation: floatY 4s 1.2s ease-in-out infinite; }
  .sf3 { bottom: 50%; right: -48px; transform: translateY(50%); animation: floatY2 4s 2s ease-in-out infinite; }
  @keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes floatY2 { 0%,100%{transform:translateY(50%)} 50%{transform:translateY(calc(50% - 8px))} }

  @keyframes fadeUp {
    from{opacity:0;transform:translateY(22px)}
    to{opacity:1;transform:translateY(0)}
  }

  /* ===== GENERIC SECTION ===== */
  section { position: relative; z-index: 1; padding: 5rem 5%; }

  .section-label {
    display: inline-block; color: var(--orange);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 0.8rem;
  }
  .section-subtitle {
    color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 560px;
  }

  /* ===== FEATURES ===== */
  .features-header { text-align: center; margin-bottom: 3rem; }
  .features-header .section-subtitle { margin: 0 auto; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-navy);
    border-radius: 20px; padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
  }
  .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249,115,22,0.4);
    box-shadow: 0 8px 40px rgba(249,115,22,0.10);
  }
  .feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(249,115,22,0.22), rgba(26,45,82,0.5));
    border-radius: 14px; display: grid; place-items: center;
    font-size: 1.5rem; margin-bottom: 1.2rem;
    border: 1px solid rgba(249,115,22,0.25);
  }
  .feature-card h3 {
    font-family: 'Syne', sans-serif; font-size: 1.05rem;
    font-weight: 700; margin-bottom: 0.55rem;
  }
  .feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

  /* ===== STATS STRIP ===== */
  .stats-strip {
    position: relative; z-index: 1;
    margin: 0 5%;
    background: linear-gradient(135deg, var(--orange), #C2410C);
    border-radius: 24px; padding: 3rem 4rem;
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 2rem; text-align: center;
    box-shadow: 0 16px 64px rgba(249,115,22,0.30);
  }
  .stat-item .big {
    font-family: 'Syne', sans-serif; font-size: 2.8rem;
    font-weight: 800; color: #fff; line-height: 1;
  }
  .stat-item .small { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 0.35rem; }
  .stat-divider {
    border: none; border-right: 1px solid rgba(255,255,255,0.2);
    margin: 0;
  }

  /* ===== PRODUCTS ===== */
  .products-section { background: rgba(255,255,255,0.015); }
  .products-layout {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 4rem; align-items: start;
  }

  .products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

  .product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-navy);
    border-radius: 16px; padding: 1.6rem;
    text-align: center; cursor: pointer;
    transition: all 0.3s;
  }
  .product-card:hover {
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.45);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(249,115,22,0.12);
  }
  .product-card .p-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .product-card h4 {
    font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; line-height: 1.3;
  }

  /* ===== WHY ===== */
  .why-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem; margin-top: 3rem;
  }
  .why-card {
    background: var(--card-bg);
    border: 1px solid var(--border-navy);
    border-radius: 20px; padding: 2rem;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .why-card:hover { border-color: rgba(249,115,22,0.3); }
  .why-card:hover::before { opacity: 1; }
  .why-num {
    font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
    color: rgba(249,115,22,0.15); line-height: 1; margin-bottom: 0.5rem;
  }
  .why-card h3 {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem;
    color: var(--orange-light); margin-bottom: 0.6rem;
  }
  .why-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

  /* ===== CTA ===== */
  .cta-section { text-align: center; padding: 6rem 5%; }
  .cta-box {
    max-width: 700px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(26,45,82,0.5));
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 28px; padding: 4rem 3rem;
    backdrop-filter: blur(10px); position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute; top: -80%; left: 50%; transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
    pointer-events: none;
  }
  .cta-box h2 {
    font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem;
  }
  .cta-box p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border-navy);
    padding: 3.5rem 5%;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }
  .footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 1rem; }
  .footer-contact a {
    color: var(--orange-light); text-decoration: none;
    font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 0.5rem; transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--orange); }
  footer h5 {
    font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 1rem;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.55rem; }
  .footer-links a {
    color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--orange-light); }

  .footer-bottom {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border-navy);
    padding: 1.4rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--muted);
  }
  .footer-tagline {
    color: var(--orange);
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.8rem;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .hero { flex-direction: column; min-height: auto; padding-top: 3.5rem; }
    .hero-visual { display: none; }
    .products-layout { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .stats-strip { grid-template-columns: repeat(2,1fr); margin: 0 2%; }
    .why-grid { grid-template-columns: 1fr; }
    footer { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .stats-strip { padding: 2rem; }
    .cta-box { padding: 2.5rem 1.5rem; }
    .nav-links { gap: 1rem; }
    .nav-links li:not(:last-child) { display: none; }
  }

/* =========================================================
   Cohesive Typography + Spacing Tuning (Enterprise polish)
   Appended as overrides to keep the redesign intact.
   ========================================================= */

/* Type scale */
:root{
  --h1: clamp(2.0rem, 3.4vw, 2.9rem);
  --h2: clamp(1.6rem, 2.4vw, 2.15rem);
  --h3: 1.15rem;
  --body: 1rem;
  --small: .92rem;
  --lh-tight: 1.14;
  --lh: 1.55;
  --radius2: 22px;
}

/* Global rhythm */
body{
  font-size: var(--body);
  line-height: var(--lh);
  letter-spacing: .1px;
}

/* Section headers */
.section-title{
  font-size: var(--h2) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em;
  margin-bottom: .55rem !important;
}

.section-subtitle{
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  max-width: 70ch;
  margin: 0 auto !important;
}

/* Hero typography */
.hero h1{
  font-size: var(--h1) !important;
  font-weight: 850 !important;
  line-height: 1.18 !important;
  margin-bottom: 1.15rem !important;
  letter-spacing: -0.01em;
}

.hero p{
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  max-width: 62ch;
}

/* Navbar: reduce visual noise + align to enterprise feel */
nav{
  padding: 1rem 5% !important;
}
.nav-links a{
  font-size: .97rem;
  letter-spacing: .15px;
}
.btn-primary, .btn-outline{
  font-size: .97rem;
  padding: 12px 18px !important;
}

/* Cards: consistent padding + radius */
.feature-card{
  border-radius: var(--radius2) !important;
  padding: 1.7rem !important;
}
.feature-card h3{
  font-size: var(--h3) !important;
  line-height: 1.25 !important;
  margin: .6rem 0 .5rem !important;
}
.feature-card p{
  font-size: .98rem !important;
  line-height: 1.75 !important;
}

/* Grid gaps: slightly tighter and more consistent */
.features-grid{
  gap: 1.3rem !important;
}
.products-grid{
  gap: 1.1rem !important;
}
.products-layout{
  gap: 2.2rem !important;
}

/* Section padding: slightly tighter for cohesion */
section{
  scroll-margin-top: 90px;
}
/* Keep custom per-section padding, but soften extremes */
.features-section, .products-section, .cta-section{
  padding-top: 4.4rem !important;
  padding-bottom: 4.4rem !important;
}

/* Footer typography */
footer h3{
  font-size: 1.05rem !important;
}
footer a, footer p{
  font-size: .95rem !important;
  line-height: 1.7 !important;
}

/* Mobile tune */
@media (max-width: 768px){
  .section-subtitle{font-size: .98rem !important;}
  .hero p{font-size: 1.0rem !important;}
  .feature-card{padding: 1.4rem !important;}
}
