*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0b1628;
      --deep:   #0d1c35;
      --panel:  #101d33;
      --steel:  #192b42;
      --accent: #2979ff;
      --gold:   #c8a96e;
      --gold2:  #e8d5a3;
      --muted:  #7a94b0;
      --text:   #c4d3e8;
      --white:  #edf1f8;
      --line:   rgba(200,169,110,0.15);
      --line2:  rgba(255,255,255,0.06);
      --glow:   rgba(200,169,110,0.07);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--text);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 72px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 52px;
      background: rgba(11,22,40,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
    }
    .nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo { width: 41px;
      height: 41px;
      border: 1px solid rgba(200,169,110,0.18);
      border-radius: 3px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.947);
    }
    .nav-logo img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      display: block;
    }
    .nav-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: .03em; }
    .nav-name span { color: var(--gold); }
    .nav-right { display: flex; align-items: center; gap: 28px; }
    .nav-back { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
    .nav-back:hover { color: var(--gold); }
    .nav-back svg { transition: transform .2s; }
    .nav-back:hover svg { transform: translateX(-3px); }
    .nav-cta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,169,110,.4); padding: 7px 20px; border-radius: 3px; text-decoration: none; transition: background .2s, color .2s; }
    .nav-cta:hover { background: var(--gold); color: var(--navy); }

    /* ══════════════════════════════════
       HERO
    ══════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 52px 80px;
      position: relative;
      overflow: hidden;

      background-image:
        linear-gradient(
        to bottom,
        rgba(6, 12, 28, 0.72) 0%,
        rgba(6, 12, 28, 0.55) 40%,
        rgba(6, 12, 28, 0.82) 100%
       ) ,
      url('/assets/images/commodities/real services.jpg');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
   }

    /* Animated grid background */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridDrift 20s linear infinite;
    }

    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 80px 80px; }
    }

    /* Radial glow centre */
    .hero-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 55% at 65% 40%, rgba(41,121,255,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(200,169,110,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Large decorative numeral */
    .hero-bg-numeral {
      position: absolute;
      right: 4%;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'DM Serif Display', serif;
      font-size: clamp(220px, 30vw, 420px);
      color: rgba(200,169,110,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -.05em;
    }

    .hero-content { position: relative; z-index: 2; max-width: 900px; }

    .hero-eyebrow {
      display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
      opacity: 0; animation: fadeUp .7s .15s ease forwards;
    }
    .hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
    .hero-eyebrow span { font-size: 10.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }

    .hero-h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(52px, 8vw, 110px);
      font-weight: 400;
      color: var(--white);
      line-height: 0.92;
      letter-spacing: -.03em;
      margin-bottom: 36px;
      opacity: 0; animation: fadeUp .9s .28s ease forwards;
    }

    .hero-h1 em { font-style: italic; color: var(--gold); display: block; }

    .hero-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      opacity: 0; animation: fadeUp .8s .5s ease forwards;
    }

    .hero-desc {
      font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.85;
    }

    .hero-count {
      flex-shrink: 0;
      text-align: right;
    }

    .hero-count-num {
      font-family: 'DM Serif Display', serif;
      font-size: 64px; font-weight: 400;
      color: transparent;
      -webkit-text-stroke: 1px rgba(200,169,110,0.4);
      line-height: 1;
    }

    .hero-count-label {
      font-size: 10px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--muted);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 36px; right: 52px;
      display: flex; align-items: center; gap: 10px;
      font-size: 10px; letter-spacing: .18em;
      text-transform: uppercase; color: var(--muted);
      opacity: 0; animation: fadeUp .7s .9s ease forwards;
    }

    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.1); }
    }

    /* ══════════════════════════════════
       MARQUEE
    ══════════════════════════════════ */
    .marquee-strip {
      border-top: 1px solid var(--line2);
      border-bottom: 1px solid var(--line2);
      background: var(--panel);
      overflow: hidden;
      padding: 13px 0;
    }

    .marquee-track {
      display: flex;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      display: inline-flex; align-items: center; gap: 18px;
      padding: 0 36px;
      font-size: 10.5px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--muted);
      border-right: 1px solid var(--line2);
      flex-shrink: 0;
    }

    .marquee-item .dot { color: var(--gold); opacity: .7; font-size: 8px; }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════
       SERVICE INDEX — ACCORDION STYLE
    ══════════════════════════════════ */
    .services-index {
      border-bottom: 1px solid var(--line2);
    }

    .service-row {
      display: grid;
      grid-template-columns: 80px 1fr 200px;
      align-items: center;
      gap: 0;
      border-top: 1px solid var(--line2);
      cursor: pointer;
      transition: background .3s;
      position: relative;
      overflow: hidden;
    }

    /* Gold sweep on hover */
    .service-row::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 0;
      background: linear-gradient(to right, rgba(200,169,110,0.06), transparent);
      transition: width .5s ease;
    }

    .service-row:hover::before { width: 100%; }

    .service-row:hover { background: rgba(255,255,255,0.015); }

    .service-row-num {
      padding: 0 0 0 52px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px; letter-spacing: .18em;
      color: var(--gold); opacity: .45;
      align-self: stretch;
      display: flex; align-items: center;
      border-right: 1px solid var(--line2);
    }

    .service-row-main {
      padding: 40px 48px;
      position: relative; z-index: 1;
    }

    .service-row-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -.02em;
      margin-bottom: 0;
      transition: color .3s;
    }

    .service-row:hover .service-row-title { color: var(--gold2); }

    .service-row-sub {
      font-size: 13px; color: var(--muted);
      letter-spacing: .04em; margin-top: 6px;
      font-weight: 300;
    }

    .service-row-tag {
      padding: 0 48px 0 0;
      text-align: right;
      position: relative; z-index: 1;
    }

    .tag-pill {
      display: inline-block;
      font-size: 9.5px; letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(200,169,110,.2);
      padding: 4px 12px;
      transition: border-color .3s, background .3s;
    }

    .service-row:hover .tag-pill {
      border-color: rgba(200,169,110,.5);
      background: rgba(200,169,110,.06);
    }

    .service-row-arrow {
      position: absolute; right: 52px; top: 50%;
      transform: translateY(-50%) translateX(-8px);
      font-size: 18px; color: var(--gold); opacity: 0;
      transition: opacity .3s, transform .3s;
    }

    .service-row:hover .service-row-arrow {
      opacity: 1; transform: translateY(-50%) translateX(0);
    }

    /* ══════════════════════════════════
       SERVICE DETAIL CARDS
    ══════════════════════════════════ */
    .service-detail {
      padding: 0 52px;
      max-width: 100%;
    }

    /* ── SERVICE 01: COMMODITY TRADING ── */
    .s01 {
      background: var(--navy);
      border-bottom: 1px solid var(--line2);
      padding: 80px 52px;
    }

    .s01-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--line2);
      border: 1px solid var(--line2);
      margin-top: 52px;
    }

    .s01-hero-card {
      grid-column: span 2;
      background: var(--panel);
      padding: 0;
      overflow: hidden;
      position: relative;
      height: 320px;
      display: flex; align-items: flex-end;
    }

    .s01-hero-img {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1614028674026-a65e31bfd27c?w=1400&q=80') center/cover no-repeat;
      filter: brightness(.3) saturate(.6);
      transform: scale(1.02);
      transition: transform 8s ease;
    }

    .s01-hero-card:hover .s01-hero-img { transform: scale(1); }

    .s01-hero-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
      z-index: 1;
    }

    .s01-hero-text {
      position: relative; z-index: 2;
      padding: 40px 44px;
    }

    .s01-hero-text h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 32px; color: var(--white);
      margin-bottom: 8px; letter-spacing: -.01em;
    }

    .s01-hero-text p { font-size: 14px; color: var(--muted); max-width: 600px; }

    .s01-cell {
      background: var(--panel);
      padding: 32px 32px;
      transition: background .25s;
    }

    .s01-cell:hover { background: var(--steel); }

    .s01-cell-label {
      font-size: 9.5px; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold);
      opacity: .7; margin-bottom: 10px;
    }

    .s01-cell-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px; font-weight: 500;
      color: var(--white); margin-bottom: 8px;
    }

    .s01-cell-body { font-size: 13px; color: var(--muted); line-height: 1.75; }

    /* ── SERVICE 02: IT SERVICES ── */
    .s02 {
      background: var(--deep);
      border-bottom: 1px solid var(--line2);
      padding: 80px 52px;
    }

    .s02-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 52px;
    }

    .s02-left { position: sticky; top: 100px; }

    .s02-img {
      width: 100%;
      aspect-ratio: 4/5;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--line2);
    }

    .s02-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.45) saturate(.6);
      transition: transform 6s ease, filter .4s;
    }

    .s02-img:hover img { transform: scale(1.04); filter: brightness(.55) saturate(.8); }

    .s02-img-label {
      position: absolute; bottom: 16px; left: 20px;
      font-size: 9.5px; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(200,169,110,.55);
    }

    .s02-right { display: flex; flex-direction: column; gap: 0; }

    .s02-feature {
      padding: 28px 0;
      border-bottom: 1px solid var(--line2);
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 20px;
      align-items: start;
      transition: padding-left .25s;
    }

    .s02-feature:first-child { border-top: 1px solid var(--line2); }
    .s02-feature:hover { padding-left: 10px; }

    .s02-feature-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px; letter-spacing: .14em;
      color: var(--gold); opacity: .4;
      padding-top: 3px;
    }

    .s02-feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px; font-weight: 500;
      color: var(--white); margin-bottom: 6px;
    }

    .s02-feature-body { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* ── SERVICE 03: LOGISTICS ── */
    .s03 {
      background: var(--navy);
      border-bottom: 1px solid var(--line2);
      padding: 80px 52px;
      position: relative;
      overflow: hidden;
    }

    /* Big background text */
    .s03-bg-text {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'DM Serif Display', serif;
      font-size: clamp(140px, 20vw, 280px);
      color: rgba(255,255,255,0.02);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      letter-spacing: -.04em;
    }

    .s03-header {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 60px;
      align-items: start;
      margin-bottom: 60px;
    }

    .s03-desc { font-size: 15px; color: var(--muted); line-height: 1.85; }

    /* Process steps — horizontal timeline */
    .s03-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--line2);
      position: relative; z-index: 1;
    }

    .s03-step {
      padding: 36px 28px;
      border-right: 1px solid var(--line2);
      position: relative;
      transition: background .3s;
    }

    .s03-step:last-child { border-right: none; }
    .s03-step:hover { background: rgba(200,169,110,0.04); }

    /* Connector line */
    .s03-step::after {
      content: '→';
      position: absolute;
      right: -14px; top: 36px;
      color: var(--gold); opacity: .3;
      font-size: 16px;
      z-index: 2;
    }

    .s03-step:last-child::after { display: none; }

    .s03-step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 40px; font-weight: 400;
      color: transparent;
      -webkit-text-stroke: 1px rgba(200,169,110,.25);
      line-height: 1; margin-bottom: 18px;
    }

    .s03-step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px; font-weight: 500;
      color: var(--white); margin-bottom: 8px;
    }

    .s03-step-body { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

    /* Logistics image strip */
    .s03-img-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1px;
      background: var(--line2);
      border: 1px solid var(--line2);
      margin-top: 1px;
      height: 220px;
    }

    .s03-img-cell {
      overflow: hidden;
      position: relative;
    }

    .s03-img-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.38) saturate(.5);
      transition: transform 5s ease, filter .4s;
    }

    .s03-img-cell:hover img { transform: scale(1.06); filter: brightness(.55) saturate(.7); }

    .s03-img-cell-label {
      position: absolute; bottom: 12px; left: 16px;
      font-size: 9px; letter-spacing: .16em;
      text-transform: uppercase; color: rgba(200,169,110,.5);
    }

    /* ══════════════════════════════════
       WHY BLUEKEY — STATS BAND
    ══════════════════════════════════ */
    .why-band {
      background: var(--panel);
      border-top: 1px solid var(--line2);
      border-bottom: 1px solid var(--line2);
      padding: 72px 52px;
    }

    .why-inner {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1280px; margin: 0 auto;
    }

    .why-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(28px, 3vw, 40px);
      color: var(--white); line-height: 1.15;
      letter-spacing: -.01em;
    }

    .why-heading em { font-style: italic; color: var(--gold); }

    .why-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--line2);
    }

    .why-stat {
      padding: 28px 24px;
      border-right: 1px solid var(--line2);
      text-align: center;
      transition: background .25s;
    }

    .why-stat:last-child { border-right: none; }
    .why-stat:hover { background: rgba(200,169,110,.04); }

    .why-stat-val {
      font-family: 'DM Serif Display', serif;
      font-size: 36px; color: var(--white); line-height: 1;
      margin-bottom: 6px;
    }

    .why-stat-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

    /* ══════════════════════════════════
       PROCESS — HOW WE WORK
    ══════════════════════════════════ */
    .process-section {
      padding: 100px 52px;
      background: var(--deep);
      border-bottom: 1px solid var(--line2);
    }

    .process-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 60px;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border: 1px solid var(--line2);
    }

    .process-step {
      padding: 36px 28px 36px;
      border-right: 1px solid var(--line2);
      position: relative;
      transition: background .3s;
    }

    .process-step:last-child { border-right: none; }
    .process-step:hover { background: rgba(255,255,255,.02); }

    .process-step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 56px; color: transparent;
      -webkit-text-stroke: 1px rgba(200,169,110,.18);
      line-height: 1; margin-bottom: 20px;
      letter-spacing: -.03em;
    }

    .process-step-icon {
      width: 32px; height: 32px;
      border: 1px solid var(--line);
      display: grid; place-items: center;
      margin-bottom: 14px;
      transition: border-color .3s;
    }

    .process-step:hover .process-step-icon { border-color: rgba(200,169,110,.4); }

    .process-step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px; font-weight: 500;
      color: var(--white); margin-bottom: 8px;
    }

    .process-step-body { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

    /* ══════════════════════════════════
       CLOSING CTA
    ══════════════════════════════════ */
    .closing {
      padding: 100px 52px;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .closing-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(41,121,255,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .closing-inner {
      position: relative; z-index: 1;
      text-align: center;
      max-width: 700px; margin: 0 auto;
    }

    .closing-eyebrow {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin-bottom: 28px;
    }
    .closing-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
    .closing-eyebrow span { font-size: 10.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }

    .closing h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 400; color: var(--white);
      line-height: 1.05; letter-spacing: -.02em;
      margin-bottom: 20px;
    }

    .closing h2 em { font-style: italic; color: var(--gold); }

    .closing p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 44px; }

    .closing-actions { display: flex; align-items: center; gap: 16px; justify-content: center; }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none; background: var(--gold); color: var(--navy);
      font-size: 11.5px; font-weight: 500; letter-spacing: .16em;
      text-transform: uppercase; padding: 14px 36px; border-radius: 2px;
      transition: background .25s, transform .2s;
    }
    .btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none; border: 1px solid rgba(200,169,110,.3);
      color: var(--gold); font-size: 11.5px; letter-spacing: .16em;
      text-transform: uppercase; padding: 14px 36px; border-radius: 2px;
      transition: background .25s, color .25s;
    }
    .btn-ghost:hover { background: var(--gold); color: var(--navy); }

    /* ── FOOTER ── */
    footer {
      background: var(--deep);
      border-top: 1px solid var(--line2);
      padding: 26px 52px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: .04em; }
    .footer-brand span { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--steel); }
    .footer-links { display: flex; gap: 22px; }
    .footer-links a { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--muted); }

    /* ── SHARED ── */
    .section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
    .section-eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
    .section-eyebrow span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

    .section-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 400; color: var(--white);
      line-height: 1.08; letter-spacing: -.01em;
    }
    .section-heading em { font-style: italic; color: var(--gold); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.vis { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .process-steps { grid-template-columns: repeat(3, 1fr); }
      .process-step:nth-child(3) { border-right: none; }
      .why-stats { grid-template-columns: repeat(2, 1fr); }
      .why-stat:nth-child(2) { border-right: none; }
      .why-stat:nth-child(3) { border-top: 1px solid var(--line2); border-right: 1px solid var(--line2); }
      .why-stat:nth-child(4) { border-top: 1px solid var(--line2); }
    }

    @media (max-width: 1024px) {
      nav { padding: 0 24px; }
      .hero { padding: 0 28px 72px; }
      .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
      .s01, .s02, .s03, .why-band, .process-section, .closing { padding-left: 28px; padding-right: 28px; }
      .s01-layout { grid-template-columns: 1fr; }
      .s01-hero-card { grid-column: span 1; }
      .s02-layout { grid-template-columns: 1fr; }
      .s02-left { position: static; }
      .s03-header { grid-template-columns: 1fr; gap: 24px; }
      .s03-timeline { grid-template-columns: 1fr 1fr; }
      .s03-step:nth-child(2) { border-right: none; }
      .s03-step:nth-child(1)::after, .s03-step:nth-child(3)::after { display: block; }
      .s03-step:nth-child(2)::after, .s03-step:nth-child(4)::after { display: none; }
      .s03-img-strip { grid-template-columns: 1fr 1fr; height: auto; }
      .s03-img-cell { height: 180px; }
      .s03-img-cell:last-child { display: none; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .process-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-step:nth-child(2) { border-right: none; }
      .service-row { grid-template-columns: 60px 1fr; }
      .service-row-tag { display: none; }
      .service-row-num { padding-left: 28px; }
      .service-row-main { padding: 32px 28px; }
      footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
    }

    @media (max-width: 640px) {
      .s03-timeline { grid-template-columns: 1fr; }
      .s03-step { border-right: none; border-bottom: 1px solid var(--line2); }
      .s03-step::after { display: none; }
      .process-steps { grid-template-columns: 1fr; }
      .process-step { border-right: none; border-bottom: 1px solid var(--line2); }
      .why-stats { grid-template-columns: 1fr 1fr; }
      .closing-actions { flex-direction: column; }
    }
