*,
  *::before,
  *::after { box-sizing: border-box; }

  /* Self-hosted Inter (no third-party Google Fonts call) */
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/inter-300.woff2') format('woff2'); }
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-600.woff2') format('woff2'); }
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-700.woff2') format('woff2'); }
  @font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/inter-800.woff2') format('woff2'); }

  :root {
    --bg: #0a0a0c;
    --surface: #14141a;
    --surface-2: #1c1c22;
    --surface-3: #24242c;
    --line: #2a2a33;
    --line-strong: #3a3a45;
    --text: #ffffff;
    --text-2: #a8a8ad;
    --text-3: #6c6c75;
    --brand: #dd174d;
    --brand-2: #b8123f;
    --brand-soft: rgba(221, 23, 77, 0.12);
    --brand-glow: rgba(221, 23, 77, 0.32);
    --magenta: #dd174d;
    --max: 1240px;
    --gutter: clamp(20px, 4vw, 40px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
      radial-gradient(circle at 20% 0%, rgba(221, 23, 77, 0.06) 0%, transparent 40%),
      radial-gradient(circle at 80% 100%, rgba(221, 23, 77, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

  h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.1;
    margin: 0;
    color: var(--text);
  }

  p { margin: 0; }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--brand);
  }

  /* ================== NAV ================== */

  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }

  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 32px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .logo svg { display: block; }

  .logo__word {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav__links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    transition: color 0.2s var(--ease);
    position: relative;
  }

  .nav__links a:hover { color: var(--text); }

  .nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--brand);
    transition: width 0.3s var(--ease);
  }

  .nav__links a:hover::after { width: 100%; }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.3s var(--ease);
  }

  .nav__cta:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--brand-glow);
  }

  .nav__burger { display: none; }

  /* ================== HERO ================== */

  .hero {
    position: relative;
    min-height: 92vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/assets/hero-b-trust.webp') center / cover no-repeat, var(--surface);
  }

  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(10, 10, 12, 0.55) 0%, rgba(10, 10, 12, 0.7) 50%, rgba(10, 10, 12, 0.95) 100%),
      linear-gradient(90deg, rgba(10, 10, 12, 0.85) 0%, rgba(10, 10, 12, 0.4) 60%, transparent 100%);
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
  }

  .hero__eyebrow {
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(40px, 6.2vw, 76px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 28px;
  }

  .hero h1 .accent {
    color: var(--brand);
    font-style: italic;
    font-weight: 600;
  }

  .hero__lede {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text-2);
    max-width: 580px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
  }

  .hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
    border: 1px solid transparent;
  }

  .btn--primary {
    background: var(--brand);
    color: #fff;
  }

  .btn--primary:hover {
    background: var(--brand-2);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--brand-glow);
  }

  .btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
  }

  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
  }

  .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-2);
  }

  .badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
  }

  /* stats */

  .stats {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1;
  }

  .stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat {
    padding: 56px 32px;
    border-right: 1px solid var(--line);
    text-align: left;
  }

  .stat:last-child { border-right: 0; }

  .stat__num {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
  }

  .stat__num .suffix {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: -0.02em;
  }

  .stat__label {
    font-size: 13px;
    color: var(--text-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* ================== SECTIONS ================== */

  section { position: relative; z-index: 1; }

  .section {
    padding: 120px 0;
  }

  .section__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 72px;
    align-items: end;
  }

  .section__head .right p {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 52ch;
  }

  .section h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-top: 18px;
  }

  /* ================== SERVICES ================== */

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }

  .service {
    background: var(--surface);
    padding: 40px 32px 32px;
    transition: background 0.3s var(--ease);
    position: relative;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    flex-direction: column;
  }

  .service:hover {
    background: var(--surface-2);
  }

  .service__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--brand);
    transition: transform 0.3s var(--ease);
  }

  .service:hover .service__icon { transform: translateY(-2px) rotate(-3deg); }

  .service__icon svg { width: 22px; height: 22px; }

  .service h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .service p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
  }

  .service__more {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s var(--ease);
  }

  .service:hover .service__more { gap: 12px; }

  /* ================== AREAS ================== */

  .areas {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .areas__tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .areas__tab {
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-3);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    letter-spacing: 0.02em;
  }

  .areas__tab.is-active,
  .areas__tab:hover {
    color: var(--text);
    border-bottom-color: var(--brand);
  }

  .areas__tab span {
    color: var(--text-3);
    margin-left: 8px;
    font-size: 12px;
    font-weight: 400;
  }

  .areas__tab.is-active span { color: var(--brand); }

  .areas__panel {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
  }

  .areas__panel.is-active {
    display: grid;
    animation: fadeIn 0.4s var(--ease);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .areas__zone-name {
    font-size: 14px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .areas__zone-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .areas__zone-desc {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.65;
  }

  .areas__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .areas__list li {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .areas__list li:hover {
    border-color: var(--brand);
    background: var(--surface-3);
    transform: translateY(-2px);
  }

  .areas__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
  }

  /* ================== PROCESS ================== */

  .process {
    position: relative;
    overflow: hidden;
  }

  .process__bg {
    position: absolute;
    inset: 0;
    background: url('/assets/blueprint-real.webp') center / cover no-repeat;
    opacity: 0.55;
    z-index: 0;
    mix-blend-mode: screen;
  }

  .process__inner { position: relative; z-index: 1; }

  .process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
  }

  .process__steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--line-strong) 10%, var(--line-strong) 90%, transparent 100%);
    z-index: 0;
  }

  .step {
    position: relative;
    z-index: 1;
  }

  .step__num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 24px;
    position: relative;
  }

  .step__num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }

  .step:hover .step__num::after { opacity: 1; }

  .step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .step p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
  }

  /* ================== PROJECTS ================== */

  .projects {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .project {
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--line);
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
    cursor: pointer;
  }

  .project:hover {
    transform: translateY(-6px);
    border-color: var(--brand);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--brand-glow);
  }

  .project__img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
  }

  .project__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
    filter: saturate(0.85) brightness(0.92);
  }

  .project:hover .project__img img {
    transform: scale(1.06);
    filter: saturate(1) brightness(1);
  }

  .project__body {
    padding: 22px 24px 24px;
  }

  .project__tag {
    font-size: 11px;
    color: var(--brand);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .project h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }

  .project__meta {
    font-size: 13px;
    color: var(--text-3);
    display: flex;
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .project__meta span { display: inline-flex; align-items: center; gap: 6px; }

  /* ================== ACCREDITATIONS ================== */

  .accred {
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
  }

  .accred__head {
    text-align: center;
    margin-bottom: 56px;
  }

  .accred h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-top: 16px;
  }

  .accred__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }

  .accred__cell {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background 0.3s var(--ease);
    position: relative;
    cursor: help;
  }

  .accred__cell:last-child { border-right: 0; }
  .accred__cell:hover { background: var(--surface-3); }

  .accred__logo {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--text);
  }

  .accred__logo svg { max-height: 100%; max-width: 100%; }

  .accred__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
  }

  .accred__tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    z-index: 5;
    text-align: left;
    font-weight: 400;
  }

  .accred__cell:hover .accred__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* ================== TESTIMONIALS ================== */

  .testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .review {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 30px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
    display: flex;
    flex-direction: column;
  }

  .review:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
  }

  .review__stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 20px;
    color: var(--brand);
  }

  .review__stars svg { width: 16px; height: 16px; }

  .review__body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 24px;
    flex: 1;
  }

  .review__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .review__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
  }

  .review__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }

  .review__loc {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
  }

  /* ================== ABOUT ================== */

  .about {
    position: relative;
    overflow: hidden;
  }

  .about__bg {
    position: absolute;
    inset: 0;
    background: url('/assets/blueprint-real.webp') right center / cover no-repeat;
    opacity: 0.5;
    z-index: 0;
    mix-blend-mode: screen;
  }

  .about__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .about__photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--surface);
    border: 1px solid var(--line);
  }

  .about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.9);
  }

  .about__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 12, 0.6) 100%);
  }

  .about__photo-cap {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: #fff;
  }

  .about__photo-cap .name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .about__photo-cap .title {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 4px;
  }

  .about h2 {
    font-size: clamp(30px, 3.6vw, 46px);
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .about__lede {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 24px;
    max-width: 56ch;
    font-weight: 300;
  }

  .about__principles {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }

  .about__principles li {
    background: var(--surface);
    padding: 22px 24px;
  }

  .about__principles strong {
    display: block;
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .about__principles span {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
  }

  /* ================== CONTACT ================== */

  .contact {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-top: 1px solid var(--line);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-soft) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    position: relative;
    z-index: 1;
  }

  .contact h2 {
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1;
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .contact__lede {
    font-size: 17px;
    color: var(--text-2);
    margin-bottom: 40px;
    line-height: 1.65;
    max-width: 44ch;
  }

  .contact__phones {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }

  .phone-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px 22px;
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .phone-card:hover {
    border-color: var(--brand);
    transform: translateX(4px);
  }

  .phone-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .phone-card__icon svg { width: 16px; height: 16px; }

  .phone-card__num {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
  }

  .phone-card__label {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px;
  }

  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .field { display: flex; flex-direction: column; gap: 6px; }
  .field--full { grid-column: 1 / -1; }

  .field label {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .field input,
  .field select,
  .field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
    width: 100%;
    box-sizing: border-box;
  }
  .field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a8ad' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    cursor: pointer;
  }
  .field select:focus {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd174d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  }
  .field select option {
    background: var(--bg);
    color: var(--text);
  }
  .field select:invalid,
  .field select option[value=""] {
    color: var(--text-3);
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--surface-2);
  }

  .field textarea { resize: vertical; min-height: 120px; }

  .form button[type="submit"] {
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    background: var(--brand);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: background 0.2s var(--ease), box-shadow 0.3s var(--ease);
  }

  .form button[type="submit"]:hover {
    background: var(--brand-2);
    box-shadow: 0 12px 32px var(--brand-glow);
  }

  .form__note {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 14px;
    text-align: center;
  }

  /* ================== FOOTER ================== */

  .footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 64px 0 32px;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer__brand p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-top: 18px;
    max-width: 36ch;
  }

  .footer__col h4 {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 18px;
  }

  .footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }

  .footer__col a {
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.2s var(--ease);
  }

  .footer__col a:hover { color: var(--brand); }

  .footer__bottom {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__copy {
    font-size: 13px;
    color: var(--text-3);
  }

  .footer__legal {
    display: flex;
    gap: 24px;
  }

  .footer__legal a {
    font-size: 13px;
    color: var(--text-3);
    transition: color 0.2s var(--ease);
  }

  .footer__legal a:hover { color: var(--text-2); }

  /* ================== MOBILE STICKY CTA ================== */

  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mobile-cta a.primary { background: var(--brand); color: #fff; }
  .mobile-cta a.ghost { background: var(--surface-2); border: 1px solid var(--line); color: var(--text); }

  /* ================== REVEAL ================== */

  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stagger > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    transition-delay: calc(var(--i, 0) * 80ms);
  }

  .stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  /* ================== RESPONSIVE ================== */

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .accred__row { grid-template-columns: repeat(3, 1fr); }
    .accred__cell:nth-child(3) { border-right: 0; }
    .accred__cell:nth-child(n+4) { border-top: 1px solid var(--line); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
    .areas__panel.is-active,
    .areas__panel { grid-template-columns: 1fr; gap: 32px; }
    .about__grid,
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .section__head { grid-template-columns: 1fr; gap: 24px; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
  }

  @media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__cta span { display: none; }
    .nav__cta { padding: 11px 14px; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .section { padding: 80px 0; }
    .services-grid,
    .projects__grid { grid-template-columns: 1fr; }
    .accred__row { grid-template-columns: repeat(2, 1fr); border-radius: 12px; }
    .accred__cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .accred__cell:nth-child(2n) { border-right: 0; }
    .accred__cell:nth-last-child(-n+1) { border-bottom: 0; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 36px 20px; }
    .form { padding: 28px 22px; }
    .form__row { grid-template-columns: 1fr; }
    .areas__list { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about__principles { grid-template-columns: 1fr; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 80px; }
    .process__steps { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 38px; }
    .stats__grid { grid-template-columns: 1fr; }
    .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .footer__grid {
      grid-template-columns: 1fr 1fr;
      gap: 24px 18px;
    }
    .footer__brand { grid-column: 1 / -1; }
    .footer__brand p { font-size: 13px; max-width: none; margin-top: 12px; }
    .footer__col h4 { font-size: 10.5px; margin-bottom: 10px; letter-spacing: 0.14em; }
    .footer__col li { font-size: 13px; margin-bottom: 7px; line-height: 1.4; }
    .footer__col a { word-break: break-word; overflow-wrap: anywhere; }
  }