  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink-dark: #142d3d;
    --ink: #1a3a4f;
 
    --ink-soft: #3a3d40;
    --ink-muted: #6b7077;
    --surface: #f7f5f0;
    --surface-alt: #edeae3;
    --white: #ffffff;
    --gold: #c8a84b;
    --gold-light: #e8d48e;
    --gold-dark: #9a7a28;
    --accent: #1a3a4f;
    --accent-mid: #2a5570;
    --accent-light: #e4edf2;
    --border: rgba(12,14,15,0.12);
    --border-strong: rgba(12,14,15,0.25);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(247,245,240,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .nav-logo span { color: var(--gold); }
  .nav-logo1 { font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; color: var(--ink-dark); text-decoration: none; letter-spacing: -0.02em; }
  .nav-logo1 span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold-dark); }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.4rem;
    height: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent-mid) !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 2rem;
  }
  .hero-tag::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--gold);
    display: block;
  }

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.8rem;
  }
  .hero-h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 32rem;
    margin-bottom: 3rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
    display: inline-block;
  }
  .btn-primary:hover { background: var(--accent-mid); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--gold-dark); }

  .hero-right {
    position: relative;
    background: var(--accent);
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 40%, rgba(200,168,75,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200,168,75,0.08) 0%, transparent 60%);
  }

  .hero-geo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .geo-ring {
    position: absolute;
    border: 1px solid rgba(200,168,75,0.2);
    border-radius: 50%;
  }

  .geo-ring-1 { width: 300px; height: 300px; }
  .geo-ring-2 { width: 480px; height: 480px; animation: spin 60s linear infinite; }
  .geo-ring-3 { width: 660px; height: 660px; animation: spin 90s linear infinite reverse; }

  .geo-ring-2::before, .geo-ring-3::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .geo-center {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .geo-label {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
  }

  .geo-badge {
    position: absolute;
    background: var(--gold);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    white-space: nowrap;
  }
  .geo-badge-1 { top: 25%; right: 12%; }
  .geo-badge-2 { bottom: 30%; left: 10%; }

  .hero-stat-bar {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero-stat {
    flex: 1;
    padding: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
  }
  .hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    display: block;
  }

  /* ── MARQUEE ── */
  .marquee-track {
    background: var(--accent);
    overflow: hidden;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .marquee-inner {
    display: flex;
    gap: 3rem;
    animation: marquee 24s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
  }
  .marquee-dot {
    color: var(--gold);
    margin-right: 3rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { padding: 7rem 4rem; }

  .section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .section-tag::before {
    content: '';
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
  }

  .section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .section-h2 em { font-style: normal; color: var(--gold); }

  /* ── EXPERTISE ── */
  .expertise {
    background: var(--white);
  }
  .expertise-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .expertise-body {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .expertise-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 2.5rem;
  }
  .pillar {
    background: var(--white);
    padding: 1.5rem;
    position: relative;
  }
  .pillar-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--surface-alt);
    position: absolute;
    top: 1rem; right: 1.2rem;
  }
  .pillar-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }
  .pillar-desc {
    font-size: 0.83rem;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* ── SERVICES ── */
  .services {
    background: var(--surface);
    max-width: 100%;
  }
  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }
  .services-intro {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s var(--ease);
    cursor: default;
  }
  .service-card:hover { background: var(--accent); }
  .service-card:hover .service-icon { color: var(--gold); }
  .service-card:hover .service-title { color: var(--white); }
  .service-card:hover .service-desc { color: rgba(255,255,255,0.65); }
  .service-card:hover .service-list li { color: rgba(255,255,255,0.7); }
  .service-card:hover .service-list li::before { background: var(--gold); }
  .service-card:hover .service-num { color: rgba(255,255,255,0.04); }

  .service-num {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(12,14,15,0.04);
    position: absolute;
    top: 1.5rem; right: 2rem;
    line-height: 1;
    transition: color 0.3s;
    user-select: none;
  }
  .service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
    transition: color 0.3s;
    line-height: 1;
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    transition: color 0.3s;
  }
  .service-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 300;
    transition: color 0.3s;
  }
  .service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .service-list li {
    font-size: 0.85rem;
    color: var(--ink-muted);
    padding-left: 1.2rem;
    position: relative;
    transition: color 0.3s;
  }
  .service-list li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.55em;
    transition: background 0.3s;
  }

  /* ── HOW ── */
  .how {
    background: var(--accent);
    color: var(--white);
  }
  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .how .section-tag { color: var(--gold); }
  .how .section-tag::before { background: var(--gold); }
  .how .section-h2 { color: var(--white); }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .how-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1px;
    background: linear-gradient(to right, rgba(200,168,75,0.4), rgba(200,168,75,0.1));
  }

  .how-step {
    padding: 0 2rem 0 0;
    position: relative;
  }
  .step-num-wrap {
    width: 3rem; height: 3rem;
    border: 1px solid rgba(200,168,75,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--accent);
  }
  .step-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold);
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }
  .step-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── WHY ── */
  .why {
    background: var(--surface);
  }
  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .why-feature {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
  }
  .why-feature:first-child { border-top: 1px solid var(--border); }
  .why-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--accent);
  }
  .why-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }
  .why-content p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.7;
  }

  .why-quote-block {
    background: var(--accent);
    padding: 4rem;
    position: relative;
    overflow: hidden;
  }
  .why-quote-block::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 12rem;
    font-weight: 800;
    color: rgba(200,168,75,0.12);
    position: absolute;
    top: -2rem;
    left: 2rem;
    line-height: 1;
    user-select: none;
  }
  .why-quote {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
  }
  .why-quote em { color: var(--gold); font-style: normal; }
  .why-source {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  /* ── MARKETS ── */
  .markets {
    background: var(--white);
    padding: 7rem 4rem;
  }
  .markets-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 4rem;
  }
  .market-cell {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
  }
  .market-cell:hover { background: var(--accent-light); }
  .market-icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }
  .market-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--ink-dark);
    color: var(--white);
  }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .contact .section-tag { color: var(--gold); }
  .contact .section-tag::before { background: var(--gold); }
  .contact .section-h2 { color: var(--white); }
  .contact-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  .contact-detail-icon {
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid rgba(200,168,75,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 0.1rem;
  }
  .contact-detail-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }
  .contact-detail-text a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-detail-text a:hover { color: var(--gold); }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
  .form-field input:focus,
  .form-field textarea:focus { border-color: var(--gold); }
  .form-field textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    background: var(--gold);
    color: var(--accent);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s var(--ease), transform 0.2s;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: #070809;
    color: rgba(255,255,255,0.35);
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
  }
  .footer-logo span { color: var(--gold); }
  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  .footer-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ── FAQ ── */
  .faq { background: var(--surface); }
  .faq-inner { max-width: 800px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:first-of-type { border-top: 1px solid var(--border); }
  .faq-q { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; letter-spacing: -0.01em; list-style: none; padding: 1.5rem 0; }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
  details[open] .faq-q::after { transform: rotate(45deg); }
  .faq-a { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; padding: 0 0 1.5rem 0; max-width: 680px; }

  /* ── ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: max-height 0.3s var(--ease);
    }
    .nav-links.active {
      max-height: 24rem;
      visibility: visible;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
    }
    .nav-links a.nav-cta {
      margin: 1rem 1.5rem;
      text-align: center;
      border-bottom: none;
    }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 8rem 1.5rem 4rem; }
    section { padding: 4rem 1.5rem; }
    .expertise-inner,
    .services-header,
    .why-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-steps::before { display: none; }
    .markets-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .expertise-pillars { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }

  @media (max-width: 560px) {
    .nav-logo { font-size: 2.2rem; }
    .nav-logo .hero-tag { display: none; }
    .how-steps { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
