:root {
    --paper: #f7f5f0;
    --bg: #eeeae0;
    --ink: #141414;
    --ink-2: #2a2a2a;
    --ink-soft: #5a5a5a;
    --ink-faint: #9a9a9a;
    --accent: #ff5a1f;      /* orange punch */
    --accent-soft: #ffb089;
    --mint: #c9ffd9;
    --sky: #c7e0ff;
    --rule: #d9d3c4;
    --sans: "Manrope", system-ui, sans-serif;
    --serif: "Playfair Display", Georgia, serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }
  * { box-sizing: border-box; }
  html, body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  ::selection { background: var(--accent); color: var(--paper); }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 48px);
    position: relative;
  }

  /* ==== NAV ==== */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(247,245,240,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; gap: 36px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
    color: var(--ink);
  }
  .brand .dotlogo {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--accent);
    position: relative;
  }
  .brand .dotlogo::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--paper);
  }
  .brand sup { color: var(--accent); font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 20px; margin-left: -2px; }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    font-family: var(--mono);
    font-size: 11.5px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    list-style: none; margin: 0; padding: 0;
  }
  .nav-links li { list-style: none; padding: 0; margin: 0; }
  .nav-links a {
    position: relative;
    color: var(--ink-2);
    padding: 6px 0;
    transition: color 200ms ease;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 320ms cubic-bezier(0.65, 0, 0.35, 1);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .nav-links .current-menu-item a,
  .nav-links .current_page_item a { color: var(--ink); }
  .nav-links .current-menu-item a::after,
  .nav-links .current_page_item a::after { transform: scaleX(1); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    background: var(--ink); color: var(--paper);
    transition: all 200ms;
    white-space: nowrap;
    border: 1px solid var(--ink);
  }
  .btn:hover { background: var(--accent); border-color: var(--accent); }
  .btn .arr {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent); color: var(--paper);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    transition: transform 200ms;
  }
  .btn:hover .arr { transform: rotate(-45deg); background: var(--paper); color: var(--accent); }

  /* ==== HERO ==== */
  .hero { padding: 70px 0 40px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 12px 5px 8px;
    background: var(--paper);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-tag .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.5); }
    50% { box-shadow: 0 0 0 7px rgba(255,90,31,0); }
  }

  h1.hero-h {
    margin: 0;
    font-weight: 800;
    font-size: clamp(40px, 5.2vw, 88px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }
  h1.hero-h i {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.02em;
  }
  h1.hero-h u {
    text-decoration: none;
    background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
    padding: 0 0.05em;
  }
  h1.hero-h .mark {
    display: inline-block;
    background: var(--accent);
    color: var(--paper);
    padding: 0 0.15em 0.08em;
    border-radius: 999px;
    line-height: 0.92;
    transform: translateY(-0.03em);
  }
  /* inline 'avatars' cluster */
  h1.hero-h .avatars {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    transform: translateY(-0.08em);
    margin: 0 0.15em;
  }
  h1.hero-h .avatars span {
    width: 0.8em; height: 0.8em;
    border-radius: 50%;
    border: 3px solid var(--paper);
    margin-left: -0.22em;
    box-shadow: 0 0 0 1px var(--ink);
  }
  h1.hero-h .avatars span:first-child { margin-left: 0; background: var(--accent); }
  h1.hero-h .avatars span:nth-child(2) { background: var(--mint); }
  h1.hero-h .avatars span:nth-child(3) { background: var(--sky); }
  h1.hero-h .avatars span:nth-child(4) { background: var(--ink); }

  .hero-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    padding-top: 36px;
    border-top: 1px solid var(--ink);
  }
  .hero-grid p {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 52ch;
    text-wrap: pretty;
  }
  .hero-grid p i { font-family: var(--serif); font-style: italic; color: var(--accent); }
  .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
  .hero-actions .plain { padding: 14px 0; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
  .hero-actions .plain:hover { color: var(--accent); }

  /* ==== AWARDS / TRUST STRIP ==== */
  .awards {
    margin-top: 72px;
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
  }
  .awards .label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .awards .marks {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .awards .marks span {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    color: var(--ink);
    opacity: 0.75;
  }
  .awards .marks span b { font-family: var(--sans); font-style: normal; font-weight: 800; color: var(--accent); margin-right: 4px; }

  /* ==== APPROACH / ICON-FREE VALUE PROPS ==== */
  .values {
    padding: 120px 0 90px;
  }
  .sec-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink);
  }
  .sec-head .t {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 14px;
    font-weight: 500;
  }
  .sec-head h2 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(40px, 6.5vw, 96px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-wrap: balance;
    max-width: 22ch;
  }
  .sec-head h2 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .sec-head h2 u { text-decoration: none; background: linear-gradient(transparent 65%, var(--accent-soft) 65%); padding: 0 0.05em; }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  .val {
    padding: 36px 32px 40px 0;
    border-bottom: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: 14px;
    min-height: 280px;
  }
  .val:nth-child(3n) { border-right: none; padding-right: 0; }
  .val:not(:nth-child(3n+1)) { padding-left: 32px; }
  .val .nr {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .val .nr b { color: var(--accent); font-weight: 500; }
  .val h3 {
    margin: 0;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .val h3 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .val p {
    margin: 0;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 36ch;
  }

  /* ==== SERVICES CARDS ==== */
  .services { padding: 40px 0 100px; }
  .srv-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }
  .srv {
    background: var(--bg);
    border-radius: 24px;
    padding: 32px;
    min-height: 340px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 240ms cubic-bezier(.2,.8,.2,1), background 240ms;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .srv:hover { transform: translateY(-4px); }
  .srv .nr {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.7;
  }
  .srv h3 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(26px, 2.8vw, 38px);
    letter-spacing: -0.028em;
    line-height: 1.02;
    text-wrap: balance;
  }
  .srv h3 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .srv p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    opacity: 0.85;
    max-width: 38ch;
  }
  .srv .tags {
    margin-top: auto;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .srv .tags span {
    padding: 5px 11px;
    background: rgba(20,20,20,0.08);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .srv .go {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 240ms;
  }
  .srv:hover .go { transform: rotate(-45deg); }

  .srv.lg { grid-column: span 7; background: var(--ink); color: var(--paper); }
  .srv.lg .tags span { background: rgba(247,245,240,0.12); color: var(--paper); }
  .srv.lg .go { background: var(--accent); color: var(--paper); }
  .srv.lg h3 i { color: var(--accent-soft); }

  .srv.sm { grid-column: span 5; background: var(--accent); color: var(--paper); }
  .srv.sm .tags span { background: rgba(247,245,240,0.2); color: var(--paper); }
  .srv.sm .go { background: var(--paper); color: var(--accent); }
  .srv.sm h3 i { color: var(--ink); }

  .srv.third { grid-column: span 4; }
  .srv.third.mt { background: var(--mint); }
  .srv.third.sk { background: var(--sky); }
  .srv.third.pp { background: var(--paper); border: 1px solid var(--ink); }
  .srv.third .go { background: var(--ink); color: var(--paper); }

  /* visual motif — circle cluster on large tile */
  .orbit {
    position: absolute; right: -60px; bottom: -60px;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px dashed rgba(247,245,240,0.3);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .orbit::before {
    content: "";
    width: 240px; height: 240px;
    border-radius: 50%;
    border: 1px dashed rgba(247,245,240,0.22);
  }
  .orbit::after {
    content: "";
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 60px rgba(255,90,31,0.45);
  }

  /* ==== CASES ==== */
  .cases { padding: 120px 0 80px; }
  .case-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
  }
  .case {
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg);
    display: flex; flex-direction: column;
    transition: transform 240ms cubic-bezier(.2,.8,.2,1);
    position: relative;
  }
  .case:hover { transform: translateY(-4px); }
  .case .canvas {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .case .badges {
    position: absolute; top: 18px; left: 18px; z-index: 3;
    display: flex; gap: 6px;
  }
  .case .badges span {
    padding: 6px 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .case .badges span.hot { background: var(--accent); color: var(--paper); border-color: var(--accent); }
  .case .gobtn {
    position: absolute; top: 18px; right: 18px; z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--ink);
    transition: transform 240ms, background 240ms, color 240ms, border-color 240ms;
  }
  .case:hover .gobtn { transform: rotate(-45deg); background: var(--accent); color: var(--paper); border-color: var(--accent); }

  .case .body {
    padding: 28px 28px 32px;
    display: flex; flex-direction: column; gap: 10px;
    background: var(--paper);
  }
  .case .row1 {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .case h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .case h3 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .case .stat-row {
    display: flex;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px dashed var(--rule);
    margin-top: 10px;
  }
  .case .stat-row div {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .case .stat-row div b { display: block; font-family: var(--sans); font-style: normal; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 2px; text-transform: none; }

  .case.big { grid-column: span 7; }
  .case.med { grid-column: span 5; }
  .case.third { grid-column: span 4; }

  /* canvas fills */
  .f-orange { background: linear-gradient(135deg, #ffd4b8 0%, #ff8c4f 55%, #ff5a1f 100%); }
  .f-ink { background: linear-gradient(155deg, #141414 0%, #2a2a2a 45%, #ff5a1f 130%); color: var(--paper); }
  .f-mint { background: linear-gradient(135deg, #e5fff0 0%, #c9ffd9 55%, #7ed99a 100%); }
  .f-sky  { background: linear-gradient(135deg, #e4f0ff 0%, #c7e0ff 55%, #7fa9e8 100%); }
  .f-paper { background: var(--bg); color: var(--ink); }

  .huge-stat {
    font-weight: 800;
    font-size: clamp(66px, 9vw, 156px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--ink);
    text-align: center;
    padding: 40px;
    position: relative; z-index: 2;
  }
  .f-ink .huge-stat { color: var(--paper); }
  .huge-stat i {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 0.05em;
  }
  .huge-stat .sub {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 16px;
    font-style: normal;
    color: var(--ink-soft);
  }
  .f-ink .huge-stat .sub { color: rgba(247,245,240,0.75); }

  /* mobile mock in case */
  .phone-mock {
    width: 180px; height: 92%;
    max-height: 380px;
    background: var(--paper);
    border-radius: 28px;
    border: 3px solid var(--ink);
    box-shadow: 0 40px 60px -30px rgba(20,20,20,0.3);
    padding: 14px 12px;
    display: flex; flex-direction: column;
    gap: 10px;
    position: relative; z-index: 2;
    font-family: var(--sans);
    color: var(--ink);
  }
  .phone-mock::before {
    content: "";
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 5px;
    background: var(--ink);
    border-radius: 999px;
  }
  .phone-mock .pm-h { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; padding-top: 8px; }
  .phone-mock .pm-h span { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }
  .phone-mock .pm-card {
    padding: 10px;
    border-radius: 12px;
    background: var(--accent);
    color: var(--paper);
    font-size: 11px;
  }
  .phone-mock .pm-card b { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; display: block; margin-bottom: 2px; }
  .phone-mock .pm-card .l { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.1em; opacity: 0.85; text-transform: uppercase; }
  .phone-mock .pm-list { flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .phone-mock .pm-list div { padding: 8px 10px; background: var(--bg); border-radius: 10px; font-size: 11px; display: flex; justify-content: space-between; align-items: center; }
  .phone-mock .pm-list div span:last-child { font-family: var(--mono); font-size: 9px; color: var(--accent); font-weight: 500; }

  /* stat label stack */
  .label-stack {
    padding: 32px;
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    position: relative; z-index: 2;
  }
  .label-stack .k {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    align-self: flex-start;
  }
  .label-stack .big {
    font-weight: 800;
    font-size: clamp(52px, 7vw, 104px);
    line-height: 0.88;
    letter-spacing: -0.045em;
  }
  .label-stack .big i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .label-stack .d {
    font-size: 13px;
    max-width: 26ch;
    line-height: 1.5;
  }

  /* ==== TESTIMONIAL / BOOK ==== */
  .book {
    padding: 140px 0 120px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 40px 40px 0 0;
    margin: 80px clamp(-20px, -3vw, -48px) 0;
  }
  .book .container { padding: 0 clamp(40px, 5vw, 80px); }
  .book .inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .book .left h2 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(44px, 6.5vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-wrap: balance;
    max-width: 15ch;
  }
  .book .left h2 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-soft); }
  .book .left h2 u { text-decoration: none; background: linear-gradient(transparent 65%, var(--accent) 65%); padding: 0 0.05em; color: var(--paper); }
  .book .left .acts {
    margin-top: 40px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .book .left .btn { background: var(--accent); border-color: var(--accent); }
  .book .left .btn .arr { background: var(--paper); color: var(--accent); }
  .book .left .btn:hover { background: var(--paper); color: var(--accent); }
  .book .left .btn:hover .arr { background: var(--accent); color: var(--paper); }
  .book .left .ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border: 1px solid rgba(247,245,240,0.28);
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    transition: all 200ms;
  }
  .book .left .ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

  .book .right {
    background: var(--paper);
    color: var(--ink);
    border-radius: 28px;
    padding: 36px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .book .right blockquote {
    margin: 0;
    font-weight: 500;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.018em;
    text-wrap: balance;
  }
  .book .right blockquote i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .book .right .author {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px dashed var(--rule);
    align-items: center;
  }
  .book .right .author .av {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--ink));
    border: 1px solid var(--ink);
  }
  .book .right .author b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
  .book .right .author span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
  .book .right .kpi {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px dashed var(--rule);
  }
  .book .right .kpi div {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .book .right .kpi b { display: block; font-family: var(--sans); font-style: normal; font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 4px; text-transform: none; }

  /* ==== PROCESS ==== */
  .process { padding: 120px 0; background: var(--ink); color: var(--paper); }
  .process .sec-head { border-bottom: 1px solid rgba(247,245,240,0.2); }
  .process .sec-head .t { color: var(--accent-soft); }
  .process .sec-head h2 { color: var(--paper); }
  .process .sec-head h2 u { background: linear-gradient(transparent 65%, var(--accent) 65%); color: var(--paper); }

  .proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(247,245,240,0.18);
    border-radius: 24px;
    overflow: hidden;
  }
  .p-step {
    background: var(--ink);
    padding: 32px 28px 36px;
    min-height: 340px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .p-step.hot { background: var(--accent); color: var(--paper); }
  .p-step .flag {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
  }
  .p-step.hot .flag { opacity: 0.8; }
  .p-step .n {
    font-weight: 800;
    font-size: clamp(72px, 8vw, 128px);
    line-height: 0.88;
    letter-spacing: -0.05em;
  }
  .p-step .n i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .p-step.hot .n i { color: var(--paper); }
  .p-step h3 {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .p-step h3 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-soft); }
  .p-step.hot h3 i { color: var(--ink); }
  .p-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.8;
    max-width: 28ch;
  }
  .p-step .out {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(247,245,240,0.25);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .p-step.hot .out { border-top-color: rgba(20,20,20,0.28); }
  .p-step .out b { color: var(--accent); font-weight: 500; }
  .p-step.hot .out b { color: var(--ink); }

  /* ==== FAQ ==== */
  .faq { padding: 120px 0; }
  .faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 80px;
    align-items: start;
  }
  .faq-left h2 {
    margin: 0;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  .faq-left h2 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .faq-left p {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 40ch;
  }
  .faq-list {
    border-top: 1px solid var(--ink);
  }
  .faq-item {
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    cursor: pointer;
  }
  .faq-item h4 {
    margin: 0;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.015em;
    line-height: 1.3;
  }
  .faq-item h4 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .faq-item .plus {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: background 220ms, color 220ms, transform 220ms;
    flex-shrink: 0;
  }
  .faq-item:hover .plus { background: var(--accent); color: var(--paper); border-color: var(--accent); transform: rotate(90deg); }
  .faq-item.open .plus { background: var(--ink); color: var(--paper); transform: rotate(45deg); }
  .faq-item.open .answer { display: block; }
  .faq-item .answer {
    grid-column: 1 / -1;
    display: none;
    margin-top: 4px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 60ch;
    padding-top: 4px;
  }

  /* ==== CLOSER ==== */
  .closer {
    padding: 160px 0;
    background: var(--accent);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .closer::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(247,245,240,0.22), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(20,20,20,0.22), transparent 55%);
    pointer-events: none;
  }
  .closer .lbl {
    display: inline-flex;
    padding: 8px 18px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 500;
  }
  .closer h2 {
    margin: 0 auto;
    font-weight: 800;
    font-size: clamp(60px, 11vw, 200px);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-wrap: balance;
    max-width: 14ch;
    position: relative; z-index: 2;
  }
  .closer h2 i { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink); }
  .closer p {
    max-width: 52ch;
    margin: 36px auto 0;
    font-size: 19px;
    line-height: 1.5;
    position: relative; z-index: 2;
    color: rgba(247,245,240,0.92);
  }
  .closer .acts {
    margin-top: 48px;
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 2;
  }
  .closer .btn { background: var(--ink); border-color: var(--ink); color: var(--paper); }
  .closer .btn .arr { background: var(--accent); color: var(--paper); }
  .closer .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  .closer .btn:hover .arr { background: var(--ink); color: var(--paper); }
  .closer .btn.ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
  .closer .btn.ghost .arr { background: var(--paper); color: var(--accent); }
  .closer .btn.ghost:hover { background: var(--paper); color: var(--accent); }

  /* ==== FOOTER ==== */
  footer { background: var(--ink); color: var(--paper); padding: 80px 0 30px; }
  .ft-cols {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(247,245,240,0.14);
  }
  .ft-cols .brand { color: var(--paper); font-size: 20px; }
  .ft-cols p { margin: 16px 0 0; font-size: 15px; color: rgba(247,245,240,0.76); line-height: 1.55; max-width: 32ch; }
  .ft-col h4 {
    margin: 0 0 16px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
    font-weight: 500;
  }
  .ft-col ul { list-style: none; padding: 0; margin: 0; }
  .ft-col ul li { padding: 4px 0; font-size: 14.5px; color: rgba(247,245,240,0.78); }
  .ft-col ul li a:hover { color: var(--accent-soft); }

  .ft-word {
    padding: 48px 0 12px;
    text-align: center;
    font-weight: 800;
    font-size: clamp(100px, 20vw, 340px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(247,245,240,0.22);
  }
  .ft-word i { font-family: var(--serif); font-weight: 400; font-style: italic; -webkit-text-stroke: 1px var(--accent); color: transparent; }
  .ft-bottom {
    margin-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247,245,240,0.5);
  }

  /* ==== RESPONSIVE ==== */
  /* Tablet — 1100px: pull dense grids to 1-col or 2-col */
  @media (max-width: 1100px) {
    .nav-links { display: none; }
    .nav-inner { gap: 16px; }
    .hero { padding: 56px 0 32px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 28px; margin-top: 48px; }
    .hero-actions { justify-content: flex-start; }
    .awards { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .awards .marks { justify-content: center; gap: 22px; }
    .sec-head { grid-template-columns: 1fr; gap: 20px; }
    .sec-head h2 { max-width: 100%; }
    .values { padding: 80px 0 64px; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .val { border-right: 1px solid var(--rule); padding: 28px 24px 32px 0 !important; min-height: auto; }
    .val:nth-child(2n) { border-right: none; padding-right: 0 !important; padding-left: 24px !important; }
    .val:not(:nth-child(2n+1)) { padding-left: 24px !important; }
    .services { padding: 24px 0 80px; }
    .srv-grid { gap: 14px; }
    .srv.lg, .srv.sm { grid-column: span 12; }
    .srv.third { grid-column: span 6; }
    .srv { min-height: 280px; padding: 28px; }
    .cases { padding: 88px 0 56px; }
    .case-grid { gap: 16px; }
    .case.big, .case.med, .case.third { grid-column: span 12; }
    h1.hero-h { font-size: clamp(38px, 5.5vw, 60px); letter-spacing: -0.04em; }
    .book { padding: 96px 0 88px; margin-top: 64px; }
    .book .inner { grid-template-columns: 1fr; gap: 40px; }
    .book .left h2 { max-width: 100%; }
    .process { padding: 88px 0; }
    .proc-grid { grid-template-columns: 1fr 1fr; }
    .p-step { min-height: auto; padding: 28px 24px 32px; }
    .faq { padding: 88px 0; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .closer { padding: 120px 0; }
    .ft-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* Phone — 640px: fully stack, tighten type, pills wrap */
  @media (max-width: 640px) {
    html, body { font-size: 14.5px; }
    .container { padding: 0 18px; }
    .nav { border-bottom: 1px solid var(--rule); }
    .nav-inner { padding: 14px 0; }
    .brand { font-size: 16px; }
    .brand .dotlogo { width: 22px; height: 22px; }
    .brand .dotlogo::after { inset: 5px; }
    .btn { padding: 11px 16px; font-size: 13px; }
    .btn .arr { width: 18px; height: 18px; font-size: 10px; }

    .hero { padding: 40px 0 24px; }
    .hero-tag { font-size: 9px; padding: 4px 10px 4px 7px; gap: 6px; margin-bottom: 20px; }
    .hero-tag .dot { width: 4px; height: 4px; }
    h1.hero-h {
      font-size: clamp(38px, 12vw, 56px);
      line-height: 0.95;
      letter-spacing: -0.035em;
    }
    h1.hero-h .mark { padding: 0 0.2em 0.05em; border-radius: 999px; }
    h1.hero-h .avatars { display: inline-flex; transform: translateY(-0.1em); }
    h1.hero-h .avatars span { border-width: 2px; width: 0.7em; height: 0.7em; }

    .hero-grid { margin-top: 36px; gap: 22px; padding-top: 22px; }
    .hero-grid p { font-size: 16px; }
    .hero-actions { width: 100%; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .awards { padding: 18px 0; margin-top: 48px; }
    .awards .marks { gap: 14px 18px; }
    .awards .marks span { font-size: 15px; }

    /* Section headings */
    .sec-head { margin-bottom: 32px; padding-bottom: 20px; gap: 14px; }
    .sec-head h2 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.025em; }
    .sec-head .t { font-size: 10.5px; padding-bottom: 0; }

    /* Values — one column */
    .values { padding: 64px 0 48px; }
    .value-grid { grid-template-columns: 1fr; }
    .val { border-right: none !important; padding: 24px 0 !important; min-height: auto; }
    .val h3 { font-size: 22px; }
    .val p { font-size: 14.5px; max-width: 100%; }

    /* Services — all full width, compact */
    .services { padding: 16px 0 56px; }
    .srv-grid { gap: 12px; }
    .srv.lg, .srv.sm, .srv.third { grid-column: span 12; }
    .srv { padding: 24px; min-height: 260px; border-radius: 18px; }
    .srv h3 { font-size: 24px; }
    .srv p { font-size: 14px; }
    .srv .go { width: 38px; height: 38px; top: 18px; right: 18px; }
    .srv .tags span { font-size: 10px; padding: 4px 9px; }
    .orbit { width: 200px; height: 200px; right: -40px; bottom: -40px; }
    .orbit::before { width: 140px; height: 140px; }
    .orbit::after { width: 70px; height: 70px; }

    /* Cases */
    .cases { padding: 64px 0 40px; }
    .case-grid { gap: 14px; }
    .case { border-radius: 20px; }
    .case .body { padding: 22px 22px 26px; }
    .case h3 { font-size: 19px; }
    .case .badges { top: 14px; left: 14px; }
    .case .badges span { font-size: 9.5px; padding: 5px 10px; }
    .case .gobtn { top: 14px; right: 14px; width: 40px; height: 40px; }
    .case .stat-row { flex-wrap: wrap; gap: 14px 20px; }
    .case .stat-row div b { font-size: 20px; }
    .huge-stat { font-size: clamp(56px, 18vw, 88px); padding: 28px 20px; }
    .huge-stat .sub { font-size: 10px; margin-top: 12px; }
    .phone-mock { width: 150px; max-height: 300px; padding: 12px 10px; border-radius: 22px; }
    .phone-mock .pm-h { font-size: 12px; }
    .phone-mock .pm-card b { font-size: 16px; }
    .label-stack { padding: 22px; }
    .label-stack .big { font-size: clamp(44px, 13vw, 66px); }
    .label-stack .d { font-size: 12px; max-width: 22ch; }

    /* Book / testimonial */
    .book { padding: 64px 0 56px; margin: 48px -18px 0; border-radius: 24px 24px 0 0; }
    .book .container { padding: 0 22px; }
    .book .inner { gap: 32px; }
    .book .left h2 { font-size: clamp(34px, 10vw, 52px); }
    .book .left .acts { margin-top: 24px; gap: 10px; }
    .book .left .btn,
    .book .left .ghost { width: 100%; justify-content: center; }
    .book .right { padding: 26px; border-radius: 20px; }
    .book .right blockquote { font-size: clamp(18px, 5.2vw, 22px); }
    .book .right .kpi { grid-template-columns: 1fr; gap: 10px; }
    .book .right .kpi b { font-size: 24px; }
    .book .right .author .av { width: 44px; height: 44px; }

    /* Process — 1 column */
    .process { padding: 64px 0; }
    .proc-grid { grid-template-columns: 1fr; border-radius: 18px; }
    .p-step { padding: 26px 22px 30px; min-height: auto; }
    .p-step .n { font-size: clamp(56px, 18vw, 92px); }
    .p-step h3 { font-size: 20px; }
    .p-step p { font-size: 13.5px; max-width: 100%; }

    /* FAQ */
    .faq { padding: 64px 0; }
    .faq-grid { gap: 28px; }
    .faq-left h2 { font-size: clamp(30px, 9vw, 44px); }
    .faq-left p { font-size: 14.5px; margin-top: 18px; }
    .faq-item { padding: 18px 0; gap: 14px; }
    .faq-item h4 { font-size: 16px; }
    .faq-item .plus { width: 32px; height: 32px; font-size: 14px; }

    /* Closer */
    .closer { padding: 88px 0 96px; }
    .closer .lbl { margin-bottom: 28px; font-size: 10.5px; }
    .closer h2 { font-size: clamp(42px, 14vw, 72px); }
    .closer p { font-size: 16px; margin-top: 26px; }
    .closer .acts { margin-top: 32px; flex-direction: column; gap: 10px; }
    .closer .acts .btn { width: 100%; justify-content: center; }

    /* Footer */
    footer { padding: 56px 0 28px; }
    .ft-cols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .ft-cols p { max-width: 100%; }
    .ft-word { padding: 28px 0 8px; font-size: clamp(72px, 24vw, 120px); }
    .ft-bottom { font-size: 10px; gap: 8px; flex-direction: column; align-items: flex-start; }
  }

  /* Very narrow — 380px: prevent horizontal scroll on oversized hero */
  @media (max-width: 380px) {
    h1.hero-h { font-size: clamp(32px, 11vw, 44px); }
    .brand sup { font-size: 16px; }
    .closer h2 { font-size: clamp(36px, 13vw, 56px); }
    .book .left h2 { font-size: clamp(28px, 9vw, 40px); }
  }

  /* ============================================================
   * Overflow guards — prevent the oversized decorative footer
   * word (.ft-word) or any wide element from pushing horizontal
   * scroll on mobile / narrow viewports.
   * ============================================================ */
  html, body { overflow-x: clip; max-width: 100%; }
  footer .container { overflow: hidden; }
  .ft-word {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
  }

  /* ============================================================
   * Book section with CF7 form — single-column layout.
   * Heading on top, form underneath, both centered to a readable
   * max-width. Testimonial column removed.
   * ============================================================ */
  .book.has-form .inner {
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
  }
  .book.has-form .left { text-align: center; }
  .book.has-form .left h2 {
    font-size: clamp(36px, 4.4vw, 64px);
    max-width: 22ch;
    margin: 0 auto;
  }
  .book-form {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 40px;
    border-top: 1px dashed rgba(247,245,240,0.18);
    width: 100%;
  }
  @media (max-width: 960px) {
    .book.has-form .inner { gap: 32px; }
    .book-form { margin-top: 0; padding-top: 28px; }
  }