/* ============================================================
   MAS Trading – Stylesheet
   Dunkel & Gold Theme
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --gold:         #c9a84c;
    --gold-light:   #f0c040;
    --gold-dim:     rgba(201, 168, 76, 0.15);
    --gold-border:  rgba(201, 168, 76, 0.35);
    --bg-dark:      #0a0a0a;
    --bg-card:      rgba(255, 255, 255, 0.03);
    --bg-card-h:    rgba(201, 168, 76, 0.07);
    --text-white:   #ffffff;
    --text-light:   #e5e7eb;
    --text-muted:   #9ca3af;
    --border-dim:   rgba(255, 255, 255, 0.06);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.12);
    --shadow-card:  0 8px 32px rgba(0, 0, 0, 0.5);
    --font-heading: 'Playfair Display', serif;
    --font-body:    'Montserrat', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #000;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--gold);
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-text { margin: 0 auto; }

/* Gold Divider Line */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 1.2rem 0 2rem;
}
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold-border);
}

.btn-outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn svg, .btn i { font-size: 1rem; transition: transform var(--transition); }
.btn:hover svg, .btn:hover i { transform: translateX(4px); }

/* ---------- Navigation ---------- */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-gold);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color var(--transition);
    text-transform: uppercase;
}

.nav-links a:hover { color: var(--gold); }

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text-muted);
}

.lang-btn.active,
.lang-btn:hover {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-dim);
}

.lang-divider {
    color: var(--border-dim);
    font-size: 0.75rem;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 700;
}

.nav-mobile a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%),
                var(--bg-dark);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    background: var(--gold-dim);
    animation: fadeDown 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease 0.2s both;
}

.hero-title .gold-word {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeUp 0.9s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s ease 0.6s both;
    margin-bottom: 4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeUp 1s ease 1s both;
}

.scroll-arrow {
    width: 28px; height: 28px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ---------- Stats Bar ---------- */
#stats {
    background: rgba(201, 168, 76, 0.04);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%;
    width: 1px;
    background: var(--gold-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- About ---------- */
#about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-graphic {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 440px;
    margin: 0 auto;
}

.about-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    animation: rotateSlow 20s linear infinite;
}

.about-ring:nth-child(2) {
    inset: 12%;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 30s;
}

.about-ring:nth-child(3) {
    inset: 24%;
    animation-duration: 15s;
}

.about-center {
    position: absolute;
    inset: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.about-center span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.2;
}

.about-dots {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.about-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

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

.about-content .section-text {
    margin-bottom: 1.2rem;
    max-width: 100%;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    transition: all var(--transition);
}

.about-feature:hover {
    border-color: var(--gold-border);
    background: var(--bg-card-h);
}

.feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ---------- Markets ---------- */
#markets {
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

#markets::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
    z-index: 1;
}

#markets::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 80px;
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 100%);
    z-index: 1;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    margin-top: 3.5rem;
}

.market-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.6rem 1rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.market-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

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

.market-icon {
    font-size: 2rem;
    line-height: 1;
}

.market-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: color var(--transition);
}

.market-card:hover .market-name { color: var(--gold); }

/* ---------- Advantages ---------- */
#advantages {
    background: var(--bg-dark);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.adv-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.adv-card:hover {
    border-color: var(--gold-border);
    background: var(--bg-card-h);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.adv-card:hover::after { transform: scaleX(1); }

.adv-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all var(--transition);
}

.adv-card:hover .adv-icon-wrap {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(201,168,76,0.4);
}

.adv-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
}

.adv-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Contact ---------- */
#contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
}

.contact-info .section-text { max-width: 100%; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
}

.contact-detail i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form */
.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    outline: none;
    transition: all var(--transition);
    width: 100%;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(156, 163, 175, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea { min-height: 130px; }

.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Form Feedback */
.form-feedback {
    display: none;
    padding: 1rem 1.2rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    text-align: center;
}

.form-feedback.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ---------- Footer ---------- */
footer {
    background: #050505;
    border-top: 1px solid var(--border-dim);
    padding: 3rem 0 2rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(156,163,175,0.4);
    padding-top: 2rem;
    border-top: 1px solid var(--border-dim);
    margin-top: 1.5rem;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-graphic { max-width: 300px; }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .stat-item:nth-child(4)::after { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .adv-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2.2rem; }
    .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form { padding: 1.5rem; }
}
