*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #575AFF;
      --yellow: #FFBE11;
      --dark: #0D0D1A;
      --gray-900: #1A1A2E;
      --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; letter-spacing: 0.02em;
      text-decoration: none; display: inline-block;
    }
    .nav-cta:hover { background: #4244e0; transform: translateY(-1px); }

    /* ── PAGE HERO ── */
    #page-hero {
      padding: 152px 0 80px;
      border-bottom: 1px solid var(--gray-200);
      background: var(--gray-100);
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: var(--gray-500); margin-bottom: 24px;
    }
    .breadcrumb a { color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--blue); }
    .breadcrumb span { color: var(--gray-200); }
    .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(--blue); margin-bottom: 20px;
    }
    .page-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
    .page-h1 {
      font-size: clamp(40px, 5vw, 72px); font-weight: 800;
      line-height: 1.05; letter-spacing: -0.035em; color: var(--dark);
      margin-bottom: 24px; max-width: 700px;
    }
    .page-desc {
      font-size: 18px; color: var(--gray-700); line-height: 1.7;
      max-width: 560px;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--gray-200);
      background: var(--white);
    }
    .stat-item {
      padding: 40px 48px;
      border-right: 1px solid var(--gray-200);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: 56px; font-weight: 800; color: var(--dark);
      line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px;
    }
    .stat-num em { color: var(--blue); font-style: normal; }
    .stat-label {
      font-size: 14px; color: var(--gray-500); line-height: 1.5;
    }

    /* ── SECTIONS COMMON ── */
    section { padding: 100px 0; }
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 3vw, 44px); font-weight: 800;
      letter-spacing: -0.025em; line-height: 1.15; color: var(--dark);
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 17px; color: var(--gray-700); max-width: 560px;
      line-height: 1.7; margin-bottom: 64px;
    }

    /* ── WHY US ── */
    #why { background: var(--white); border-bottom: 1px solid var(--gray-200); }
    .why-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }
    .why-left {}
    .why-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); }
    .why-item {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 28px 32px; border-bottom: 1px solid var(--gray-200);
      transition: background 0.2s;
    }
    .why-item:last-child { border-bottom: none; }
    .why-item:hover { background: var(--gray-100); }
    .why-icon {
      width: 36px; height: 36px; background: var(--blue);
      border-radius: var(--radius); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0; margin-top: 2px;
    }
    .why-icon svg { width: 16px; height: 16px; }
    .why-item h4 {
      font-size: 15px; font-weight: 700; color: var(--dark);
      margin-bottom: 4px; letter-spacing: -0.01em;
    }
    .why-item p { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

    /* ── HISTORY ── */
    #history { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 40px; top: 0; bottom: 0;
      width: 1px; background: var(--gray-200);
    }
    .timeline-item {
      display: grid; grid-template-columns: 80px 1fr; gap: 48px;
      padding: 48px 0; border-bottom: 1px solid var(--gray-200);
      position: relative;
    }
    .timeline-item:last-child { border-bottom: none; }
    .timeline-year {
      font-size: 13px; font-weight: 700; color: var(--blue);
      letter-spacing: 0.04em; padding-top: 4px; position: relative; z-index: 1;
    }
    .timeline-dot {
      width: 9px; height: 9px; background: var(--blue);
      border-radius: 50%; border: 2px solid var(--gray-100);
      position: absolute; left: 36px; top: 56px;
    }
    .timeline-content {}
    .timeline-content h3 {
      font-size: 22px; font-weight: 800; color: var(--dark);
      letter-spacing: -0.02em; margin-bottom: 12px;
    }
    .timeline-content p {
      font-size: 15px; color: var(--gray-700); line-height: 1.75;
      max-width: 680px;
    }

    /* ── MISSION ── */
    #mission { background: var(--dark); }
    #mission .section-label { color: var(--yellow); }
    .mission-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .mission-h2 {
      font-size: clamp(32px, 4vw, 52px); font-weight: 800;
      line-height: 1.1; letter-spacing: -0.03em; color: var(--white);
      margin-bottom: 24px;
    }
    .mission-h2 span { color: var(--yellow); }
    .mission-p {
      font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75;
      margin-bottom: 40px;
    }
    .mission-values { display: flex; flex-direction: column; gap: 0; }
    .mission-value {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mission-value:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .mission-value-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
    }
    .mission-value span {
      font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.75);
    }
    .mission-visual {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .mission-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius); padding: 32px 28px;
    }
    .mission-card:first-child { grid-column: 1 / -1; background: rgba(87,90,255,0.12); border-color: rgba(87,90,255,0.3); }
    .mission-card-num {
      font-size: 36px; font-weight: 800; color: var(--white);
      letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px;
    }
    .mission-card-num em { color: var(--yellow); font-style: normal; }
    .mission-card-label { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ── CLIENTS ── */
    #clients { background: var(--white); border-bottom: 1px solid var(--gray-200); }
    .clients-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--gray-200);
    }
    .client-card {
      padding: 40px 32px; border-right: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .client-card:nth-child(4n) { border-right: none; }
    .client-card:nth-last-child(-n+4) { border-bottom: none; }
    .client-card:hover { background: var(--gray-100); }
    .client-name {
      font-size: 14px; font-weight: 600; color: var(--gray-500);
      letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s;
    }
    .client-card:hover .client-name { color: var(--dark); }

    /* ── TEAM ── */
    #team { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
    .team-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 64px;
    }
    .team-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .team-card {
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s;
    }
    .team-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .team-avatar {
      width: 100%; aspect-ratio: 1; background: var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em;
      border-bottom: 1px solid var(--gray-200);
    }
    .team-info { padding: 20px; }
    .team-info h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .team-info .role { font-size: 12px; color: var(--gray-500); font-weight: 400; }
    .team-divider { border-top: 1px solid var(--gray-200); margin: 12px 0; }
    .team-info .exp { font-size: 12px; color: var(--gray-700); }

    /* ── CTA ── */
    #cta { background: var(--blue); }
    #cta .section-label { color: rgba(255,255,255,0.6); }
    .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;
      line-height: 1.1; letter-spacing: -0.03em; color: var(--white);
      margin-bottom: 16px;
    }
    .cta-p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
    .cta-details { display: flex; flex-direction: column; gap: 20px; }
    .cta-detail { display: flex; gap: 14px; align-items: flex-start; }
    .cta-detail-icon {
      width: 36px; height: 36px; background: rgba(255,255,255,0.1);
      border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .cta-detail h5 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
    .cta-detail p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
    .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.55);
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .form-field input, .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 input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-field input: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: 100px; }
    .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-right { display: flex; gap: 16px; align-items: center; }
    .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(24px); transition: opacity 0.55s ease, transform 0.55s 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; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      section { padding: 60px 0; }
      .page-h1 { font-size: 32px; }
      .page-desc { font-size: 16px; max-width: 100%; }
      .stats-bar { grid-template-columns: 1fr; }
      .stat-item { padding: 24px 28px; border-right: none; border-bottom: 1px solid var(--gray-200); }
      .stat-item:last-child { border-bottom: none; }
      .stat-num { font-size: 40px; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .why-item { padding: 20px 24px; }
      .timeline-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
      .timeline::before { left: 20px; }
      .timeline-year { padding-left: 36px; }
      .timeline-dot { left: 16px; top: 32px; }
      .timeline-content h3 { font-size: 18px; }
      .mission-inner { grid-template-columns: 1fr; gap: 40px; }
      .mission-h2 { font-size: 28px; }
      .mission-visual { grid-template-columns: 1fr; }
      .mission-card { padding: 24px; }
      .clients-grid { grid-template-columns: 1fr 1fr; }
      .client-card:nth-child(4n) { border-right: 1px solid var(--gray-200); }
      .client-card:nth-child(2n) { border-right: none; }
      .client-card:nth-last-child(-n+2) { border-bottom: none; }
      .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .team-card:last-child { grid-column: span 2; }
      .team-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .cta-inner { grid-template-columns: 1fr; gap: 32px; }
      .cta-h2 { font-size: 24px; }
      .nav-links { gap: 16px; }
      .nav-cta { display: none; }
      .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .section-title { font-size: 24px; }
      .section-desc { margin-bottom: 40px; }
    }