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

  :root {
    --bg: white;
    --bg2: white;
    --bg3: white;
    --card: white;
    --card-hover: white;
    --border: white;
    --border-bright: white;
    --accent: #3488fe;
    --accent2: #ff6b35;
    --accent3: #3488fe;
    --text: #030d3f;
    --text-dim: #1c275c;
    --text-muted: #555550;
    --font-display: 'Nunito Sans', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --font-mono: 'Nunito Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

  /* Noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: white;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .logo {
    font-family: var(--font-display);
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo img{
    width: 250px;
  }
  .logo span { color: var(--accent); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 3px;
    font-weight: 700 !important;
    letter-spacing: 0.08em;
    transition: all 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85; transform: scale(0.97); }
  @property --nav-ai-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
  }
  .nav-ai {
    --nav-ai-angle: 0deg;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    padding: 0.56rem 1.14rem;
    border-radius: 999px;
    background: white;
    color: var(--text) !important;
    box-shadow: 0 6px 18px rgba(52,136,254,0.08);
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    transition: transform 0.2s ease, box-shadow 0.25s ease !important;
  }
  .nav-ai::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: conic-gradient(from var(--nav-ai-angle), #3488fe, #b63cf0, #7fc1ff, #3488fe);
  }
  .nav-ai::after {
    content: '';
    position: absolute;
    inset: 2px;
    z-index: 1;
    border-radius: inherit;
    background: white;
  }
  .nav-ai > * {
    position: relative;
    z-index: 2;
  }
  .nav-ai-icon {
    width: 17px;
    height: 17px;
    fill: var(--text);
  }
  .nav-ai:hover {
    color: var(--text) !important;
    transform: translateY(-1px);
    box-shadow: 0 11px 28px rgba(52,136,254,0.24);
  }
  .nav-ai:hover::before {
    animation: navAiBorderOrbit 1.15s linear infinite;
  }
  .nav-ai:hover .nav-ai-icon { fill: var(--text); }
  .nav-ai.active {
    background: white;
    color: var(--text) !important;
    box-shadow: 0 9px 24px rgba(52,136,254,0.16);
  }
  .nav-ai.active .nav-ai-icon { fill: var(--text); }
  @keyframes navAiBorderOrbit {
    to { --nav-ai-angle: 1turn; }
  }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,255,71,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0,212,255,0.05) 0%, transparent 50%),
      radial-gradient(ellipse 40% 30% at 10% 80%, rgba(255,107,53,0.04) 0%, transparent 50%);
    pointer-events: none;
  }
  /* grid lines */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }
  .hero-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,255,71,0.08);
    border: 1px solid rgba(232,255,71,0.25);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(5rem, 13vw, 11rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 0.4em;
    position: relative;
  }
  .hero-headline .accent-word { color: var(--accent); }
  .hero-sub-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.04em;
    color: var(--text-dim);
    line-height: 1;
    margin-bottom: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
  }
  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid var(--border-bright);
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  /* ===== AI COMING SOON ===== */
  .ai-coming-soon {
    min-height: calc(100vh - 80px);
    padding: 8.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ai-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
  }
  .ai-orb-one {
    width: 430px;
    height: 430px;
    left: 8%;
    top: 16%;
    background: radial-gradient(circle, rgba(196,43,240,0.12), transparent 68%);
  }
  .ai-orb-two {
    width: 500px;
    height: 500px;
    bottom: 4%;
    right: 7%;
    background: radial-gradient(circle, rgba(52,136,254,0.16), transparent 67%);
  }
  .ai-coming-card {
    width: min(720px, 100%);
    position: relative;
    z-index: 1;
    padding: clamp(2.5rem, 7vw, 4.8rem);
    border: 1px solid #e3ecfc;
    border-radius: 28px;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 26px 80px rgba(3,13,63,0.06);
  }
  .ai-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .ai-kicker svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  .ai-coming-card h1 {
    margin-bottom: 1.25rem;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.98;
    text-transform: uppercase;
  }
  .ai-coming-card h1 span {
    color: var(--accent);
  }
  .ai-coming-card p {
    max-width: 510px;
    margin: 0 auto 2.3rem;
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.7;
  }
  .ai-home-link {
    justify-content: center;
  }

  /* Slider strip */
  .slider-strip {
    width: 100%;
    max-width: 1100px;
    margin: 3.5rem auto 0;
    position: relative;
  }
  .slider-track {
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    overflow: hidden;
    background: var(--card);
    position: relative;
    aspect-ratio: 16/6;
  }
  .slider-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
  }
  .slider-slide.active { opacity: 1; z-index: 2; }
  .slide-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,255,71,0.1);
    border: 1px solid rgba(232,255,71,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
  }
  .slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    color: var(--text);
    text-align: center;
  }
  .slide-desc {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-align: center;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
  }
  .dot {
    width: 6px; height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }
  .dot.active { background: var(--accent); width: 20px; border-radius: 3px; }
  .slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
    z-index: 5;
  }
  .arrow-btn {
    width: 36px; height: 36px;
    background: var(--accent);
    border: 1px solid var(--border-bright);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: white;
    transition: all 0.2s;
  }
  .arrow-btn:hover { border-color: var(--accent); color: var(white); }

  /* ===== SECTION BASE ===== */
  .section { padding: 4rem 0; }
  .container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
  .section-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .section-sub {
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 300;
  }
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  /* ===== ABOUT ===== */
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .about-stat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 2rem;
  }
  .about-stat {
    background: var(--card);
    padding: 2rem 1.5rem;
  }
  .about-stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .about-stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 0.5rem;
  }
  .about-text {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-top: 1rem;
  }
  .about-right { margin-top: 1rem; }
  .about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1px;
    transition: all 0.25s;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .about-card:hover { background: var(--card-hover); border-color: var(--border-bright); }
  .about-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(232,255,71,0.08);
    border: 1px solid rgba(232,255,71,0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text);
  }
  .about-card p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.5;
    font-weight: 300;
  }

  /* ===== SERVICES ===== */
  .services-bg { background: var(--bg2); }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .service-card {
    background: var(--card);
    padding: 2rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--accent);
    transition: height 0.3s ease;
  }
  .service-card:hover { background: var(--card-hover); }
  .service-card:hover::before { height: 100%; }
  .service-num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }
  .service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--text);
  }
  .service-card p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
  }
  .service-arrow {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 1.5rem;
    display: inline-block;
    transition: color 0.2s;
  }
  .service-card:hover .service-arrow { color: var(--accent); }

  /* ===== PRODUCTS ===== */
  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }
  .product-card {
    background: var(--card);
    padding: 2.5rem;
    transition: all 0.25s;
    position: relative;
    border-radius: 3px;
  }
  .product-card:hover { background: var(--card-hover); }
  .product-card-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .product-card-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
  }
  .product-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  .product-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
    max-width: 380px;
  }
  .product-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    background: rgba(232,255,71,0.1);
    border: 1px solid rgba(232,255,71,0.25);
    color: var(--accent);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
  }

  /* ===== CS-CART ADDONS SCROLLER ===== */
  .addons-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .addons-carousel-wrap {
    position: relative;
  }

  .addons-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 0.75rem 58px 0.75rem 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 58px;
    scroll-padding-right: 58px;
    scrollbar-width: none;
    background: white;
  }

  .addons-carousel::-webkit-scrollbar {
    display: none;
  }

  .addons-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: white;
    color: var(--text);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .addons-arrow:hover {
    transform: translateY(-50%) scale(1.02);
    border-color: rgba(52, 136, 254, 0.25);
    background: #ffffff;
  }

  .addons-arrow-left {
    left: -18px;
  }

  .addons-arrow-right {
    right: -18px;
  }

  @media (max-width: 900px) {
    .addons-arrow-left,
    .addons-arrow-right {
      display: none;
    }
  }

  .addons-card {
    flex: 0 0 min(320px, 100%);
    width: 320px;
    scroll-snap-align: start;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .addons-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 136, 254, 0.16);
    /* box-shadow: 0 32px 70px rgba(15, 23, 42, 0.12); */
  }

  .addons-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    background: var(--bg2);
  }

  .addons-card-body {
    padding: 1.4rem 1.4rem 1.5rem;
  }

  .addons-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(52, 136, 254, 0.08);
    color: #1d4ed8;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .addons-card-sale-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #FF3B30;
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .addons-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 0.8rem;
  }

  .addons-card p {
    color: var(--text-dim);
    line-height: 1.75;
    font-size: 0.92rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  .addons-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1rem;
  }

  .addons-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .addons-list-price {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-decoration: line-through;
  }

  .addons-sale-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
  }

  .addons-sale-price span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    margin-left: 0.35rem;
  }

  .addons-buy-btn {
    padding: 0.7rem 1.1rem;
    min-width: 100px;
    font-size: 0.82rem;
    border-radius: 999px;
  }

  @media (max-width: 900px) {
    .addons-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .addons-carousel {
      gap: 1rem;
    }

    .addons-card {
      width: min(280px, 100%);
    }
  }

  @media (max-width: 720px) {
    .addons-card {
      width: min(260px, 100%);
    }
  }

  /* ===== WHY US ===== */
  .why-bg { background: var(--bg2); }
  .why-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
  }
  .why-pillars {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .pillar {
    background: var(--card);
    padding: 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.2s;
    cursor: default;
  }
  .pillar:hover { background: var(--card-hover); }
  .pillar-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-muted);
    width: 40px;
    flex-shrink: 0;
    line-height: 1;
  }
  .pillar-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
  }
  .pillar-desc {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 300;
  }
  .pillar:hover .pillar-num { color: var(--accent); }

  /* ===== STATS TICKER ===== */
  .stats-ticker {
    background: var(--accent);
    overflow: hidden;
    padding: 0.65rem 0;
  }
  .ticker-track {
    display: flex;
    gap: 4rem;
    animation: ticker 20s linear infinite;
    width: max-content;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  .ticker-item span { font-size: 1.4rem; font-weight: 900; }
  .ticker-sep {  }

  /* ===== CELEBRITY STYLE SLIDER ===== */
  .celebrity-section {
    padding: 5rem 0;
    background: var(--bg);
    overflow: hidden;
  }
  .celebrity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .celebrity-controls {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
  }
  .celebrity-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-bright);
    background: var(--accent);
    color: white;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
  }
  .celebrity-arrow:hover {
    opacity: 0.86;
    transform: translateY(-1px);
  }
  .celebrity-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .celebrity-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(220px, 29vw, 360px);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0.25rem 0 0.75rem;
  }
  .celebrity-slider::-webkit-scrollbar { display: none; }
  .celebrity-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid #d9e2f1;
    scroll-snap-align: start;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s;
  }
  .celebrity-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
  }
  .celebrity-card img,
  .celebrity-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .celebrity-card-label {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    background: rgba(255,255,255,0.9);
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.55rem;
    border-radius: 2px;
  }

  /* ===== TESTIMONIALS ===== */
  .testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .testi-card {
    background: var(--card);
    padding: 2rem;
    transition: background 0.2s;
  }
  .testi-card:hover { background: var(--card-hover); }
  .testi-stars {
    color: #eca00e;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }
  .testi-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .testi-author { font-weight: 600; font-size: 0.9rem; color: var(--text); }
  .testi-role {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
  }

  /* ===== CONTACT ===== */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--text);
    margin: 1rem 0;
  }
  .contact-headline em { color: var(--accent); font-style: normal; }
  .contact-info { margin-top: 2.5rem; }
  .contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
  }
  .contact-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-info-item a:hover { color: var(--accent); }
  .contact-icon {
    width: 32px; height: 32px;
    background: rgba(232,255,71,0.07);
    border: 1px solid rgba(232,255,71,0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
  }
  .form-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
  }
  .form-group { margin-bottom: 1rem; }
  input, select, textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid #d9e2f1;
    border-radius: 3px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all 0.2s;
    outline: none;
    appearance: none;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: rgba(232,255,71,0.03);
  }
  input::placeholder, textarea::placeholder { color: var(--text-muted); }
  select option { background: var(--bg3); }
  .btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }
  .btn-submit:hover { opacity: 0.85; transform: translateY(-1px); }
  .btn-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
  }

  /* ===== FOOTER ===== */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    background: var(--bg);
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;

  }
  .footer-logo img{
    width: 250px;
  }
  .footer-logo span { color: var(--accent); }
  .footer-copy {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* ===== INNER PAGES ===== */
  .inner-hero {
    min-height: 62vh;
    padding: 9rem 2rem 5rem;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .inner-hero .container {
    position: relative;
    z-index: 1;
  }
  .inner-hero-compact { min-height: 52vh; }
  .inner-title {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 9vw, 8rem);
    line-height: 0.94;
    letter-spacing: 0.02em;
    color: var(--text);
    max-width: 1100px;
  }
  .inner-title span { color: var(--accent); }
  .inner-lead {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-top: 2rem;
    font-weight: 300;
  }
  .page-cta {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
  }
  .service-arrow {
    text-decoration: none;
  }
  .form-message {
    padding: 0.85rem 1rem;
    border-radius: 3px;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .form-message-success {
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.25);
    color: #166b2a;
  }
  .form-message-error {
    background: rgba(209,41,41,0.08);
    border: 1px solid rgba(209,41,41,0.2);
    color: #a51f1f;
  }

  /* ===== WHATSAPP WIDGET ===== */
  .whatsapp-widget {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 180;
  }
  .whatsapp-launcher {
    height: 64px;
    padding: 0.4rem 0.46rem 0.4rem 1.25rem;
    background: #fff;
    color: #172637;
    border: 0;
    border-radius: 34px;
    box-shadow: 0 13px 38px rgba(3,13,63,0.16);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
  }
  .whatsapp-launcher-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #24c85a;
    color: #fff;
    animation: whatsappPulse 3s ease-out infinite;
  }
  .whatsapp-launcher-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @keyframes whatsappPulse {
    0% {
      box-shadow:
        0 8px 18px rgba(36,200,90,0.32),
        0 0 0 0 rgba(36,200,90,0.36),
        0 0 0 0 rgba(36,200,90,0.2);
    }
    65% {
      box-shadow:
        0 8px 18px rgba(36,200,90,0.32),
        0 0 0 15px rgba(36,200,90,0.08),
        0 0 0 28px rgba(36,200,90,0);
    }
    100% {
      box-shadow:
        0 8px 18px rgba(36,200,90,0.32),
        0 0 0 20px rgba(36,200,90,0),
        0 0 0 34px rgba(36,200,90,0);
    }
  }
  .whatsapp-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.85rem);
    width: min(370px, calc(100vw - 2rem));
    overflow: hidden;
    background: #eff6f3;
    border: 1px solid rgba(22,68,68,0.1);
    border-radius: 14px;
    box-shadow: 0 22px 62px rgba(3,13,63,0.19);
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.24s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.24s;
  }
  .whatsapp-panel[hidden] { display: none; }
  .whatsapp-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .whatsapp-panel.is-closing {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
  }
  .whatsapp-panel-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    background: linear-gradient(125deg, #113c5c, #126754);
    color: white;
  }
  .whatsapp-support-logo {
    width: 53px;
    height: 53px;
    padding: 0.27rem;
    object-fit: contain;
    border-radius: 50%;
    background: white;
  }
  .whatsapp-support-copy {
    min-width: 0;
    flex: 1;
  }
  .whatsapp-support-copy h2 {
    color: white;
    font-size: 0.94rem;
    line-height: 1.3;
    font-weight: 600;
  }
  .whatsapp-support-copy p {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.2rem;
    color: rgba(255,255,255,0.86);
    font-size: 0.68rem;
  }
  .whatsapp-support-copy p span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39df73;
  }
  .whatsapp-close {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.86);
    cursor: pointer;
  }
  .whatsapp-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }
  .whatsapp-conversation {
    min-height: 136px;
    padding: 1.15rem 1rem 1rem;
    background-color: #edf5f0;
    background-image: radial-gradient(rgba(18,103,84,0.06) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
  }
  .whatsapp-message {
    width: max-content;
    max-width: 84%;
    padding: 0.66rem 0.8rem;
    border-radius: 2px 12px 12px 12px;
    background: #fff;
    color: #172637;
    box-shadow: 0 3px 12px rgba(16,38,39,0.06);
  }
  .whatsapp-message-sender {
    margin-bottom: 0.35rem;
    color: #16834c;
    font-size: 0.66rem;
    font-weight: 600;
  }
  .whatsapp-message p {
    margin: 0.12rem 0;
    font-size: 0.86rem;
    line-height: 1.4;
  }
  .whatsapp-form {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem;
    background: #fff;
    border-top: 1px solid #e3ebe7;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }
  .whatsapp-form textarea {
    min-height: 46px;
    height: 46px;
    flex: 1;
    resize: none;
    padding: 0.8rem 0.85rem;
    margin: 0;
    border: 1px solid #e5ede9;
    border-radius: 23px;
    background: #f5f8f7;
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .whatsapp-send {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #24c85a;
    color: white;
    cursor: pointer;
  }
  .whatsapp-send svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-ai:hover::before {
      animation: none;
    }
    .whatsapp-panel,
    .whatsapp-panel.is-open,
    .whatsapp-panel.is-closing {
      transform: none;
      transition: none;
    }
    .whatsapp-launcher-icon {
      animation: none;
      box-shadow: 0 8px 18px rgba(36,200,90,0.3);
    }
  }

  /* Mobile nav overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,8,0.97);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .mobile-overlay.open { transform: translateX(0); }
  .mobile-overlay a {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.04em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-overlay a:hover { color: var(--accent); }
  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dim);
    font-family: var(--font-mono);
  }

  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
/* ── TECH STACK ── */
.tech-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.tech-cat {
  flex: 1;
  min-width: 200px;
}

.tech-cat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-cat-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
  flex-shrink: 0;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  transition: border-color 0.18s ease, transform 0.18s ease;
  cursor: default;
  white-space: nowrap;
}

.tech-pill.no-border {
  border-color: transparent;
}

.tech-pill.no-border:hover {
  border-color: transparent;
  transform: none;
}

.tech-pill:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.tech-pill img,
.tech-pill svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.tech-pill.hot {
  border-color: #f97316;
  color: #f97316;
}

.tech-more {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .tech-cat {
    min-width: 100%;
  }
}
  /* Responsive */
  @media (max-width: 1100px) {
    .logo img { width: 215px; }
    .nav-links { gap: 1rem; }
    .nav-ai { padding: 0.5rem 0.9rem; }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .about-layout, .contact-layout, .why-row { grid-template-columns: 1fr; gap: 2rem; }
    .service-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .about-stat-block { grid-template-columns: 1fr 1fr; }
    .products-header, .testi-header { flex-direction: column; align-items: flex-start; }
    .celebrity-header { flex-direction: column; align-items: flex-start; }
    .footer-inner { flex-direction: column; text-align: center; }
  }
  @media (max-width: 600px) {
    .section { padding: 4rem 0; }
    .ai-coming-soon { padding: 7rem 1rem 3rem; }
    .ai-coming-card { border-radius: 20px; padding: 2.5rem 1.3rem; }
    .ai-coming-card p { font-size: 0.95rem; }
    .hero-headline { font-size: clamp(4rem, 18vw, 5rem); }
    .hero-sub-headline { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .about-stat-block { grid-template-columns: 1fr 1fr; }
    .slider-track { aspect-ratio: 16/7; }
    .inner-hero { min-height: auto; padding: 7rem 1.25rem 3.5rem; }
    .whatsapp-widget { right: 1rem; bottom: 1rem; }
    .whatsapp-launcher > span:first-child { display: none; }
    .whatsapp-launcher {
      height: 58px;
      padding: 0.2rem;
      justify-content: center;
    }
    .whatsapp-launcher-icon {
      width: 52px;
      height: 52px;
    }
  }

  .nav-links a.active { color: var(--accent); }

  .page-about .hero {
    min-height: 70vh;
    align-items: center;
    text-align: left;
  }

  .page-about .hero .container {
    position: relative;
    z-index: 1;
  }

  .page-about .hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--text);
    max-width: 920px;
  }

  .page-about .hero-title span { color: var(--accent); }

  .page-about .hero-desc {
    margin: 2rem 0 0;
    text-align: left;
    max-width: 650px;
  }
