  :root {
    --navy: #0a1628;
    --navy-mid: #0f2240;
    --navy-light: #1a3a5c;
    --cyan: #00c8e0;
    --cyan-light: #a8f0f8;
    --gold: #f0a500;
    --gold-light: #fdd880;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --mid-gray: #e2e8f0;
    --text-dark: #0a1628;
    --text-mid: #334155;
    --text-muted: #64748b;
    --section-pad: 100px 0;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
  }

  h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; }

  /* ─── NAVBAR ─── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: 0 2px 20px rgba(10,22,40,0.08);
    transition: all 0.3s ease;
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon img {
    width: 380px;
    height: auto;
    display: block;
  }
  .logo-icon {
    width: 220px;
    height: 44px;
    /* background: var(--navy); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-icon svg { width: 26px; height: 26px; }

  .logo-text-block {

  }
  .logo-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
    line-height: 1.2;
  }
  .logo-sub {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 2px;
    background: var(--cyan);
    transition: right 0.3s ease;
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--navy);
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--navy-light) !important; transform: translateY(-1px); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ─── MOBILE MENU ─── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--mid-gray);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }
  .mobile-menu a:last-child { border-bottom: none; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 76px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  /* Grid pattern */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,200,224,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,200,224,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* Glowing orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-pulse 6s ease-in-out infinite alternate;
  }
  .orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,200,224,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
  }
  .orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
    bottom: -50px; left: 10%;
    animation-delay: -3s;
  }

  @keyframes orb-pulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.2); opacity: 1; }
  }

  /* Floating particles */
  .particles {
    position: absolute;
    inset: 0;
  }
  .particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle linear infinite;
  }

  @keyframes float-particle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100px) translateX(40px); opacity: 0; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,224,0.12);
    border: 1px solid rgba(0,200,224,0.3);
    color: var(--cyan-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fade-up 0.8s ease both;
  }
  .hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
  }
  @keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    animation: fade-up 0.8s ease 0.15s both;
  }

  .hero-title .accent { color: var(--cyan); }
  .hero-title .gold { color: var(--gold); }

  .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fade-up 0.8s ease 0.3s both;
  }

  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
    animation: fade-up 0.8s ease 0.45s both;
  }
  .hero-tag {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fade-up 0.8s ease 0.6s both;
  }

  .btn-primary {
    background: var(--cyan);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
  }
  .btn-primary:hover { background: white; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,200,224,0.3); }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
  }
  .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

  /* Hero visual side */
  .hero-visual {
    animation: fade-up 1s ease 0.3s both;
    position: relative;
  }

  .hero-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    animation: fade-left 0.8s ease both;
  }
  .hero-card:hover { background: rgba(255,255,255,0.1); transform: translateX(-4px); }
  .hero-card:nth-child(1) { animation-delay: 0.5s; }
  .hero-card:nth-child(2) { animation-delay: 0.65s; }
  .hero-card:nth-child(3) { animation-delay: 0.8s; }
  .hero-card:nth-child(4) { animation-delay: 0.95s; }

  .hero-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .ic-cyan { background: rgba(0,200,224,0.2); color: var(--cyan); }
  .ic-gold { background: rgba(240,165,0,0.2); color: var(--gold); }
  .ic-green { background: rgba(34,197,94,0.2); color: #22c55e; }
  .ic-purple { background: rgba(139,92,246,0.2); color: #a78bfa; }

  .hero-card-text h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .hero-card-text p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
  }

  /* Certified badge */
  .cert-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #e08800 100%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    animation: fade-left 0.8s ease 1.1s both;
  }
  .cert-badge i { color: white; font-size: 20px; }
  .cert-badge-text { color: white; }
  .cert-badge-text strong { display: block; font-family: 'Sora',sans-serif; font-size: 13px; font-weight: 700; }
  .cert-badge-text span { font-size: 11px; opacity: 0.85; }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fade-left {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: var(--section-pad); }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--cyan);
    display: inline-block;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
  }

  .section-header { margin-bottom: 3.5rem; }
  .section-header.center { text-align: center; }
  .section-header.center .section-label { justify-content: center; }
  .section-header.center .section-desc { margin: 0 auto; }

  /* ─── ABOUT ─── */
  #about { background: var(--off-white); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-main-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .about-main-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,200,224,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-main-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
  }
  .about-main-card p {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .about-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
  }
  .mini-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
  }
  .mini-stat .num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    display: block;
  }
  .mini-stat .lbl {
    font-size: 12px;
    opacity: 0.65;
    margin-top: 2px;
  }

  .about-cert-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 50px rgba(10,22,40,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
  }
  .about-cert-card .cert-dot {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #f0a500, #e08800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }
  .about-cert-card strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
  .about-cert-card span { font-size: 11px; color: var(--text-muted); }

  .about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .value-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--mid-gray);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .value-row:hover { box-shadow: 0 8px 30px rgba(10,22,40,0.08); transform: translateY(-2px); }
  .value-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .value-row h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
  .value-row p { font-size: 13px; color: var(--text-muted); }

  /* ─── SERVICES ─── */
  #services { background: white; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(10,22,40,0.1);
    transform: translateY(-6px);
    border-color: transparent;
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    margin-top: 1.25rem;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
  }
  .service-link:hover { gap: 10px; color: var(--cyan); }

  /* ─── STATS ─── */
  #stats {
    background: var(--navy);
    padding: 80px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .stat-item {
    background: var(--navy);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
  }
  .stat-item:hover { background: var(--navy-mid); }

  .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
  }
  .stat-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0.75rem;
    display: block;
  }

  /* ─── INDUSTRIES ─── */
  #industries { background: var(--off-white); }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .industry-card {
    background: white;
    border: 1px solid var(--mid-gray);
    border-radius: 14px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
  }
  .industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10,22,40,0.15);
  }
  .industry-card:hover .ind-icon,
  .industry-card:hover .ind-name { color: white; }
  .industry-card:hover .ind-icon { background: rgba(255,255,255,0.12); }

  .ind-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    margin: 0 auto 0.75rem;
    transition: all 0.3s;
  }
  .ind-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    transition: color 0.3s;
  }

  /* ─── ERPNEXT PARTNER ─── */
  #partner {
    background: white;
  }

  .partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .partner-badge-big {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .partner-badge-big::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .partner-seal {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--gold), #e08800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(240,165,0,0.4);
    animation: seal-glow 3s ease infinite alternate;
  }
  @keyframes seal-glow {
    from { box-shadow: 0 0 30px rgba(240,165,0,0.3); }
    to { box-shadow: 0 0 60px rgba(240,165,0,0.6); }
  }

  .partner-badge-big h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--gold);
  }
  .partner-badge-big p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 1.5rem;
  }

  .partner-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    text-align: left;
  }
  .benefit-pill {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .benefit-pill i { color: var(--cyan); font-size: 11px; }

  .partner-points { display: flex; flex-direction: column; gap: 1.5rem; }
  .partner-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .pp-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,200,224,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cyan);
    flex-shrink: 0;
  }
  .partner-point h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .partner-point p { font-size: 14px; color: var(--text-muted); }

  /* ─── AI SECTION ─── */
  #ai-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,200,224,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,200,224,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
  }

  .ai-left .section-label { color: var(--cyan); }
  .ai-left .section-title { color: white; }
  .ai-left .section-desc { color: rgba(255,255,255,0.6); }

  .ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .ai-feat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: background 0.3s;
  }
  .ai-feat:hover { background: rgba(0,200,224,0.1); border-color: rgba(0,200,224,0.3); }
  .ai-feat i { font-size: 20px; color: var(--cyan); margin-bottom: 0.75rem; display: block; }
  .ai-feat h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
  .ai-feat p { font-size: 12px; color: rgba(255,255,255,0.5); }

  .ai-visual {
    position: relative;
  }

  .ai-terminal {
    background: #0d1b2e;
    border: 1px solid rgba(0,200,224,0.2);
    border-radius: 16px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
  }
  .terminal-bar {
    background: rgba(255,255,255,0.05);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .t-dot { width: 10px; height: 10px; border-radius: 50%; }
  .t-dot.red { background: #ff5f57; }
  .t-dot.yellow { background: #febc2e; }
  .t-dot.green { background: #28c840; }
  .terminal-title { font-family: 'DM Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.4); margin-left: 0.5rem; }

  .terminal-body { padding: 1.5rem; }
  .t-line { font-size: 13px; margin-bottom: 6px; line-height: 1.6; }
  .t-prompt { color: var(--cyan); }
  .t-cmd { color: #94d8e8; }
  .t-comment { color: rgba(255,255,255,0.3); }
  .t-success { color: #22c55e; }
  .t-output { color: rgba(255,255,255,0.65); }
  .t-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--cyan);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
  }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

  /* ─── CUSTOM DEV ─── */
  #custom-dev { background: var(--off-white); }

  .custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .custom-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .showcase-card {
    background: white;
    border: 1px solid var(--mid-gray);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s;
  }
  .showcase-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10,22,40,0.08);
  }
  .sc-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .showcase-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .showcase-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

  /* ─── PROCESS ─── */
  #process { background: white; }

  .process-timeline {
    position: relative;
    display: flex;
    gap: 0;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    z-index: 0;
  }

  .process-step {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    text-align: center;
  }

  .step-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 auto 1.25rem;
    transition: all 0.3s;
    position: relative;
  }
  .process-step:hover .step-circle {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(10,22,40,0.25);
  }

  .process-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
  }
  .process-step p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--off-white); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .testi-card {
    background: white;
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
  }
  .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.08);
  }

  .stars { color: var(--gold); font-size: 14px; margin-bottom: 1rem; }

  .testi-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
  }
  .author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .testi-author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
  .testi-author span { font-size: 12px; color: var(--text-muted); }

  /* ─── BLOG ─── */
  #blog { background: white; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .blog-card {
    background: var(--off-white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.08);
  }

  .blog-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }

  .blog-body { padding: 1.5rem; }
  .blog-tag {
    display: inline-block;
    background: rgba(0,200,224,0.1);
    color: #0f7080;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
  }
  .blog-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }
  .blog-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; }
  .blog-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }

  /* ─── CONTACT ─── */
  #contact { background: var(--off-white); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info { }
  .contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
  }
  .contact-info p { font-size: 15px; color: var(--text-muted); margin-bottom: 2rem; }

  .contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .ci-icon {
    width: 40px; height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 15px;
    flex-shrink: 0;
  }
  .contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
  .contact-item span { font-size: 13px; color: var(--text-muted); }

  .social-links { display: flex; gap: 0.75rem; }
  .social-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
  }
  .social-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

  /* Contact Form */
  .contact-form-card {
    background: white;
    border: 1px solid var(--mid-gray);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(10,22,40,0.06);
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mid-gray);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10,22,40,0.06);
    background: white;
  }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    width: 100%;
    background: var(--navy);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .form-submit:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,22,40,0.2); }

  .map-placeholder {
    margin-top: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    gap: 8px;
    border: 1px dashed var(--mid-gray);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--light-gray);
    border-top: 1px solid var(--mid-gray);
    padding: 60px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand .logo-block { margin-bottom: 1rem; }
  .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

  .footer-col h5 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
  }

  .footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--navy); }

  .footer-newsletter p { font-size: 13px; color: var(--text-muted); margin-bottom: 1rem; }
  .newsletter-form {
    display: flex;
    gap: 0.5rem;
  }
  .newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    background: white;
    font-family: 'DM Sans', sans-serif;
  }
  .newsletter-form input:focus { border-color: var(--navy); }
  .newsletter-form button {
    background: var(--navy);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--navy-light); }

  .footer-bottom {
    border-top: 1px solid var(--mid-gray);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom p { font-size: 13px; color: var(--text-muted); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
  .footer-legal a:hover { color: var(--navy); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    :root { --section-pad: 70px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 60px 1.5rem; }
    .hero-visual { display: none; }
    .about-grid, .partner-grid, .ai-grid, .custom-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-cert-card { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { flex-direction: column; gap: 1.5rem; }
    .process-timeline::before { display: none; }
    .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
  }
