*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #575AFF;
      --yellow: #FFBE11;
      --dark: #0D0D1A;
      --gray-700: #3D3D5C;
      --gray-500: #7B7B9A;
      --gray-200: #E4E4EF;
      --gray-100: #F4F4F8;
      --white: #FFFFFF;
      --radius: 6px;
      --font: 'Onest', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo img { height: 36px; display: block; }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--gray-700); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--blue); }
    .nav-cta {
      background: var(--blue); color: var(--white); border: none; padding: 10px 24px;
      font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer;
      border-radius: var(--radius); transition: background 0.2s, transform 0.15s;
      text-decoration: none; display: inline-block;
    }
    .nav-cta:hover { background: #4244e0; transform: translateY(-1px); }

    /* ── PAGE HERO ── */
    #page-hero {
      padding: 152px 0 80px;
      background: var(--dark); position: relative; overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute; inset: 0; opacity: 0.03;
      background-image:
        linear-gradient(rgba(87,90,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(87,90,255,1) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .hero-inner { position: relative; z-index: 1; }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 32px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.6); }
    .breadcrumb span { color: rgba(255,255,255,0.12); }
    .page-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
    }
    .page-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--yellow); }
    .hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
    .page-h1 {
      font-size: clamp(40px, 5vw, 72px); font-weight: 800;
      line-height: 1.05; letter-spacing: -0.035em; color: var(--white);
    }
    .page-h1 span { color: var(--blue); }
    .hero-desc { flex-shrink: 0; max-width: 400px; }
    .hero-desc p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* Services nav strip */
    .services-nav {
      background: var(--white); border-bottom: 1px solid var(--gray-200);
      position: sticky; top: 72px; z-index: 90;
    }
    .services-nav-inner {
      display: flex; gap: 0; overflow-x: auto;
      scrollbar-width: none;
    }
    .services-nav-inner::-webkit-scrollbar { display: none; }
    .snav-link {
      display: flex; align-items: center; gap: 8px;
      padding: 16px 24px; font-size: 13px; font-weight: 500;
      color: var(--gray-700); text-decoration: none; white-space: nowrap;
      border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    .snav-link:hover { color: var(--blue); }
    .snav-link.active { color: var(--blue); border-bottom-color: var(--blue); }
    .snav-num { font-size: 10px; font-weight: 700; color: var(--blue); letter-spacing: 0.06em; }

    /* ── SERVICE SECTIONS ── */
    .service-section {
      padding: 100px 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .service-section:nth-child(even) { background: var(--gray-100); }

    .service-header {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: start; margin-bottom: 64px;
    }
    .service-hero-icon {
      width: 56px; height: 56px; border-radius: 12px;
      background: linear-gradient(135deg, #575AFF 0%, #4244e0 100%);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px; box-shadow: 0 6px 20px rgba(87,90,255,0.25);
    }
    .service-hero-icon svg { width: 28px; height: 28px; }
    .service-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .service-h2 {
      font-size: clamp(28px, 3vw, 44px); font-weight: 800;
      letter-spacing: -0.025em; line-height: 1.1; color: var(--dark);
      margin-bottom: 16px;
    }
    .service-desc {
      font-size: 16px; color: var(--gray-700); line-height: 1.75;
    }
    .service-right { padding-top: 8px; }
    .service-result {
      border: 1px solid var(--gray-200); border-radius: var(--radius);
      overflow: hidden; background: var(--white);
    }
    .service-result-title {
      font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gray-500);
      padding: 12px 20px; background: var(--gray-100);
      border-bottom: 1px solid var(--gray-200);
    }
    .service-result-list { padding: 0; }
    .service-result-item {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 20px; border-bottom: 1px solid var(--gray-200);
      font-size: 14px; color: var(--gray-700);
    }
    .service-result-item:last-child { border-bottom: none; }
    .sri-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

    /* Works grid */
    .works-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--gray-200); background: var(--gray-200); gap: 1px;
    }
    .work-card { background: var(--white); padding: 28px 24px; transition: background 0.15s; }
    .service-section:nth-child(even) .work-card { background: var(--gray-100); }
    .service-section:nth-child(even) .work-card:hover { background: var(--white); }
    .work-card:hover { background: rgba(87,90,255,0.02); }
    .work-num { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.08em; margin-bottom: 12px; }
    .work-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
    .work-card p { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

    /* ── PACKAGES ── */
    #packages { padding: 100px 0; background: var(--dark); }
    .pkg-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
    .pkg-h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -0.025em; color: var(--white); margin-bottom: 12px; }
    .pkg-desc { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 56px; line-height: 1.7; }

    .packages-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .pkg-card {
      border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
      padding: 40px 32px; transition: border-color 0.2s, background 0.2s;
      position: relative;
    }
    .pkg-card:hover { border-color: rgba(87,90,255,0.4); background: rgba(87,90,255,0.04); }
    .pkg-card--featured {
      border-color: var(--blue); background: rgba(87,90,255,0.08);
    }
    .pkg-card--featured:hover { background: rgba(87,90,255,0.12); }
    .pkg-badge {
      position: absolute; top: -12px; left: 32px;
      background: var(--blue); color: var(--white);
      font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 4px 12px; border-radius: 2px;
    }
    .pkg-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
    .pkg-price {
      font-size: 36px; font-weight: 800; color: var(--white);
      letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
    }
    .pkg-price span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.4); }
    .pkg-period { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
    .pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
    .pkg-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
    .pkg-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
    .pkg-feature-icon { flex-shrink: 0; margin-top: 1px; }
    .pkg-feature.disabled { color: rgba(255,255,255,0.25); }
    .pkg-feature.disabled .pkg-feature-icon { opacity: 0.3; }
    .pkg-btn {
      display: block; width: 100%; text-align: center;
      padding: 14px; border-radius: var(--radius);
      font-family: var(--font); font-size: 14px; font-weight: 600;
      text-decoration: none; transition: all 0.2s;
    }
    .pkg-btn--outline {
      border: 1px solid rgba(255,255,255,0.2); color: var(--white); background: transparent;
    }
    .pkg-btn--outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
    .pkg-btn--primary { background: var(--blue); color: var(--white); border: none; }
    .pkg-btn--primary:hover { background: #4244e0; transform: translateY(-1px); }

    /* ── CTA ── */
    #cta { padding: 100px 0; background: var(--blue); }
    .cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .cta-h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
    .cta-p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 0; }
    .cta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
    .form-fields { display: flex; flex-direction: column; gap: 14px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; }
    .form-field label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
    .form-field input, .form-field select, .form-field textarea {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
      border-radius: var(--radius); padding: 13px 16px; font-family: var(--font);
      font-size: 15px; color: var(--white); outline: none; width: 100%;
      transition: border-color 0.2s, background 0.2s;
    }
    .form-field select option { background: #1a1a2e; color: var(--white); }
    .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.12);
    }
    .form-field textarea { resize: none; height: 90px; }
    .form-submit {
      background: var(--white); color: var(--blue); border: none; padding: 16px 40px;
      font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer;
      border-radius: var(--radius); transition: background 0.2s, transform 0.15s; width: 100%; margin-top: 4px;
    }
    .form-submit:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0; }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; }
    .footer-logo img { height: 28px; opacity: 0.8; filter: brightness(0) invert(1); }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      section { padding: 60px 0; }
      .hero-row { flex-direction: column; align-items: flex-start; gap: 20px; }
      .page-h1 { font-size: 32px; }
      .hero-desc { max-width: 100%; }
      .hero-desc p { font-size: 14px; }
      .service-header { grid-template-columns: 1fr; gap: 32px; }
      .service-h2 { font-size: 24px; }
      .service-right { padding-top: 0; }
      .works-grid { grid-template-columns: 1fr; }
      .work-card { padding: 20px; }
      .packages-grid { grid-template-columns: 1fr; gap: 16px; }
      .pkg-card { padding: 28px 24px; }
      .pkg-price { font-size: 28px; }
      .cta-inner { grid-template-columns: 1fr; gap: 32px; }
      .cta-h2 { font-size: 24px; }
      .nav-cta { display: none; }
      .nav-links { gap: 20px; }
      .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }