  :root {
    --charcoal: #111827;
    --slate: #1e293b;
    --warm-gray: #94a3b8;
    --stone: #cbd5e1;
    --off-white: #f1f5f9;
    --deep: #0a0f1a;
    --gold: #d4a44a;
    --gold-bright: #f0c55e;
    --teal: #2dd4bf;
    --teal-mid: #14b8a6;
    --teal-deep: #0d9488;
    --blue: #60a5fa;
    --blue-deep: #3b82f6;
    --indigo: #818cf8;
    --rose: #fb7185;
    --amber: #fbbf24;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--deep);
    color: var(--off-white);
    overflow-x: hidden;
  }

  /* noise overlay removed — was causing mobile safe area bleed at z-index 9999 */

  /* Nav */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
  }

  nav.scrolled {
    background: rgba(10, 15, 26, 0.88);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(45, 212, 191, 0.08);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-logo-icon {
    display: grid;
    grid-template-columns: repeat(2, 10px);
    gap: 3px;
  }

  .nav-logo-icon span {
    width: 10px;
    height: 10px;
    transition: background 0.3s;
  }

  .nav-logo-icon span:nth-child(1) { background: var(--teal); }
  .nav-logo-icon span:nth-child(2) { background: var(--blue); }
  .nav-logo-icon span:nth-child(3) { background: var(--gold); }
  .nav-logo-icon span:nth-child(4) { background: var(--stone); }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--off-white);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--off-white); }
  .nav-links a:hover::after { width: 100%; }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 75% 25%, rgba(45, 212, 191, 0.1) 0%, transparent 55%),
      radial-gradient(ellipse 45% 50% at 20% 75%, rgba(96, 165, 250, 0.09) 0%, transparent 50%),
      radial-gradient(ellipse 35% 35% at 50% 50%, rgba(212, 164, 74, 0.07) 0%, transparent 45%),
      radial-gradient(ellipse 60% 30% at 85% 80%, rgba(129, 140, 248, 0.06) 0%, transparent 50%),
      linear-gradient(160deg, #0a0f1a 0%, #0f1729 35%, #0d1a2e 60%, #0a0f1a 100%);
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
  }

  .hero-orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12), transparent 70%);
  }

  .hero-orb-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent 70%);
    animation-delay: -3s;
  }

  .hero-orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(212, 164, 74, 0.08), transparent 70%);
    animation-delay: -5s;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 900px;
  }

  .hero-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.08em;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone);
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--off-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(96, 165, 250, 0.1));
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 2px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

  .hero-cta:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(96, 165, 250, 0.18));
    border-color: rgba(45, 212, 191, 0.5);
    gap: 20px;
  }

  .hero-cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    transition: transform 0.3s;
  }

  .hero-cta:hover svg { transform: translateX(4px); }

  .hero-stat-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border-top: 1px solid rgba(45, 212, 191, 0.1);
    background: rgba(10, 15, 26, 0.5);
    backdrop-filter: blur(12px);
    z-index: 2;
  }

  .hero-stat {
    flex: 1;
    padding: 36px 60px;
    border-right: 1px solid rgba(45, 212, 191, 0.08);
    opacity: 0;
    animation: fadeUp 0.6s forwards;
  }

  .hero-stat:nth-child(1) { animation-delay: 1.1s; }
  .hero-stat:nth-child(2) { animation-delay: 1.2s; }
  .hero-stat:nth-child(3) { animation-delay: 1.3s; }
  .hero-stat:nth-child(4) { animation-delay: 1.4s; }
  .hero-stat:last-child { border-right: none; }

  .hero-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
  }

  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
    font-weight: 400;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Sections */
  section {
    padding: 120px 60px;
    position: relative;
  }

  .section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    margin-bottom: 28px;
  }

  /* About */
  .about {
    background:
      radial-gradient(ellipse 50% 50% at 80% 20%, rgba(45, 212, 191, 0.04) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(96, 165, 250, 0.03) 0%, transparent 50%),
      var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--stone);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .about-visual {
    position: relative;
    height: 480px;
  }

  .about-box {
    position: absolute;
    border: 1px solid;
    border-radius: 2px;
  }

  .about-box:nth-child(1) {
    width: 280px;
    height: 340px;
    top: 0;
    right: 0;
    border-color: rgba(45, 212, 191, 0.2);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.06), transparent);
  }

  .about-box:nth-child(2) {
    width: 220px;
    height: 260px;
    bottom: 0;
    left: 40px;
    border-color: rgba(96, 165, 250, 0.2);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.06), transparent);
  }

  .about-box:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 60px;
    left: 120px;
    border-color: rgba(212, 164, 74, 0.2);
    background: rgba(212, 164, 74, 0.04);
  }

  .about-year {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(96, 165, 250, 0.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }

  /* Approach */
  .approach {
    background:
      radial-gradient(ellipse 40% 40% at 70% 70%, rgba(129, 140, 248, 0.04) 0%, transparent 50%),
      var(--deep);
  }

  .approach-header {
    max-width: 600px;
    margin-bottom: 80px;
  }

  .approach-header p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone);
    font-weight: 300;
  }

  .approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.08);
    border-radius: 2px;
  }

  .approach-card {
    background: var(--deep);
    padding: 48px 40px;
    position: relative;
    transition: background 0.4s;
    overflow: hidden;
  }

  .approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .approach-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), transparent); }
  .approach-card:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), transparent); }
  .approach-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), transparent); }

  .approach-card:hover::before { opacity: 1; }

  .approach-card:nth-child(1):hover { background: rgba(45, 212, 191, 0.03); }
  .approach-card:nth-child(2):hover { background: rgba(96, 165, 250, 0.03); }
  .approach-card:nth-child(3):hover { background: rgba(212, 164, 74, 0.03); }

  .approach-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1;
  }

  .approach-card:nth-child(1) .approach-card-num { color: rgba(45, 212, 191, 0.25); }
  .approach-card:nth-child(2) .approach-card-num { color: rgba(96, 165, 250, 0.25); }
  .approach-card:nth-child(3) .approach-card-num { color: rgba(212, 164, 74, 0.25); }

  .approach-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--off-white);
  }

  .approach-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--warm-gray);
    font-weight: 300;
  }

  /* Markets */
  .markets {
    background:
      radial-gradient(ellipse 50% 50% at 50% 80%, rgba(45, 212, 191, 0.04) 0%, transparent 60%),
      var(--charcoal);
  }

  .markets-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
  }

  .markets-header p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone);
    font-weight: 300;
  }

  .markets-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .market-tile {
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s;
    border-radius: 2px;
  }

  .market-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .market-tile:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
  .market-tile:nth-child(2)::before { background: linear-gradient(90deg, var(--blue), var(--indigo)); }
  .market-tile:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--amber)); }

  .market-tile:hover { transform: translateY(-4px); }

  .market-tile:nth-child(1):hover { border-color: rgba(45, 212, 191, 0.3); }
  .market-tile:nth-child(2):hover { border-color: rgba(96, 165, 250, 0.3); }
  .market-tile:nth-child(3):hover { border-color: rgba(212, 164, 74, 0.3); }

  .market-tile:hover::before { opacity: 1; }

  .market-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .market-tile:nth-child(1) .market-icon { background: rgba(45, 212, 191, 0.1); color: var(--teal); }
  .market-tile:nth-child(2) .market-icon { background: rgba(96, 165, 250, 0.1); color: var(--blue); }
  .market-tile:nth-child(3) .market-icon { background: rgba(212, 164, 74, 0.1); color: var(--gold); }

  .market-tile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 14px;
  }

  .market-tile p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--warm-gray);
    font-weight: 300;
  }

  /* ZonifyMo */
  .zonify {
    background:
      radial-gradient(ellipse 50% 50% at 70% 40%, rgba(129, 140, 248, 0.05) 0%, transparent 55%),
      radial-gradient(ellipse 40% 40% at 30% 60%, rgba(45, 212, 191, 0.04) 0%, transparent 50%),
      var(--deep);
    border-top: 1px solid rgba(45, 212, 191, 0.06);
  }

  .zonify-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .zonify-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--stone);
    font-weight: 300;
    margin-bottom: 20px;
  }

  .zonify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(45, 212, 191, 0.3);
    background: rgba(45, 212, 191, 0.05);
    border-radius: 2px;
    margin-top: 16px;
  }

  .zonify-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .zonify-badge span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
  }

  .zonify-visual {
    position: relative;
    height: 400px;
    border: 1px solid rgba(45, 212, 191, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(10, 15, 26, 0.6);
  }

  .z-topbar {
    height: 36px;
    background: rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
  }

  .z-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .z-dot:nth-child(1) { background: var(--rose); }
  .z-dot:nth-child(2) { background: var(--amber); }
  .z-dot:nth-child(3) { background: var(--teal); }

  .z-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: calc(100% - 36px);
  }

  .z-sidebar {
    border-right: 1px solid rgba(45, 212, 191, 0.08);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .z-sidebar-item {
    height: 28px;
    border-radius: 4px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--warm-gray);
    transition: all 0.3s;
  }

  .z-sidebar-item.active {
    background: rgba(45, 212, 191, 0.1);
    color: var(--teal);
  }

  .z-main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .z-bar {
    height: 22px;
    border-radius: 3px;
    opacity: 0;
    animation: barGrow 0.6s forwards;
  }

  .z-bar:nth-child(1) { width: 65%; background: linear-gradient(90deg, rgba(45, 212, 191, 0.3), rgba(45, 212, 191, 0.1)); animation-delay: 0.2s; }
  .z-bar:nth-child(2) { width: 40%; background: linear-gradient(90deg, rgba(96, 165, 250, 0.3), rgba(96, 165, 250, 0.1)); animation-delay: 0.4s; }
  .z-bar:nth-child(3) { width: 80%; background: linear-gradient(90deg, rgba(212, 164, 74, 0.3), rgba(212, 164, 74, 0.1)); animation-delay: 0.6s; }
  .z-bar:nth-child(4) { width: 55%; background: linear-gradient(90deg, rgba(129, 140, 248, 0.3), rgba(129, 140, 248, 0.1)); animation-delay: 0.8s; }
  .z-bar:nth-child(5) { width: 72%; background: linear-gradient(90deg, rgba(45, 212, 191, 0.25), rgba(96, 165, 250, 0.1)); animation-delay: 1.0s; }

  @keyframes barGrow {
    from { opacity: 0; transform: scaleX(0); transform-origin: left; }
    to { opacity: 1; transform: scaleX(1); }
  }

  .z-chart-area {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(45, 212, 191, 0.06);
  }

  .z-chart-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    opacity: 0;
    animation: chartUp 0.5s forwards;
  }

  .z-chart-bar:nth-child(1) { height: 40%; background: var(--teal); opacity: 0.3; animation-delay: 0.3s; }
  .z-chart-bar:nth-child(2) { height: 65%; background: var(--blue); opacity: 0.3; animation-delay: 0.4s; }
  .z-chart-bar:nth-child(3) { height: 50%; background: var(--indigo); opacity: 0.3; animation-delay: 0.5s; }
  .z-chart-bar:nth-child(4) { height: 80%; background: var(--teal); opacity: 0.4; animation-delay: 0.6s; }
  .z-chart-bar:nth-child(5) { height: 55%; background: var(--gold); opacity: 0.3; animation-delay: 0.7s; }
  .z-chart-bar:nth-child(6) { height: 90%; background: linear-gradient(to top, var(--teal), var(--blue)); opacity: 0.4; animation-delay: 0.8s; }
  .z-chart-bar:nth-child(7) { height: 70%; background: var(--blue); opacity: 0.3; animation-delay: 0.9s; }
  .z-chart-bar:nth-child(8) { height: 45%; background: var(--indigo); opacity: 0.3; animation-delay: 1.0s; }

  @keyframes chartUp {
    from { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
    to { opacity: 1; transform: scaleY(1); }
  }

  /* Contact */
  .contact {
    background:
      radial-gradient(ellipse 50% 50% at 50% 50%, rgba(45, 212, 191, 0.05) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 20% 40%, rgba(96, 165, 250, 0.04) 0%, transparent 50%),
      var(--charcoal);
    text-align: center;
    padding: 120px 60px 80px;
  }

  .contact .section-title { margin-bottom: 16px; }

  .contact p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--stone);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    border: 1px solid var(--teal);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(96, 165, 250, 0.05));
    color: var(--off-white);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
  }

  .contact-btn:hover {
    background: linear-gradient(135deg, var(--teal-deep), var(--blue-deep));
    border-color: var(--teal);
    color: #fff;
  }

  footer {
    background: var(--deep);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(45, 212, 191, 0.06);
  }

  .footer-left {
    font-size: 11px;
    color: var(--warm-gray);
    letter-spacing: 1px;
  }

  .footer-right {
    font-size: 11px;
    color: var(--warm-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 900px) {
    nav { padding: 20px 28px; }
    nav.scrolled { padding: 16px 28px; }
    .nav-links { display: none; }
    section { padding: 80px 28px; }
    .hero { align-items: flex-start; padding-top: 120px; padding-bottom: 200px; }
    .hero-content { padding: 0 28px; }
    .hero-title { font-size: 44px; }
    .hero-desc { font-size: 16px; line-height: 1.9; margin-bottom: 32px; }
    .hero-cta { font-size: 12px; letter-spacing: 2px; padding: 16px 28px; gap: 12px; }
    .hero-stat-strip { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 50%; padding: 24px 28px; border-right: 1px solid rgba(45, 212, 191, 0.08); }
    .hero-stat:nth-child(2), .hero-stat:nth-child(4) { border-right: none; }
    .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-top: 1px solid rgba(45, 212, 191, 0.08); }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 300px; }
    .approach-grid { grid-template-columns: 1fr; }
    .markets-row { grid-template-columns: 1fr; }
    .zonify-inner { grid-template-columns: 1fr; }
    .zonify-visual { height: 300px; }
    .z-sidebar { display: none; }
    .z-body { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }
