/* =============================================
       DESIGN TOKENS
       ============================================= */
    :root {
      --accent:         #4F46E5;
      --accent-hover:   #4338CA;
      --bg-dark:        #0D0D0D;
      --bg-dark-soft:   #1A1A1A;
      --bg-light:       #FAFAFA;
      --bg-white:       #FFFFFF;
      --border:         #E8E8E8;
      --border-dark:    #333333;
      --text-muted:     #B0B0B0;
      --text-primary:   #0D0D0D;
      --text-secondary: #7A7A7A;
      --text-white:     #FFFFFF;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --nav-h: 64px;
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --t: 0.3s;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
    }

    /* =============================================
       RESET
       ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--font); color: var(--text-primary); background: var(--bg-white); overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: var(--font); cursor: pointer; border: none; background: none; }
    input, textarea { font-family: var(--font); }

    /* =============================================
       KEYFRAMES
       ============================================= */
    @keyframes fadeUp   { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
    @keyframes heroIn   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* =============================================
       SCROLL-REVEAL CLASSES
       ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-left {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }

    .delay-1 { transition-delay: 0.08s; }
    .delay-2 { transition-delay: 0.16s; }
    .delay-3 { transition-delay: 0.24s; }
    .delay-4 { transition-delay: 0.32s; }
    .delay-5 { transition-delay: 0.40s; }

    /* =============================================
       LAYOUT
       ============================================= */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      line-height: 1.18;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-secondary);
      margin-top: 12px;
      line-height: 1.65;
    }

    /* =============================================
       NAVBAR
       ============================================= */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-h);
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background var(--t) var(--ease),
                  border-color var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    #navbar.scrolled {
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1344px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-logo img {
      height: 26px;
      width: auto;
      object-fit: contain;
      transition: filter var(--t) var(--ease);
    }

    .nav-logo-wordmark {
      font-size: 19px;
      font-weight: 800;
      color: var(--text-white);
      transition: color var(--t) var(--ease);
      letter-spacing: -0.02em;
    }

    #navbar.scrolled .nav-logo-wordmark { color: var(--text-primary); }

    .nav-logo-dot { color: var(--accent); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.75);
      transition: color var(--t) var(--ease);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.22s var(--ease);
    }

    .nav-links a:hover { color: var(--text-white); }
    .nav-links a:hover::after { transform: scaleX(1); }
    #navbar.scrolled .nav-links a { color: var(--text-secondary); }
    #navbar.scrolled .nav-links a:hover { color: var(--text-primary); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .lang-toggle {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: color var(--t) var(--ease);
    }

    .lang-toggle:hover { color: var(--text-white); }
    #navbar.scrolled .lang-toggle { color: var(--text-muted); }
    #navbar.scrolled .lang-toggle:hover { color: var(--text-primary); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 9px 20px;
      background: var(--accent);
      color: var(--text-white);
      border-radius: var(--r-sm);
      font-size: 13px;
      font-weight: 600;
      transition: background var(--t) var(--ease),
                  transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    .nav-cta:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(79,70,229,0.35);
    }

    .nav-cta::after { display: none !important; }

    /* hamburger */
    .nav-menu-btn {
      display: none;
      width: 40px; height: 40px;
      align-items: center; justify-content: center;
      color: var(--text-white);
      border-radius: var(--r-sm);
      transition: background var(--t) var(--ease), color var(--t) var(--ease);
    }

    #navbar.scrolled .nav-menu-btn { color: var(--text-primary); }
    .nav-menu-btn:hover { background: rgba(255,255,255,0.1); }
    #navbar.scrolled .nav-menu-btn:hover { background: var(--bg-light); }

    /* =============================================
       MOBILE DRAWER
       ============================================= */
    #menu-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.45);
      z-index: 1050;
      opacity: 0; pointer-events: none;
      transition: opacity var(--t) var(--ease);
    }

    #menu-overlay.open { opacity: 1; pointer-events: all; }

    #mobile-menu {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 290px;
      background: var(--bg-white);
      z-index: 1100;
      padding: 24px;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.33s var(--ease);
      box-shadow: -8px 0 48px rgba(0,0,0,0.18);
    }

    #mobile-menu.open { transform: translateX(0); }

    .mm-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .mm-logo {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .mm-close {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-secondary);
      border-radius: var(--r-sm);
      transition: background var(--t) var(--ease);
    }

    .mm-close:hover { background: var(--bg-light); }

    .mm-links { flex: 1; display: flex; flex-direction: column; gap: 2px; }

    .mm-links a {
      display: block;
      padding: 11px 14px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-primary);
      border-radius: var(--r-sm);
      transition: background var(--t) var(--ease), color var(--t) var(--ease);
    }

    .mm-links a:hover { background: var(--bg-light); color: var(--accent); }

    .mm-cta {
      display: block;
      margin-top: 20px;
      text-align: center;
      padding: 14px;
      background: var(--accent);
      color: var(--text-white);
      border-radius: var(--r-md);
      font-size: 15px;
      font-weight: 600;
      transition: background var(--t) var(--ease), transform var(--t) var(--ease);
    }

    .mm-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

    /* =============================================
       HERO
       ============================================= */
    #hero {
      position: relative;
      height: 700px;
      background: var(--bg-dark);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('./images/generated-1774195058325.png');
      background-size: cover;
      background-position: center 30%;
      will-change: transform;
      transform: scale(1.12);
    }

    .hero-overlay-top {
      position: absolute; top: 0; left: 0; right: 0;
      height: 180px;
      background: linear-gradient(to bottom, #0D0D0D 0%, rgba(13,13,13,0) 100%);
      z-index: 1;
    }

    .hero-overlay-bottom {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 340px;
      background: linear-gradient(to top, #0D0D0D 25%, rgba(13,13,13,0.55) 65%, rgba(13,13,13,0) 100%);
      z-index: 1;
    }

    .hero-overlay-left {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.55) 40%, rgba(13,13,13,0.1) 65%, rgba(13,13,13,0) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative; z-index: 2;
      width: 100%;
      max-width: 1344px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .hero-inner {
      max-width: 580px;
      animation: heroIn 0.9s var(--ease) 0.2s both;
    }

    .hero-headline {
      font-size: clamp(38px, 5.5vw, 64px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--text-white);
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }

    .hero-subline {
      font-size: clamp(15px, 1.8vw, 18px);
      color: rgba(255,255,255,0.68);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 460px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      padding: 14px 28px;
      background: var(--accent);
      color: var(--text-white);
      border-radius: var(--r-md);
      font-size: 15px;
      font-weight: 600;
      transition: background var(--t) var(--ease),
                  transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(79,70,229,0.42);
    }

    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      padding: 14px 28px;
      border: 1.5px solid rgba(255,255,255,0.28);
      color: var(--text-white);
      border-radius: var(--r-md);
      font-size: 15px;
      font-weight: 600;
      transition: background var(--t) var(--ease),
                  border-color var(--t) var(--ease),
                  transform var(--t) var(--ease);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.55);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 36px;
    }

    .hero-stat-num {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-white);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .hero-stat-lbl {
      font-size: 13px;
      color: rgba(255,255,255,0.48);
      margin-top: 5px;
    }

    /* =============================================
       SERVICES
       ============================================= */
    #services {
      background: var(--bg-white);
      padding: 100px 0;
    }

    .section-hd { margin-bottom: 56px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-card {
      padding: 32px 26px;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: var(--bg-white);
      cursor: default;
      transition: transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease),
                  border-color var(--t) var(--ease);
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .svc-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(79,70,229,0.07);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: background var(--t) var(--ease), transform var(--t) var(--ease);
    }

    .service-card:hover .svc-icon {
      background: var(--accent);
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-icon svg {
      width: 22px; height: 22px;
      color: var(--accent);
      transition: color var(--t) var(--ease);
    }

    .service-card:hover .svc-icon svg { color: var(--text-white); }

    .svc-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .svc-desc {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* =============================================
       SECTORS
       ============================================= */
    #sectors {
      background: var(--bg-light);
      padding: 100px 0;
    }

    .sectors-hd { text-align: center; margin-bottom: 56px; }

    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .sector-card {
      padding: 32px 24px;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      cursor: default;
      transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    }

    .sector-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .sec-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(79,70,229,0.07);
      display: flex; align-items: center; justify-content: center;
      transition: background var(--t) var(--ease);
    }

    .sector-card:hover .sec-icon { background: var(--accent); }

    .sec-icon svg {
      width: 20px; height: 20px;
      color: var(--accent);
      transition: color var(--t) var(--ease);
    }

    .sector-card:hover .sec-icon svg { color: var(--text-white); }

    .sec-label {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
    }

    /* =============================================
       PROCESS
       ============================================= */
    #process {
      background: var(--bg-white);
      padding: 100px 0;
    }

    .process-hd { text-align: center; margin-bottom: 72px; }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 26px;
      left: 20px;
      right: calc(16.7% + 20px);
      height: 1px;
      background: var(--border);
    }

    .process-step {
      padding: 0 36px;
      position: relative;
      z-index: 1;
    }

    .process-step:first-child { padding-left: 0; }
    .process-step:last-child  { padding-right: 0; }

    .step-num {
      display: inline-flex;
      align-items: center; justify-content: center;
      width: 52px; height: 52px;
      border: 2px solid var(--accent);
      border-radius: 50%;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.04em;
      margin-bottom: 24px;
      background: var(--bg-white);
      transition: background var(--t) var(--ease),
                  color var(--t) var(--ease),
                  transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    .process-step:hover .step-num {
      background: var(--accent);
      color: var(--text-white);
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(79,70,229,0.32);
    }

    .step-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* =============================================
       TEAM
       ============================================= */
    #team {
      background: var(--bg-dark);
      padding: 100px 0;
    }

    .team-hd { text-align: center; margin-bottom: 56px; }
    .team-hd .section-title  { color: var(--text-white); }
    .team-hd .section-sub    { color: var(--text-muted); }
    .team-hd .section-label  { color: rgba(130,124,255,0.95); }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .team-card {
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--bg-dark-soft);
      border: 1px solid var(--border-dark);
      cursor: default;
      transition: transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease),
                  border-color var(--t) var(--ease);
    }

    .team-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 24px 56px rgba(0,0,0,0.45);
      border-color: rgba(79,70,229,0.45);
    }

    .team-photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      position: relative;
    }

    .team-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.55s var(--ease);
    }

    .team-card:hover .team-photo img { transform: scale(1.09); }

    .team-initials {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 72px;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      letter-spacing: -0.02em;
      pointer-events: none;
      text-shadow: 0 2px 24px rgba(0,0,0,0.55);
      z-index: 1;
      transition: opacity 0.4s var(--ease);
    }

    .team-card:hover .team-initials { opacity: 0; }

    .team-info {
      padding: 14px 16px 18px;
    }

    .team-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 11.5px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .team-bio {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    /* =============================================
       STATS
       ============================================= */
    #stats {
      background: var(--bg-dark-soft);
      border-top: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark);
      padding: 80px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat-item {
      text-align: center;
      padding: 0 48px;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 10%; bottom: 10%;
      width: 1px;
      background: var(--border-dark);
    }

    .stat-num {
      font-size: clamp(44px, 6vw, 66px);
      font-weight: 800;
      color: var(--text-white);
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .stat-suffix { color: var(--accent); }

    .stat-lbl {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    /* =============================================
       FAQ
       ============================================= */
    #faq {
      background: var(--bg-white);
      padding: 100px 0;
    }

    .faq-hd { margin-bottom: 56px; }

    .faq-list {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 24px 32px;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
      text-align: left;
      background: none;
      transition: background var(--t) var(--ease), color var(--t) var(--ease);
    }

    .faq-q:hover { background: var(--bg-light); }
    .faq-item.open .faq-q { color: var(--accent); }

    .faq-chevron {
      flex-shrink: 0;
      width: 20px; height: 20px;
      color: var(--text-secondary);
      transition: transform 0.32s var(--ease), color var(--t) var(--ease);
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--accent);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s var(--ease);
    }

    .faq-item.open .faq-a { max-height: 280px; }

    .faq-a-inner {
      padding: 0 32px 24px;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.72;
    }

    /* =============================================
       CONTACT
       ============================================= */
    #contact {
      background: var(--bg-dark);
      padding: 100px 0;
    }

    .contact-hd { margin-bottom: 56px; }
    .contact-hd .section-title  { color: var(--text-white); }
    .contact-hd .section-sub    { color: var(--text-muted); }
    .contact-hd .section-label  { color: rgba(130,124,255,0.95); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 72px;
      align-items: start;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .ci {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .ci-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: rgba(79,70,229,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background var(--t) var(--ease);
    }

    .ci:hover .ci-icon { background: var(--accent); }

    .ci-icon svg {
      width: 18px; height: 18px;
      color: var(--accent);
      transition: color var(--t) var(--ease);
    }

    .ci:hover .ci-icon svg { color: var(--text-white); }

    .ci-text {
      font-size: 15px;
      color: rgba(255,255,255,0.78);
      padding-top: 11px;
      line-height: 1.5;
      transition: color var(--t) var(--ease);
    }

    .ci:hover .ci-text { color: var(--text-white); }

    .contact-form-wrap {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border-dark);
      border-radius: var(--r-lg);
      padding: 40px;
      transition: border-color var(--t) var(--ease);
    }

    .contact-form-wrap:focus-within {
      border-color: rgba(79,70,229,0.35);
    }

    .form-group { margin-bottom: 18px; }

    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.55);
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .form-input, .form-textarea {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border-dark);
      border-radius: var(--r-sm);
      padding: 12px 16px;
      font-size: 14px;
      color: var(--text-white);
      outline: none;
      transition: border-color var(--t) var(--ease),
                  background var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    .form-input::placeholder, .form-textarea::placeholder {
      color: rgba(255,255,255,0.2);
    }

    .form-input:focus, .form-textarea:focus {
      border-color: var(--accent);
      background: rgba(79,70,229,0.07);
      box-shadow: 0 0 0 3px rgba(79,70,229,0.14);
    }

    .form-textarea { resize: vertical; min-height: 118px; }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--accent);
      color: var(--text-white);
      border-radius: var(--r-md);
      font-size: 15px;
      font-weight: 600;
      transition: background var(--t) var(--ease),
                  transform var(--t) var(--ease),
                  box-shadow var(--t) var(--ease);
    }

    .form-submit:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(79,70,229,0.38);
    }

    .form-submit:active { transform: translateY(0); }

    .form-submit:disabled {
      cursor: not-allowed;
      opacity: 0.8;
    }

    /* =============================================
       FOOTER
       ============================================= */
    #footer {
      background: #080808;
      border-top: 1px solid #181818;
      padding: 64px 0 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 64px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid #181818;
    }

    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }

    .footer-brand-logo img {
      height: 22px; width: auto;
      object-fit: contain;
    }

    .footer-wm {
      font-size: 18px;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: -0.02em;
    }

    .footer-dot { color: var(--accent); }

    .footer-tagline {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .footer-oib {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
    }

    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 18px;
    }

    .footer-col-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col-links a {
      font-size: 14px;
      color: var(--text-muted);
      display: inline-block;
      transition: color var(--t) var(--ease), transform var(--t) var(--ease);
    }

    .footer-col-links a:hover {
      color: var(--text-white);
      transform: translateX(3px);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-copy, .footer-loc {
      font-size: 13px;
      color: rgba(255,255,255,0.25);
    }

    /* =============================================
       TABLET (≤1024px)
       ============================================= */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .sectors-grid  { grid-template-columns: repeat(2, 1fr); }
      .team-grid     { grid-template-columns: repeat(3, 1fr); }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 860px) {
      .process-steps {
        grid-template-columns: 1fr;
        gap: 44px;
      }
      .process-steps::before { display: none; }
      .process-step { padding: 0 !important; }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* =============================================
       MOBILE (≤768px)
       ============================================= */
    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner  { padding: 0 20px; }

      .nav-links, .lang-toggle, .nav-cta { display: none; }
      .nav-menu-btn { display: flex; }

      #hero {
        height: auto;
        min-height: 100svh;
        padding-top: calc(var(--nav-h) + 40px);
        padding-bottom: 60px;
      }

      .hero-bg { background-image: url('./images/generated-1774214852123.png'); }
      .hero-content { padding: 0 20px; }
      .hero-inner { max-width: 100%; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-outline { justify-content: center; }
      .hero-stats { gap: 20px; }

      #services, #sectors, #process, #team, #stats, #faq, #contact { padding: 64px 0; }

      .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .sectors-grid  { grid-template-columns: 1fr 1fr; gap: 14px; }
      .team-grid     { grid-template-columns: 1fr 1fr; gap: 14px; }

      .stats-grid { grid-template-columns: 1fr; gap: 40px; }
      .stat-item { padding: 0; }
      .stat-item::after { display: none !important; }

      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

      .faq-q { padding: 20px 20px; font-size: 15px; }
      .faq-a-inner { padding: 0 20px 20px; }

      .contact-form-wrap { padding: 24px; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .sectors-grid  { grid-template-columns: 1fr; }
    }
