  :root {
    --orange: #E84000;
    --orange-light: #FF5722;
    --orange-glow: rgba(232,64,0,0.15);
    --dark: #0D1117;
    --dark2: #161B22;
    --navy: #0F1923;
    --white: #FFFFFF;
    --gray: #F5F6FA;
    --gray2: #E8ECF0;
    --text: #1A1A2E;
    --muted: #000000;
    --border: #E2E8F0;
    --green: #16A34A;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
  }

  /* ─── TOP BAR ─── */
  .topbar {
    background: #FF8C42;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 0;
  }
  .topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .topbar-left { display: flex; align-items: center; gap: 8px; }
  .topbar-left span { opacity: .9; letter-spacing: .3px; }
  .topbar-star { font-size: 1rem; }
  .topbar-right { display: flex; gap: 20px; }
  .topbar-right a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .92;
    transition: opacity .2s;
  }
  .topbar-right a:hover { opacity: 1; }

  /* ─── NAVBAR ─── */
  .navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--orange), #FF8C42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
  }
  .logo-text span { color: var(--orange); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background .2s, color .2s;
  }
  .nav-links a:hover { background: var(--orange-glow); color: var(--orange); }

  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .bell-btn {
    width: 40px; height: 40px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: border-color .2s, background .2s;
  }
  .bell-btn:hover { border-color: var(--orange); background: var(--orange-glow); }
  .login-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .login-btn:hover { background: #c93500; transform: translateY(-1px); }

  /* ─── USER DROPDOWN ─── */
  .user-dropdown-wrap {
    position: relative;
  }
  .user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-glow);
    border: 1.5px solid var(--orange);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
    white-space: nowrap;
  }
  .user-btn:hover { background: var(--orange); color: #fff; }
  .user-avatar {
    width: 26px; height: 26px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    flex-shrink: 0;
  }
  .user-btn:hover .user-avatar { background: #fff; color: var(--orange); }
  .user-display-name {
    display: inline-block;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
  }
  .user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    overflow: hidden;
    z-index: 2000;
    animation: slideDown .2s ease forwards;
  }
  .user-dropdown.open { display: block; }
  .user-dropdown-header {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--orange-glow), #fff8f0);
    border-bottom: 1px solid var(--border);
  }
  .user-dropdown-name { font-weight: 800; font-size: .95rem; color: var(--text); }
  .user-dropdown-id { font-size: .78rem; color: var(--muted); margin-top: 2px; opacity: .7; }
  .user-dropdown-menu { list-style: none; padding: 8px 0; }
  .user-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .user-dropdown-menu li a:hover { background: var(--orange-glow); color: var(--orange); }
  .user-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
  .logout-link { color: #e53e3e !important; }
  .logout-link:hover { background: #fff5f5 !important; color: #c53030 !important; }

  /* ─── HAMBURGER BUTTON ─── */
  .hamburger-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
  }
  .hamburger-btn:hover { border-color: var(--orange); background: var(--orange-glow); }
  .hamburger-btn span {
    display: block;
    width: 18px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  .hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--orange); }
  .hamburger-btn.open span:nth-child(2) { opacity: 0; }
  .hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--orange); }

  /* ─── MOBILE NAV DROPDOWN ─── */
  .mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    padding: 10px 16px 16px;
  }
  .mobile-nav.open {
    display: block;
    animation: slideDown .25s ease forwards;
  }
  .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .mobile-nav ul li a:hover { background: var(--orange-glow); color: var(--orange); }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── SEARCH BAR ─── */
  .search-bar-wrap {
    background: #fff;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
  }
  .search-inner {
    max-width: 1200px;
    margin: auto;
  }
  .search-box {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
  }
  .search-box:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-glow);
  }
  .search-cat {
    padding: 0 16px;
    border-right: 1.5px solid var(--border);
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    background: var(--gray);
    flex-shrink: 0;
    color: var(--text);
  }
  .search-cat select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    outline: none;
  }
  .search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
  }
  .search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text);
  }
  .search-input-wrap input::placeholder { color: #9CA3AF; }
  .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1.15rem;
    padding: 0 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: color .2s;
  }
  .search-icon:hover { color: var(--orange); }

  /* ─── HERO SLIDER ─── */
  .hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 480px;
  }

  /* Slides wrapper */
  .hero-slides {
    display: flex;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  /* Each slide */
  .hero-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
  .hero-slide-1 { background-image: url(../images/slider.png); }
  .hero-slide-2 { background: linear-gradient(135deg, #0f1923 0%, #1a2744 60%, #0f2d1f 100%); }
  .hero-slide-3 { background: linear-gradient(135deg, #1a0a00 0%, #2d1000 50%, #0D1117 100%); }

  /* Wave overlay on each slide */
  .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,200 C200,100 400,300 800,100 L800,400 L0,400Z' fill='rgba(22,163,74,0.1)'/%3E%3Cpath d='M0,300 C300,150 600,350 800,200 L800,400 L0,400Z' fill='rgba(232,64,0,0.08)'/%3E%3C/svg%3E") no-repeat center/cover;
    pointer-events: none;
    z-index: 1;
  }

  .hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-content { max-width: 580px; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 6px 14px;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .3px;
  }
  .hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: .7; }
  }
  .hero-slide h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .hero-slide h1 .accent { color: var(--orange); }
  .hero-slide p {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

  /* Prev / Next buttons */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
  }
  .slider-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-50%) scale(1.08); }
  .slider-btn.prev { left: 18px; }
  .slider-btn.next { right: 18px; }

  /* Dot indicators */
  .slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: background .3s, width .3s;
    padding: 0;
  }
  .slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
  .btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-primary:hover {
    background: #c93500;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,64,0,.4);
  }
  .btn-outline {
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    border: 1.5px solid rgba(255,255,255,.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    backdrop-filter: blur(4px);
  }
  .btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

  /* Phone mockup */
  .hero-phone {
    position: relative;
    flex-shrink: 0;
    margin-bottom: -60px;
  }
  .phone-wrap {
    width: 220px;
    height: 420px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,.15);
    box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
    overflow: hidden;
    position: relative;
  }
  .phone-screen {
    background: #fff;
    border-radius: 28px;
    margin: 10px;
    height: calc(100% - 20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .phone-header {
    background: linear-gradient(135deg, var(--orange), #FF8C42);
    padding: 18px 14px 14px;
    color: #fff;
    text-align: center;
  }
  .phone-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem; }
  .phone-sub { font-size: .65rem; opacity: .85; margin-top: 2px; }
  .phone-body { padding: 12px; flex: 1; }
  .phone-section-title { font-size: .65rem; font-weight: 700; color: var(--muted); margin-bottom: 10px; letter-spacing: .5px; text-transform: uppercase; }
  .phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .phone-card {
    background: var(--gray);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    font-size: .58rem;
    font-weight: 600;
    color: var(--text);
  }
  .phone-card-icon { font-size: 1.2rem; margin-bottom: 4px; }
  .phone-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid var(--border);
    font-size: .55rem;
    color: var(--muted);
  }
  .phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .phone-nav-item.active { color: var(--orange); }

  /* ─── SECTION HEADER ─── */
  .section { padding: 50px 20px; }
  .section-header { text-align: center; margin-bottom: 50px; }
  .section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
  }
  .section-header h2 .accent { color: var(--orange); }
  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 8px;
  }
  .divider-line {
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--orange));
    border-radius: 2px;
  }
  .divider-line.rev { background: linear-gradient(to left, transparent, var(--orange)); }
  .divider-icon { color: var(--orange); font-size: 1rem; }
  .section-header p { color: var(--muted); font-size: .95rem; margin-top: 6px; }

  /* ─── SERVICE CARDS ─── */
  .services-section { background: var(--gray); }
  .services-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  .service-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #FF8C42);
    opacity: 0;
    transition: opacity .25s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); border-color: var(--orange); }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 56px; height: 56px;
    background: var(--orange-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    border: 1.5px solid rgba(232,64,0,.2);
  }
  .service-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
  .service-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 18px; }
  .service-link {
    color: var(--orange);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .service-link:hover { gap: 10px; }

  /* ─── UPCOMING SERVICES — white cards with colored borders ─── */
  .service-card-upcoming {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .service-card-upcoming:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
  .service-card-upcoming .service-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: var(--orange-glow);
    border: 1.5px solid rgba(232,64,0,.2);
  }
  .service-card-upcoming h3 { font-family:'Sora',sans-serif; font-size:1.05rem; font-weight:700; margin-bottom:8px; color: var(--text); }
  .service-card-upcoming p  { font-size:.88rem; line-height:1.6; margin-bottom:18px; color: var(--muted); }
  .coming-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size:.68rem; font-weight:700; letter-spacing:.4px;
    padding: 3px 9px; border-radius:50px; margin-bottom:14px;
    background: #F1F5F9; color: #475569; border: 1px solid #CBD5E1;
  }

  /* Colored left + bottom border per card */
  .upc-blue   { border: 2px solid #3B82F6; border-left: 5px solid #3B82F6; }
  .upc-blue   .service-link { color: #2563EB; }
  .upc-blue:hover { border-color: #1D4ED8; }

  .upc-purple { border: 2px solid #8B5CF6; border-left: 5px solid #8B5CF6; }
  .upc-purple .service-link { color: #7C3AED; }
  .upc-purple:hover { border-color: #6D28D9; }

  .upc-amber  { border: 2px solid #F97316; border-left: 5px solid #F97316; }
  .upc-amber  .service-link { color: #EA580C; }
  .upc-amber:hover { border-color: #C2410C; }

  .upc-rose   { border: 2px solid #F43F5E; border-left: 5px solid #F43F5E; }
  .upc-rose   .service-link { color: #E11D48; }
  .upc-rose:hover { border-color: #BE123C; }

  /* ─── OUR SERVICES — light orange & green card style ─── */
  .our-services-section { background: #f9f9f6; }
  .service-card-live {
    background: linear-gradient(145deg, #fff7ed 0%, #f0fdf4 100%);
    border-radius: 20px;
    padding: 30px 26px;
    border: 1.5px solid rgba(249,115,22,.2);
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .service-card-live::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #22c55e);
  }
  .service-card-live::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(34,197,94,.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .service-card-live:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(249,115,22,.18); }
  .service-card-live .service-icon {
    background: rgba(249,115,22,.12);
    border: 1.5px solid rgba(249,115,22,.3);
    font-size: 1.6rem;
  }
  .service-card-live h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
  }
  .service-card-live p { color: #64748b; font-size: .88rem; line-height: 1.6; margin-bottom: 18px; }
  .service-card-live .service-link { color: #ea580c; }
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(22,163,74,.12);
    border: 1px solid rgba(22,163,74,.3);
    color: #16a34a;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 3px 9px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .live-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  /* ─── UPCOMING BANNER ─── */
  .upcoming-section { padding: 40px 20px 50px; }
  .upcoming-banner {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, #fff7ed 0%, #f0fdf4 100%);
    border: 1.5px solid rgba(249,115,22,.22);
    border-radius: 24px;
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .upcoming-banner::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at right, rgba(34,197,94,.12), transparent);
    pointer-events: none;
  }
  .upcoming-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
  }
  .upcoming-content p { color: #64748b; font-size: .9rem; line-height: 1.6; margin-bottom: 24px; }
  .upcoming-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .upcoming-feat {
    text-align: center;
    color: #374151;
  }
  .upcoming-feat-icon {
    width: 52px; height: 52px;
    background: rgba(249,115,22,.1);
    border: 1px solid rgba(249,115,22,.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 10px;
    transition: background .2s;
  }
  .upcoming-feat:hover .upcoming-feat-icon { background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.35); }
  .upcoming-feat span { font-size: .8rem; font-weight: 600; }

  /* ─── PREMIUM BADGE ─── */
  .premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,.12);
    border: 1px solid rgba(249,115,22,.35);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
    color: #ea580c;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
  }
  .premium-dot {
    width: 7px; height: 7px;
    background: #f97316;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
  }
  .premium-accent { color: #ea580c; }
  .upcoming-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .premium-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .premium-btns .btn-outline {
    font-size: .88rem;
    padding: 12px 20px;
  }

  /* ─── OFFERS ─── */
  .offers-section { padding: 70px 20px; }
  .offers-section .section-header h2 { color: var(--text); }
  .offers-section .section-header h2 .accent { color: var(--orange); }
  .categories-row {
    max-width: 1200px;
    margin: auto;
    position: relative;
  }
  .categories-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .categories-scroll::-webkit-scrollbar { display: none; }
  .categories-scroll .product-card { scroll-snap-align: start; }
  .cat-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    min-width: 120px;
  }
  .cat-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 10px 30px rgba(232,64,0,.12); }
  .cat-img {
    width: 70px; height: 70px;
    border-radius: 12px;
    margin: 0 auto 12px;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
  }
  .cat-card h4 { font-size: .85rem; font-weight: 700; margin-bottom: 4px; }
  .cat-card .discount { color: var(--orange); font-size: .78rem; font-weight: 700; }
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 5;
    transition: all .2s;
  }
  .scroll-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
  .scroll-btn.left { left: -18px; }
  .scroll-btn.right { right: -18px; }

  /* ─── WHY CHOOSE ─── */
  .why-section { background: var(--gray); padding: 70px 20px; }
  .why-inner { max-width: 1200px; margin: auto; }
  .why-features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  .why-feat {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .why-feat-icon {
    width: 58px; height: 58px;
    background: var(--orange-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1.5px solid rgba(232,64,0,.25);
    flex-shrink: 0;
  }
  .why-feat-text h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
  .why-feat-text p { color: var(--muted); font-size: .85rem; }

  /* Stats */
  .stats-band {
    background: linear-gradient(135deg, var(--orange) 0%, #c93500 100%);
    border-radius: 20px;
    padding: 18px 44px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .stat-item {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }
  .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
  }
  .stat-label { font-size: .88rem; opacity: .88; font-weight: 600; }
  .stat-icon { font-size: 1.4rem; margin-bottom: 8px; opacity: .9; }
  .divider, .stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
  }

  /* ─── ABOUT ─── */
  .about-section { padding: 80px 20px; }
  .about-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 18px;
    line-height: 1.3;
  }
  .about-content h2 .accent { color: var(--orange); }
  .about-content p { color: var(--muted); line-height: 1.8; font-size: .95rem; margin-bottom: 28px; }
  .about-features { display: flex; flex-direction: column; gap: 16px; }
  .about-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--gray);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: border-color .2s;
  }
  .about-feat:hover { border-color: var(--orange); }
  .about-feat-icon {
    width: 40px; height: 40px;
    background: var(--orange-glow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid rgba(232,64,0,.2);
  }
  .about-feat-text h5 { font-weight: 700; font-size: .92rem; margin-bottom: 3px; }
  .about-feat-text p { color: var(--muted); font-size: .82rem; margin: 0; line-height: 1.5; }

  /* About visual */
  .about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-visual-card {
    background: linear-gradient(135deg, #0D1117, #1a2744);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 80px rgba(0,0,0,.2);
  }
  .av-title {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .av-sub { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 28px; }
  .av-metric {
    background: rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.08);
  }
  .av-metric-left { display: flex; align-items: center; gap: 12px; }
  .av-metric-icon { font-size: 1.3rem; }
  .av-metric-name { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 600; }
  .av-metric-val { color: var(--orange); font-weight: 800; font-size: 1rem; font-family: 'Sora', sans-serif; }
  .av-bar {
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
  }
  .av-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #FF8C42);
    border-radius: 4px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: linear-gradient(135deg, #F0FFF4 0%, #FFF8F0 100%);
    color: var(--text);
    padding: 60px 20px 0;
    border-top: 3px solid var(--orange);
  }
  .footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(232,64,0,.2);
  }
  .footer-brand {}
  .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
  .footer-logo-icon {
    width: 36px; height: 36px;
    background: var(--orange);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
  }
  .footer-brand p { font-size: .85rem; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    background: var(--gray2);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    text-decoration: none;
    color: var(--muted);
    transition: background .2s, color .2s, border-color .2s;
  }
  .social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
  .footer-col h4 {
    color: var(--text);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 18px;
    letter-spacing: .2px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: .86rem;
    transition: color .2s;
    display: block;
  }
  .footer-col ul a:hover { color: var(--orange); }
  .app-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text);
    transition: background .2s, box-shadow .2s;
  }
  .app-badge:hover { background: var(--gray2); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
  .app-badge-icon { font-size: 1.4rem; }
  .app-badge-text { line-height: 1.3; }
  .app-badge-text small { display: block; font-size: .65rem; color: var(--muted); }
  .app-badge-text strong { font-size: .88rem; font-weight: 700; }
  .app-badge-img { display: block; }
  .app-badge-img img { height: 44px; width: auto; display: block; border-radius: 8px; transition: opacity .2s; }
  .app-badge-img:hover img { opacity: .85; }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .83rem;
    color: var(--muted);
  }
  .footer-certs { display: flex; gap: 16px; align-items: center; }
  .cert-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 600;
  }
  .cert-badge .cert-icon { color: var(--green); font-size: .9rem; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-phone { display: none; }
    .hero-btns { justify-content: center; }
    .hero-slide p { margin-left: auto; margin-right: auto; }
    .slider-btn { width: 36px; height: 36px; font-size: 1rem; }
    .upcoming-banner { grid-template-columns: 1fr; }
    .upcoming-features { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .stats-band { flex-wrap: wrap; gap: 20px; padding: 30px 28px; }
    .stats-band .divider, .stats-band .stat-divider { display: none; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger-btn { display: flex; }
    .topbar-right { gap: 12px; }
    .topbar-right .hide-sm { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .upcoming-features { grid-template-columns: repeat(2, 1fr); }
    .why-features-row { gap: 28px; }
  }

  @media (max-width: 576px) {
    .hero { min-height: auto; }
    .hero-inner { padding: 40px 20px 36px; }
    .stats-band { flex-wrap: wrap; padding: 28px 20px; gap: 16px; }
    .stat-item { flex: 0 0 calc(50% - 8px); }
    .footer-inner { grid-template-columns: 1fr; }
    .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
    .why-features-row { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 10px; }
    .upcoming-banner { padding: 28px 20px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp .6s ease forwards; }
  .fade-up-2 { animation: fadeUp .6s .15s ease forwards; opacity: 0; }
  .fade-up-3 { animation: fadeUp .6s .3s ease forwards; opacity: 0; }
  .fade-up-4 { animation: fadeUp .6s .45s ease forwards; opacity: 0; }
