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

    /* Eliminate 300ms tap delay on mobile */
    a, button, [role="button"], label, input[type="submit"], input[type="button"] {
      touch-action: manipulation;
    }

    :root {
      --bg: #f0f0f0;
      --white: #ffffff;
      --black: #111111;
      --gray: #555555;
      --light-gray: #e8e8e8;
      --border: #e0e0e0;
      --radius: 20px;
      --radius-sm: 12px;
      --blue: #1C3B6A;
      --blue-light: #E8EEF7;
      --orange: #E8620A;
      --orange-light: #FFF0E8;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--black);
      line-height: 1.6;
      position: relative;
    }

    /* ────────── DOT GRID BACKGROUND ────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image: radial-gradient(#00000018 1px, transparent 1px);
      background-size: 24px 24px;
      -webkit-mask:
        linear-gradient(to bottom, transparent, #fff 120px calc(100% - 120px), transparent),
        linear-gradient(to right,  transparent, #fff 120px calc(100% - 120px), transparent);
      mask:
        linear-gradient(to bottom, transparent, #fff 120px calc(100% - 120px), transparent),
        linear-gradient(to right,  transparent, #fff 120px calc(100% - 120px), transparent);
      -webkit-mask-composite: source-in, xor;
      mask-composite: intersect;
      pointer-events: none;
    }

    /* subtle static overlay — replaces infinite ripple-pulse */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background: radial-gradient(circle at 50% 30%, rgba(28,59,106,0.03) 0%, transparent 65%);
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ensure all content sits above the bg layers */
    nav, section, footer, .hero { position: relative; z-index: 1; }

    /* ────────── LAYOUT ────────── */
    .container {
      max-width: 1060px;
      margin: 0 auto;
      padding: 0 24px;
    }

    section { padding: 48px 0; }

    .section-label {
      display: flex;
      width: fit-content;
      align-items: center;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 999px;
      padding: 5px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #444;
      background: #ffffff;
      margin: 0 auto 20px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      cursor: default;
    }

    /* section-label is decorative — no hover lift */

    .container .section-label { margin-left: 0; }

    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--gray);
      max-width: 60ch;
      line-height: 1.7;
    }

    /* ────────── NAVBAR ────────── */
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 24px 0;
      max-width: 1048px;
      margin: 0 auto;
      transition: transform 0.3s ease;
    }
    .nav-wrap.nav-hidden {
      transform: translateY(-120%);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      border-radius: 999px;
      padding: 14px 20px 14px 28px;
      max-width: 1000px;
      margin: 0 auto;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow .3s, backdrop-filter .3s, background .3s;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      font-weight: 800;
      font-size: 16px;
      text-decoration: none;
      color: #1C3B6A;
    }

    .nav-logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .nav-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .nav-links a {
      text-decoration: none;
      color: var(--gray);
      font-size: 14px;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--black); }

    .nav-cta {
      background: var(--blue);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 9px 20px;
      font-size: 14px;
      cursor: pointer;
      text-decoration: none;
      transition: opacity .2s;
    }
    .nav-cta:hover { opacity: 0.85; }

    .nav-call {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--blue-light);
      color: var(--blue);
      text-decoration: none;
      border-radius: 999px;
      padding: 11px 22px;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      transition: background .2s, color .2s;
    }
    .nav-call:hover { background: #dce8f7; }

    .toast {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(16px);
      background: var(--black);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: 999px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s, transform .25s;
      z-index: 9999;
      white-space: nowrap;
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }


    /* ────────── 1. HERO ────────── */
    .hero {
      text-align: center;
      padding: 48px 0 40px;
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 800;
      line-height: 1.12;
      margin-bottom: 22px;
      color: var(--black);
      width: 100%;
    }

    .hero h1 span {
      color: var(--blue);
    }

    .hero p {
      font-size: 17px;
      color: #374151;
      max-width: 760px;
      margin: 0 auto 40px;
      line-height: 1.7;
      text-align: center;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      justify-content: center;
      margin-bottom: 56px;
    }

    .hero-order-label {
      font-size: 20px;
      font-weight: 700;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-buttons-row {
      display: flex;
      gap: 56px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-contact {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 999px;
      padding: 16px 48px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: filter .2s;
      transform: translateZ(0);
    }
    .btn-contact svg { flex-shrink: 0; }
    .btn-contact:hover { filter: brightness(0.88); }

    .btn-email {
      background: var(--blue);
      color: #fff;
      border: 2px solid var(--blue);
      min-width: 200px;
      justify-content: center;
    }

    .btn-whatsapp {
      background: #fff;
      color: #25D366;
      border: 2px solid #25D366;
      min-width: 200px;
      justify-content: center;
    }

    .btn-whatsapp:hover { opacity: 1 !important; background: #f0fdf4; }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 13px 28px;
      font-size: 15px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity .2s;
    }
    .btn-primary:hover { opacity: 0.85; }

    .btn-secondary {
      background: var(--white);
      color: var(--black);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 13px 28px;
      font-size: 15px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .hero-stats {
      display: flex;
      gap: 0;
      justify-content: center;
      background: var(--white);
      border-radius: var(--radius);
      max-width: 100%;
      margin: 0 auto;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .stat {
      flex: 1;
      padding: 24px 16px;
      border-right: 1px solid var(--border);
    }

    .stat:last-child { border-right: none; }

    .stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--blue);
      display: block;
      transition: color 0.2s;
    }

    .stat-label {
      font-size: 15px;
      font-weight: 500;
      color: var(--gray);
      margin-top: 4px;
      transition: color 0.2s;
    }

    /* ────────── 2. ABOUT ────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 28px;
      align-items: stretch;
    }

    .about-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .about-col .about-card {
      flex: 1;
    }

    .about-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

    .about-card.dark {
      background: var(--black);
      color: var(--white);
    }

    .about-card.dark .about-card-sub { color: #999; }

    .about-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
    .about-card:not(.dark) .about-icon {
      background: #E8EEF7;
    }
    .about-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--black);
    }
    .about-card:not(.dark) .about-icon svg {
      fill: var(--blue);
    }
    .about-card.dark .about-icon svg {
      fill: var(--white);
    }

    .about-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .about-card-sub {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
    }

    .about-card-horiz {
      display: flex;
      flex-direction: row;
      gap: 48px;
      align-items: center;
    }
    .about-card-left {
      flex: 0 0 280px;
    }
    .about-card-right {
      flex: 1;
    }

    .timeline {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .timeline-grid {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0;
      margin-top: 0;
      position: relative;
    }
    .timeline-grid .timeline-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
      position: relative;
      padding: 0 12px;
      overflow: visible;
    }
    /* горизонтальная линия — нейтрализуем вертикальную для сетки */
    .timeline-grid .tl-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #60A5FA;
      border: 2px solid rgba(255,255,255,0.2);
      flex-shrink: 0;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .timeline-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      position: relative;
    }

    /* Вертикальная линия — через все пункты кроме последнего */
    .timeline-item:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 13px;
      width: 2px;
      bottom: 0;
      background: rgba(255,255,255,0.12);
    }

    /* Горизонтальная линия для timeline-grid — перекрывает вертикальную */
    .timeline.timeline-grid .timeline-item:not(:last-child)::before {
      top: 5px;
      left: calc(50% + 8px);
      right: calc(-50% + 8px);
      width: auto;
      height: 2px;
      bottom: auto;
      background: rgba(148, 163, 184, 0.55);
    }
    .timeline.timeline-grid .timeline-item:last-child::before { display: none; }

    .timeline-dot-col {
      width: 16px;
      display: flex;
      justify-content: center;
      padding-top: 2px;
      flex-shrink: 0;
    }

    .timeline-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #60A5FA;
      border: 2px solid rgba(255,255,255,0.15);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .timeline-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-bottom: 18px;
    }

    .timeline-item:last-child .timeline-body {
      padding-bottom: 0;
    }

    .timeline-year {
      font-size: 12px;
      font-weight: 700;
      color: #60A5FA;
      letter-spacing: 0.05em;
      line-height: 1;
      margin-top: 1px;
    }

    .timeline-text {
      font-size: 13px;
      color: #ccc;
      line-height: 1.5;
    }

    /* ────────── 3. SERVICES ────────── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      transition: transform .2s, box-shadow .2s;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .service-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #E8EEF7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
    .service-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--blue);
    }

    .service-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }

    .service-tag {
      display: inline-block;
      margin-top: auto;
      padding-top: 10px;
      align-self: flex-start;
      background: #E8EEF7;
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 13px;
      color: var(--blue);
      font-weight: 500;
    }

    /* ────────── 4. WHY US ────────── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 32px;
    }

    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      transition: transform .2s, box-shadow .2s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .why-badge {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-bottom: 10px;
    }
    .why-badge svg {
      width: 24px;
      height: 24px;
      fill: var(--blue);
    }

    .why-content h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-content p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }

    /* ────────── 5. PROCESS ────────── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 1fr;
      gap: 16px;
      margin-top: 48px;
      position: relative;
      counter-reset: step-counter;
    }

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

    .step {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
      counter-increment: step-counter;
      transition: transform .2s, box-shadow .2s;
    }

    .step:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }


    .step:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -13px;
      top: 36px;
      color: var(--blue);
      font-size: 16px;
      z-index: 2;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #E8EEF7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      flex-shrink: 0;
      position: relative;
    }

    .step-num svg {
      width: 24px;
      height: 24px;
      fill: var(--blue);
    }

    .step h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.6;
    }

    /* ────────── 6. CLIENTS ────────── */
    #clients { background: transparent; }

    .clients-sub {
      font-size: 15px;
      color: var(--gray);
      text-align: center;
      max-width: 320px;
      margin: 0 auto 48px;
      line-height: 1.6;
    }

    .clients-logos {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 0;
    }

    .client-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 32px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #b0b0b0;
      letter-spacing: 0.5px;
      transition: opacity .2s;
    }

    .client-logo img {
      max-width: 130px;
      max-height: 52px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.45);
      transition: filter .2s;
    }

    .client-logo:hover img { filter: grayscale(0%) opacity(1); }
    .client-logo:hover { color: #555; }

    /* ────────── 8. CONTACTS ────────── */
    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .contact-info {
      background: var(--black);
      border-radius: var(--radius);
      padding: 40px;
      color: var(--white);
    }

    .contact-info h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .contact-info p {
      font-size: 14px;
      color: #aaa;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
    }

    .contact-detail-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .contact-form {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

    .form-tabs {
      display: flex;
      background: #F1F5F9;
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 24px;
    }

    .form-tab {
      flex: 1;
      padding: 10px 12px;
      border: none;
      background: transparent;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      color: #64748B;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      font-family: inherit;
      white-space: nowrap;
    }

    .form-tab.active {
      background: #fff;
      color: #1E2A3B;
      box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    }

    .form-fields-group {
      transition: opacity 0.18s;
    }

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

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--black);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      -webkit-appearance: none;
      appearance: none;
      padding: 11px 14px;
      font-size: 14px;
      font-family: inherit;
      background: var(--bg);
      color: var(--black);
      outline: none;
      transition: border-color .2s;
      text-overflow: ellipsis;
    }
    input::-webkit-contacts-auto-fill-button,
    input::-webkit-credentials-auto-fill-button {
      visibility: hidden;
      pointer-events: none;
      position: absolute;
    }

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

    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea,
    .form-group.has-error .drop-zone {
      border-color: #e53e3e;
      background: #fff5f5;
    }

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


    .form-group.select-wrap { position: relative; }
    .form-group.select-wrap::after {
      content: '';
      pointer-events: none;
      position: absolute;
      right: 14px;
      top: 50%;
      margin-top: 10px;
      width: 10px;
      height: 6px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    }
    .form-group select { padding-right: 36px; cursor: pointer; }

    /* Drag & Drop */
    .drop-zone {
      border: 2px dashed var(--border);
      border-radius: var(--radius-sm);
      padding: 24px 16px;
      text-align: center;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      background: #fafafa;
      position: relative;
    }
    .drop-zone:hover, .drop-zone.drag-over {
      border-color: var(--blue);
      background: var(--blue-light);
    }
    .drop-zone input[type="file"] {
      position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
    }
    .drop-zone-icon { margin-bottom: 8px; color: #aaa; }
    .drop-zone-text { font-size: 14px; color: var(--gray); }
    .drop-zone-text span { color: var(--blue); font-weight: 600; }
    .drop-zone-files { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
    .drop-file-tag {
      background: var(--blue-light);
      color: var(--blue);
      font-size: 13px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 999px;
    }

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

    .form-submit {
      width: 100%;
      background: var(--blue);
      color: var(--white);
      border: none;
      border-radius: 999px;
      padding: 14px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 4px;
      transition: opacity .2s;
    }

    .form-submit:hover { opacity: 0.85; }
    .form-submit:disabled { opacity: 1; cursor: not-allowed; }

    .form-submit .spinner {
      display: none;
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255,255,255,0.4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin .7s linear infinite;
      flex-shrink: 0;
    }
    .form-submit.loading {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .form-submit.loading .spinner { display: block; }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ────────── FREELANCER BUTTON ────────── */

    /* ────────── FREELANCER MODAL ────────── */
    .fl-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17,17,17,0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, visibility .25s;
    }
    .fl-overlay.open {
      opacity: 1;
      visibility: visible;
    }
    .fl-modal {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      width: 100%;
      max-width: 560px;
      max-height: 90vh;
      overflow-y: auto;
      scrollbar-width: none;
      padding: 28px 32px 24px;
      position: relative;
      transform: translateY(20px) scale(0.97);
      transition: transform .25s;
    }
    .fl-modal::-webkit-scrollbar { display: none; }

    /* Compact styles inside modal */
    .fl-modal .form-group { margin-bottom: 10px; }
    .fl-modal .form-group label { margin-bottom: 4px; }
    .fl-modal .form-group textarea { min-height: 60px; }
    .fl-modal .drop-zone { padding: 12px 16px; }
    .fl-modal .drop-zone-icon { display: none; }
    .fl-modal h2 { margin-bottom: 2px; }
    .fl-modal .fl-modal-sub { margin-bottom: 14px; }
    .fl-overlay.open .fl-modal {
      transform: translateY(0) scale(1);
    }
    .fl-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--light-gray);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gray);
      transition: background .2s, color .2s;
      flex-shrink: 0;
    }
    .fl-close:hover { background: var(--border); color: var(--black); }
    .fl-modal h2 {
      font-size: 22px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 4px;
    }
    .fl-modal-sub {
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 24px;
    }
    @media (max-width: 480px) {
      .fl-modal { padding: 28px 20px 24px; }
    }

    /* ────────── FOOTER ────────── */
    footer {
      text-align: center;
      padding: 32px;
      font-size: 13px;
      color: #aaa;
      border-top: 1px solid var(--border);
      margin-top: 20px;
    }

    /* ────────── MOBILE NAV ────────── */
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 8px;
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }
    .nav-burger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: transform .25s, opacity .2s;
      transform-origin: center;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: 0 4px 24px rgba(0,0,0,0.10);
      border: 1px solid rgba(0,0,0,0.06);
      margin-top: 8px;
      overflow: hidden;
      position: relative;
      z-index: 99;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav ul { list-style: none; padding: 8px 0; }
    .mobile-nav ul li a {
      display: block;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 500;
      color: var(--black);
      text-decoration: none;
      transition: background .15s;
    }
    .mobile-nav ul li a:hover,
    .mobile-nav ul li a:active { background: var(--bg); }
    .mobile-nav ul li:not(:last-child) a { border-bottom: 1px solid var(--border); }

    /* ────────── RESPONSIVE ────────── */
    /* Tablet: between 769px and 960px */
    @media (max-width: 960px) and (min-width: 769px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .step::after { display: none; }
      .clients-logos { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      /* Prevent iOS auto-zoom on form focus (requires min 16px) */
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 16px; }

      /* Navbar */
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-wrap { padding: 8px 16px 0; }
      nav { max-width: 100%; padding: 8px 12px 8px 16px; }
      .nav-call { padding: 8px 14px; font-size: 13px; }

      /* Container */
      .container { padding: 0 16px; }

      /* Hero */
      .hero { padding: 32px 0 28px; }
      .hero p { font-size: 15px; }
      .hero-buttons-row { gap: 16px; }
      .btn-contact { padding: 14px 32px; font-size: 15px; }

      /* Contacts */
      .contact-info { padding: 28px 24px; }
      .contact-form { padding: 28px 24px; }

      /* Sections */
      .about-grid { grid-template-columns: 1fr; }
      .about-card-horiz { flex-direction: column; gap: 24px; }
      .about-card-left { flex: none; width: 100%; }
      .timeline-grid { flex-wrap: wrap; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .step::after { display: none; }
      .contact-wrap { grid-template-columns: 1fr; }
      .clients-logos { grid-template-columns: repeat(2, 1fr); }

      /* Section padding */
      section { padding: 40px 0; }
    }

    @media (max-width: 480px) {
      /* Navbar */
      .nav-wrap { padding: 6px 12px 0; }
      nav { padding: 8px 10px 8px 14px; }
      .nav-call-text { display: none; }
      .nav-call { padding: 12px 12px; gap: 0; min-height: 44px; }

      /* Hero */
      .hero h1 { font-size: 28px; }
      .hero p { font-size: 14px; margin-bottom: 28px; }
      .hero p span[style*="white-space"] { white-space: normal !important; }
      .hero-buttons-row { flex-direction: column; gap: 12px; align-items: stretch; }
      .btn-contact { min-width: 0; width: 100%; padding: 15px 24px; }
      .hero-buttons { margin-bottom: 36px; }

      /* Stats */
      .stat { padding: 16px 10px; }
      .stat-num { font-size: 20px; }
      .stat-label { font-size: 13px; }

      /* Testimonials */
      .testimonial-card { padding: 20px 16px 16px; }

      /* Process — reduce gap between oral/written blocks */
      #process .section-title + .process-steps { margin-top: 32px; }

      /* Grids */
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .timeline-grid { flex-direction: column; align-items: flex-start; }
      .timeline.timeline-grid .timeline-item:not(:last-child)::before { display: none; }
      .timeline-dot { display: none; }
      .timeline-year { font-size: 16px; }
      .process-steps { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .clients-logos { grid-template-columns: repeat(2, 1fr); }

      /* Contacts */
      .contact-info { padding: 24px 20px; }
      .contact-form { padding: 24px 20px; }

      /* Section padding */
      section { padding: 32px 0; }
    }

    @media (max-width: 375px) {
      .hero-stats { flex-direction: column; border-radius: var(--radius); }
      .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 20px; text-align: left; display: flex; align-items: center; gap: 12px; }
      .stat:last-child { border-bottom: none; }
      .stat-num { font-size: 22px; flex-shrink: 0; }
      .stat-label { font-size: 13px; margin-top: 0; }
    }

    /* ────────── LANG SWITCHER ────────── */
    .lang-switcher { position: relative; display: flex; align-items: center; }
    .lang-trigger {
      display: flex; align-items: center; gap: 5px;
      background: none; border: none; padding: 11px 9px; border-radius: 8px;
      font-size: 14px; font-weight: 700; color: var(--gray); cursor: pointer;
      font-family: inherit; transition: all .15s; letter-spacing: 0.3px;
      white-space: nowrap; line-height: 1; vertical-align: middle;
    }
    .lang-trigger:hover { background: var(--light-gray); color: var(--black); }
    .lang-trigger svg { flex-shrink: 0; opacity: 0.6; }
    .lang-dropdown {
      position: absolute; top: calc(100% + 4px); left: 0; right: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.2) 100%);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
      border-radius: 10px;
      padding: 4px 0;
      opacity: 0; visibility: hidden; transform: translateY(-4px); pointer-events: none;
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 9999;
    }
    .lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
    .lang-option {
      display: block;
      width: 100%; padding: 4px 9px;
      background: none; border: none; font-family: inherit;
      font-size: 13px; font-weight: 700; color: #aaa;
      cursor: pointer; text-align: right; transition: color .12s;
      letter-spacing: 0.3px;
    }
    .lang-option:hover { color: var(--black); }
    .lang-option.active { color: #1C3B6A; }
    .lang-flag { font-size: 15px; line-height: 1; }

    /* ────────── 7. TESTIMONIALS ────────── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 24px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      border-top: 3px solid var(--blue);
    }

    .testimonial-card > div:first-child {
      flex: 1;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }

    .testimonial-quote-mark {
      font-size: 52px;
      line-height: 0.6;
      color: var(--blue);
      opacity: 0.18;
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 700;
      display: block;
      margin-bottom: 12px;
      user-select: none;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.65;
      color: #374151;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 20px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 800;
      color: var(--blue);
      flex-shrink: 0;
      letter-spacing: -0.5px;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--black);
      line-height: 1.3;
    }

    .testimonial-org {
      font-size: 13px;
      color: var(--gray);
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 900px) and (min-width: 769px) {
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
    }