  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg-base: #070d1a;
    --bg-surface: #0c1426;
    --bg-card: #111e35;
    --bg-card-hover: #162540;
    --accent: #2563eb;
    --accent-bright: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-glow: rgba(37,99,235,0.25);
    --text-primary: #f0f4ff;
    --text-secondary: #7b93b8;
    --text-muted: #4a617e;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(37,99,235,0.4);
    --nav-h: 74px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: 0 0
}

::-webkit-scrollbar-thumb {
    background: #17274d;
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bright)
}
  /* ═══════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════ */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid transparent;
  }

  .navbar.scrolled {
    background: rgba(7, 13, 26, 0.7);
    transition: all 0.5s ease-in-out;
    backdrop-filter: blur(16px);
    height: 64px;
    -webkit-backdrop-filter: blur(16px);
    border-color: var(--border);
  }

  .logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(120deg, #f0f4ff 30%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: rgb(240,244,255);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1.5px;
    background: var(--accent-cyan);
    transition: right 0.25s ease;
  }

  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover { background: var(--accent-bright) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* ═══════════════════════════════════════
     HERO / CAROUSEL
  ═══════════════════════════════════════ */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  .carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 30%);
  }

  /* Fallback slides with gradient backgrounds */
  .slide-1 { background-image: linear-gradient(135deg, #0c1426 0%, #0f2045 40%, #1a3a6e 100%); }
  .slide-2 { background-image: linear-gradient(135deg, #060d1c 0%, #0a2240 40%, #0e3a6a 100%); }
  .slide-3 { background-image: linear-gradient(135deg, #08111e 0%, #0d1f38 40%, #1a3558 100%); }
  .slide-4 { background-image: linear-gradient(135deg, #050c18 0%, #091c34 40%, #122c50 100%); }

  /* Try user images */
  .slide-1 { background-image: url('../img/b-1.jpg'), linear-gradient(135deg, #0c1426 0%, #1a3a6e 100%); }
  .slide-2 { background-image: url('../img/b-2.jpg'), linear-gradient(135deg, #060d1c 0%, #0e3a6a 100%); }
  .slide-3 { background-image: url('../img/b-3.jpg'), linear-gradient(135deg, #08111e 0%, #1a3558 100%); }
  .slide-4 { background-image: url('../img/b-4.jpg'), linear-gradient(135deg, #050c18 0%, #122c50 100%); }

  .hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    padding: 0 8vw 100px;
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.18);
    border: 1px solid rgba(37,99,235,0.35);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s forwards;
  }

  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-title .accent { color: var(--accent-cyan); }

  .hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(240,244,255,0.65);
    max-width: 540px;
    font-weight: 300;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    pointer-events: all;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s forwards;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none; cursor: pointer;
  }

  .btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.4);
  }

  .btn-outline {
    background: transparent;
    color: rgba(240,244,255,0.8);
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
  }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
  }

  /* Carousel arrows */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    user-select: none;
    -webkit-user-select: none;
  }

  .carousel-arrow:hover { background: rgba(37,99,235,0.4); border-color: var(--accent); }
  .carousel-arrow.prev { left: 4vw; }
  .carousel-arrow.next { right: 4vw; }

  /* Dots */
  .carousel-dots {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex; gap: 8px;
  }

  .dot-item {
    width: 24px; height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
  }

  .dot-item.active {
    background: var(--accent-cyan);
    width: 40px;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 44px; right: 8vw;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(240,244,255,0.4);
    font-size: 12px;
    letter-spacing: 1px;
  }

  .scroll-line {
    width: 40px; height: 1px;
    background: rgba(240,244,255,0.2);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 100%; height: 100%;
    background: var(--accent-cyan);
    animation: scanLine 2s infinite;
  }

  /* ═══════════════════════════════════════
     SECTION SHARED
  ═══════════════════════════════════════ */
  section { padding: 100px 8vw; }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.8;
  }

  /* ═══════════════════════════════════════
     STATS BAR
  ═══════════════════════════════════════ */
  .stats-bar {
    padding: 48px 8vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(120deg, #fff 40%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
  }

  /* ═══════════════════════════════════════
     SERVICES
  ═══════════════════════════════════════ */
  .services-section {
    background: var(--bg-surface);
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    margin-bottom: 60px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }

  .service-card {
    background: var(--bg-card);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover { background: var(--bg-card-hover); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 24px;
    transition: background 0.3s, border-color 0.3s;
  }

  .service-card:hover .service-icon {
    background: rgba(37,99,235,0.2);
    border-color: var(--accent);
  }

  .service-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }

  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-list li {
    font-size: 13.5px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
  }

  .service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 5px; height: 1px;
    background: var(--accent-cyan);
  }

  .service-img-strip {
    margin-top: 28px;
    border-radius: 10px;
    overflow: hidden;
    height: 160px;
  }

  .service-img-strip img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: filter 0.4s, transform 0.5s;
  }

  .service-card:hover .service-img-strip img {
    filter: brightness(0.85) saturate(1);
    transform: scale(1.04);
  }

  /* ═══════════════════════════════════════
     PROCESS
  ═══════════════════════════════════════ */
  .process-section { padding: 100px 8vw; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 33px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-cyan) 100%);
    z-index: 0;
  }

  .process-step {
    text-align: center;
    padding: 5px 20px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-cyan);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 24px rgba(37,99,235,0.25);
  }

  .step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════ */
  .reviews-section {
    background: var(--bg-surface);
    overflow: hidden;
    padding: 80px 0;
  }

  .reviews-header {
    padding: 0 8vw;
    margin-bottom: 52px;
  }

  .ticker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ticker-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
  }

  .ticker-row.reverse { animation-direction: reverse; }

  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .ticker-wrapper:hover .ticker-row { animation-play-state: paused; }

  .review-card {
    flex: 0 0 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
  }

.review-card:hover {
    border: 1px solid rgb(77 159 62 / 70%);
}

  .review-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .review-author {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
  }

  .review-author span {
    color: var(--accent-cyan);
    margin-right: 6px;
  }

  /* ═══════════════════════════════════════
     PARTNERS
  ═══════════════════════════════════════ */
  .partners-section { padding: 80px 8vw; }

  .partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 52px;
  }

  .partner-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    min-width: 160px;
  }

  .partner-item:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
  }

  .partner-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.5) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
  }

  .partner-item:hover img { opacity: 1; filter: brightness(1) invert(0); }

  /* Fallback partner labels */
  .partner-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.3s;
  }

  .partner-item:hover .partner-label { color: var(--text-primary); }

  /* ═══════════════════════════════════════
     NEWS
  ═══════════════════════════════════════ */
  .news-section { background: var(--bg-surface); padding: 100px 8vw; }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 52px;
  }

  .news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    text-decoration: none;
    display: block;
    transition: border-color 0.3s, background 0.3s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }

  .news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .news-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
  }

  .news-card:hover::before { opacity: 1; }

  .news-date {
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .news-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.4;
  }

  .news-excerpt {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.75;
  }

  .news-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 20px;
    transition: gap 0.2s;
  }

  .news-card:hover .news-arrow { gap: 10px; }

  /* ═══════════════════════════════════════
     ABOUT / CTA BANNER
  ═══════════════════════════════════════ */
  .cta-section {
    padding: 100px 8vw;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .cta-text .section-title { margin-bottom: 20px; }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-icon {
    width: 40px; height: 40px;
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-detail {
    flex: 1;
  }

  .contact-detail .label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .contact-detail .value {
    font-size: 14px;
    color: var(--text-primary);
  }

  .wx-card {
    background: var(--bg-card);
    position: relative;
    padding: 28px;
    text-align: center;
  }

.wx-card::before,
.wx-card::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid;
  border-image: linear-gradient(45deg, #ffd700, #ff1493) 1;
  animation: clippath 3s infinite linear;
  filter: drop-shadow(0 0 3px currentColor);
}
.wx-card::after {
  animation: clippath 3s infinite -1.5s linear;
}

@keyframes clippath {
  0%,
  100% {
    clip-path: inset(0 0 96% 0);
    filter: hue-rotate(0deg);
  }

  25% {
    clip-path: inset(0 96% 0 0);
  }
  50% {
    clip-path: inset(96% 0 0 0);
    filter: hue-rotate(360deg);
  }
  75% {
    clip-path: inset(0 0 0 96%);
  }
}


  .wx-card img {
    width: 140px; height: 140px;
    object-fit: cover;
    margin-bottom: 12px;
    border: 1px solid var(--border);
  }

  .wx-caption {
    font-size: 13px;
    color: var(--text-secondary);
  }

  /* ═══════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════ */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
  }

  .footer-copy {
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--text-primary); }

  /* ═══════════════════════════════════════
     GRID LINE BG DECORATION
  ═══════════════════════════════════════ */
  .grid-bg {
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  /* ═══════════════════════════════════════
     ANIMATIONS
  ═══════════════════════════════════════ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
  }

  @keyframes scanLine {
    0%   { left: -100%; }
    100% { left: 100%; }
  }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .cta-inner { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    section { padding: 72px 6vw; }
    .process-steps { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
  }