:root {
      --bg: #050508;
      --bg2: #0a0a12;
      --bg3: #0f0f1a;
      --card: #111120;
      --card2: #16162a;
      --white: #ffffff;
      --muted: #8888a8;
      --blue: #1a6cf0;
      --cyan: #00d4ff;
      --grad: linear-gradient(135deg, #1a6cf0 0%, #00d4ff 100%);
      --grad-text: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
      --border: rgba(255, 255, 255, 0.07);
      --border-glow: rgba(26, 108, 240, 0.3);
      --shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
      --radius: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--blue);
      border-radius: 3px;
    }

    /* ── UTILITIES ── */
    .gradient-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

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

    .section {
      padding: 100px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 108, 240, 0.1);
      border: 1px solid rgba(26, 108, 240, 0.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 20px;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .25s;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-primary {
      background: var(--grad);
      color: #fff;
      box-shadow: 0 4px 24px rgba(26, 108, 240, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(26, 108, 240, 0.55);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border-glow);
    }

    .btn-outline:hover {
      background: rgba(26, 108, 240, 0.1);
      border-color: var(--blue);
    }

    .glow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 10px var(--cyan);
      display: inline-block;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.6;
        transform: scale(1.4)
      }
    }

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

    /* ── NAVBAR ── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: all .3s;
    }

    #navbar.scrolled {
      background: rgba(5, 5, 8, 0.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo img {
      height: 38px;
    }

    .nav-logo span {
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a {
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted);
      transition: all .2s;
    }

    .nav-links a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.05);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 4px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 4px;
    }

    .lang-btn {
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      border: none;
      background: transparent;
      color: var(--muted);
      font-family: 'Inter', sans-serif;
    }

    .lang-btn.active {
      background: var(--blue);
      color: #fff;
    }

    .nav-cta {
      padding: 10px 20px;
      font-size: 0.88rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all .3s;
    }

    /* ── MOBILE NAV ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 5, 8, 0.97);
      backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--white);
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--cyan);
    }

    .mobile-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 0 80px;
      overflow: hidden;
    }

    .hero-bg-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-bg-glow::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26, 108, 240, 0.18) 0%, transparent 70%);
      top: -200px;
      right: -150px;
    }

    .hero-bg-glow::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
      bottom: -100px;
      left: -100px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 108, 240, 0.1);
      border: 1px solid rgba(26, 108, 240, 0.25);
      border-radius: 100px;
      padding: 8px 18px;
      margin-bottom: 32px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--cyan);
    }

    .hero-title {
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 40px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .stat-item {}

    .stat-num {
      font-size: 2rem;
      font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 500;
    }

    .hero-visual {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 540px;
      opacity: 0.06;
      pointer-events: none;
    }

    /* ── TICKER ── */
    .ticker-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      overflow: hidden;
      background: var(--bg2);
    }

    .ticker {
      display: flex;
      width: max-content;
      animation: ticker 25s linear infinite;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 32px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--muted);
      white-space: nowrap;
    }

    .ticker-item i {
      color: var(--cyan);
      font-size: 0.9rem;
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* ── SERVICES ── */
    #services {
      background: var(--bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad);
      opacity: 0;
      transition: opacity .3s;
      border-radius: inherit;
    }

    .service-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(26, 108, 240, 0.2);
    }

    .service-card:hover::before {
      opacity: 0.04;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(26, 108, 240, 0.12);
      border: 1px solid rgba(26, 108, 240, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--cyan);
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .service-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .service-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
      position: relative;
      z-index: 1;
    }

    .service-features {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .service-feature {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .service-feature i {
      color: var(--cyan);
      font-size: 0.7rem;
    }

    /* ── PACKAGES ── */
    #packages {
      background: var(--bg2);
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .pkg-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
      transition: all .3s;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .pkg-card.featured {
      border-color: var(--blue);
      background: var(--card2);
      box-shadow: 0 0 0 1px var(--blue), 0 30px 80px rgba(26, 108, 240, 0.25);
    }

    .pkg-card.featured::after {
      content: attr(data-badge);
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--grad);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .pkg-header {
      margin-bottom: 28px;
    }

    .pkg-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(26, 108, 240, 0.12);
      border: 1px solid rgba(26, 108, 240, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--cyan);
      margin-bottom: 16px;
    }

    .pkg-name {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--cyan);
      margin-bottom: 6px;
    }

    .pkg-title {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .pkg-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .pkg-price {
      margin: 24px 0;
      padding: 20px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pkg-price-label {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .pkg-price-val {
      font-size: 2rem;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .pkg-price-val span {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted);
      -webkit-text-fill-color: var(--muted);
      display: block;
      margin-top: 4px;
    }

    .pkg-features {
      flex: 1;
      margin-bottom: 28px;
    }

    .pkg-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 0.88rem;
      color: var(--muted);
    }

    .pkg-feature:last-child {
      border-bottom: none;
    }

    .pkg-feature i.check {
      color: var(--cyan);
      font-size: 0.8rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .pkg-cta {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    /* ── PROCESS ── */
    #process {
      background: var(--bg);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(12.5% + 12px);
      right: calc(12.5% + 12px);
      height: 1px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      opacity: 0.3;
    }

    .step-card {
      text-align: center;
      position: relative;
    }

    .step-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 800;
      margin: 0 auto 20px;
      background: var(--grad);
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── WHY ── */
    #why {
      background: var(--bg2);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }

    .why-visual {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .why-visual::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    }

    .why-card {
      background: var(--card2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px 20px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .why-card:last-child {
      margin-bottom: 0;
    }

    .why-card-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      flex-shrink: 0;
      background: rgba(26, 108, 240, 0.15);
      border: 1px solid rgba(26, 108, 240, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--cyan);
    }

    .why-card-text {
      flex: 1;
    }

    .why-card-title {
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .why-card-val {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .why-items {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .why-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(26, 108, 240, 0.1);
      border: 1px solid rgba(26, 108, 240, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--cyan);
    }

    .why-item-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .why-item-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── TARGETS ── */
    #targets {
      background: var(--bg);
    }

    .targets-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 60px;
    }

    .target-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      transition: all .3s;
      cursor: default;
    }

    .target-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-3px);
    }

    .target-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      display: block;
    }

    .target-name {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .target-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── FAQ ── */
    #faq {
      background: var(--bg2);
    }

    .faq-wrap {
      max-width: 720px;
      margin: 60px auto 0;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color .2s;
    }

    .faq-item.open {
      border-color: var(--border-glow);
    }

    .faq-q {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
      gap: 16px;
      user-select: none;
    }

    .faq-q i {
      color: var(--cyan);
      font-size: 0.85rem;
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q i {
      transform: rotate(45deg);
    }

    .faq-a {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: all .3s;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-item.open .faq-a {
      padding: 0 24px 20px;
      max-height: 300px;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--bg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
      margin-top: 60px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      background: rgba(26, 108, 240, 0.1);
      border: 1px solid rgba(26, 108, 240, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--cyan);
    }

    .contact-item-label {
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 3px;
      font-weight: 500;
    }

    .contact-item-val {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .contact-socials {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: all .2s;
      font-size: 1rem;
    }

    .social-btn:hover {
      border-color: var(--border-glow);
      color: var(--cyan);
      transform: translateY(-2px);
    }

    .contact-form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .form-input,
    .form-textarea,
    .form-select {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: border-color .2s;
      outline: none;
    }

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
      border-color: var(--blue);
    }

    .form-select option {
      background: var(--bg3);
    }

    .form-textarea {
      resize: vertical;
      min-height: 110px;
    }

    .form-submit {
      width: 100%;
      justify-content: center;
      padding: 14px;
      font-size: 1rem;
    }

    .form-success {
      display: none;
      background: rgba(0, 212, 100, 0.1);
      border: 1px solid rgba(0, 212, 100, 0.3);
      border-radius: 10px;
      padding: 16px;
      text-align: center;
      color: #00d464;
      font-weight: 600;
      margin-top: 16px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-brand img {
      height: 36px;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 260px;
    }

    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--cyan);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 0.85rem;
      color: var(--muted);
      padding: 4px 0;
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* ── CHATBOT ── */
    .chatbot-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      cursor: pointer;
      background: var(--grad);
      border: none;
      color: #fff;
      font-size: 1.4rem;
      box-shadow: 0 8px 30px rgba(26, 108, 240, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s;
      animation: chat-appear .5s ease .5s both;
    }

    .chatbot-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(26, 108, 240, 0.65);
    }

    .chat-badge {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ff4757;
      border: 2px solid var(--bg);
      animation: pulse 2s infinite;
    }

    @keyframes chat-appear {
      from {
        transform: scale(0);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .chatbot-window {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 900;
      width: 370px;
      max-height: 560px;
      background: var(--card);
      border: 1px solid var(--border-glow);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      transform: scale(0.9) translateY(20px);
      opacity: 0;
      transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
      pointer-events: none;
    }

    .chatbot-window.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .chat-head {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border);
      background: var(--card2);
      flex-shrink: 0;
    }

    .chat-head-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .chat-head-info {
      flex: 1;
    }

    .chat-head-name {
      font-size: 0.9rem;
      font-weight: 700;
    }

    .chat-head-status {
      font-size: 0.75rem;
      color: #00d464;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .chat-head-status::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #00d464;
    }

    .chat-head-close {
      background: none;
      border: none;
      color: var(--muted);
      cursor: pointer;
      font-size: 1rem;
      padding: 4px;
      transition: color .2s;
    }

    .chat-head-close:hover {
      color: var(--white);
    }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      scroll-behavior: smooth;
    }

    .chat-messages::-webkit-scrollbar {
      width: 3px;
    }

    .msg {
      display: flex;
      gap: 8px;
      align-items: flex-end;
      max-width: 88%;
    }

    .msg.user {
      align-self: flex-end;
      flex-direction: row-reverse;
    }

    .msg-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
    }

    .msg.user .msg-avatar {
      background: rgba(255, 255, 255, 0.1);
    }

    .msg-bubble {
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 0.85rem;
      line-height: 1.55;
    }

    .msg.bot .msg-bubble {
      background: var(--card2);
      border: 1px solid var(--border);
      color: var(--white);
      border-bottom-left-radius: 4px;
    }

    .msg.user .msg-bubble {
      background: var(--grad);
      color: #fff;
      border-bottom-right-radius: 4px;
    }

    .msg-time {
      font-size: 0.65rem;
      color: var(--muted);
      padding: 0 4px;
    }

    .typing-dots {
      display: flex;
      gap: 4px;
      padding: 4px 2px;
    }

    .typing-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--muted);
      animation: dot-bounce 1.4s infinite;
    }

    .typing-dots span:nth-child(2) {
      animation-delay: .2s;
    }

    .typing-dots span:nth-child(3) {
      animation-delay: .4s;
    }

    @keyframes dot-bounce {

      0%,
      80%,
      100% {
        transform: translateY(0)
      }

      40% {
        transform: translateY(-6px)
      }
    }

    .chat-quick {
      padding: 0 16px 12px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }

    .quick-btn {
      padding: 6px 12px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      background: rgba(26, 108, 240, 0.1);
      border: 1px solid rgba(26, 108, 240, 0.25);
      color: var(--cyan);
      cursor: pointer;
      transition: all .2s;
      font-family: 'Inter', sans-serif;
    }

    .quick-btn:hover {
      background: rgba(26, 108, 240, 0.2);
    }

    .chat-input-wrap {
      padding: 12px 16px;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 8px;
      flex-shrink: 0;
    }

    .chat-input {
      flex: 1;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      outline: none;
      transition: border-color .2s;
    }

    .chat-input:focus {
      border-color: var(--blue);
    }

    .chat-send {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--grad);
      border: none;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      flex-shrink: 0;
      font-size: 0.9rem;
    }

    .chat-send:hover {
      transform: scale(1.05);
    }

    .chat-send:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width:1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .targets-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width:768px) {

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .section {
        padding: 70px 0;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps::before {
        display: none;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .chatbot-window {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 90px;
      }

      .hero-visual {
        display: none;
      }
    }

    @media (max-width:480px) {
      .hero-stats {
        gap: 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .targets-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up-delay-1 {
      transition-delay: .1s;
    }

    .fade-up-delay-2 {
      transition-delay: .2s;
    }

    .fade-up-delay-3 {
      transition-delay: .3s;
    }

    .fade-up-delay-4 {
      transition-delay: .4s;
    }
