:root {
    --primary-color: #1B4D3E;
    --secondary-color: #F5A623;
    --background-color: #FAFAFA;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --accent-color: #E8F5E9;
    --error-color: #D32F2F;
    --white: #FFFFFF;
    --border-radius-card: 8px;
    --border-radius-button: 6px;
    --max-width: 1100px;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.2s ease;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Utilities */
.hidden {
    display: none;
}

.white-text {
    color: var(--white);
}

.success-message {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: var(--border-radius-card);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    margin-top: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: var(--border-radius-button);
    text-align: center;
    border: none;
}

.cta-button:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 166, 35, 0.3);
}

.cta-button.white-bg {
    background-color: var(--white);
    color: var(--text-primary);
}

.cta-button.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-reno {
    color: var(--primary-color);
}

.logo-radar {
    color: var(--secondary-color);
}

.lang-switch {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F7F4 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 77, 62, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 5.5;
}

.hero-visual {
    flex: 4.5;
    display: flex;
    justify-content: center;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-headline {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 500px;
    margin-bottom: 32px;
}

.sub-cta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* How It Works */
.how-it-works {
    background-color: #F7F7F7;
    padding: 80px 0;
}

.section-heading {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    margin-top: -30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    opacity: 0.8;
}

.step-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-body {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Neighbourhood Effect Section */
.neighbourhood-effect {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B4D3E 0%, #2A6B55 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.neighbourhood-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.effect-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.effect-content .eyebrow {
    color: var(--secondary-color);
}

.effect-content .section-heading {
    color: #FFFFFF;
    margin-bottom: 24px;
}

.effect-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.effect-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.effect-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.effect-stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.effect-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.effect-chain {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Inter', monospace;
}

.chain-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chain-dot.active {
    background-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
}

.chain-dot.pending {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(245, 166, 35, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.chain-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    padding: 2px 0;
}

/* Trade Breakdown Section */
.trade-breakdown {
    background-color: var(--background-color);
    /* Same as body bg, or maybe white? 'How it works' is gray #F7F7F7. The user said 'white background' for CARDS. Let's make section bg match How It Works or just transparent. Let's stick to var(--background-color) which is #FAFAFA. */
    padding: 80px 0;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trade-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    /* transition for hover effect if desired, matching others */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trade-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.trade-icon-wrapper {
    color: var(--primary-color);
    margin-bottom: 20px;
    /* Ensure SVGs are sized correctly */
}

.trade-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trade-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes the stat line to button if needed, though card height might vary */
    line-height: 1.5;
}

.trade-stat {
    font-size: 14px;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
    margin-top: auto;
    /* Pushes to bottom */
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Optional separator for clarity */
}

/* Mobile responsive for trade grid */
@media (max-width: 1024px) {
    .trade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trade-grid {
        grid-template-columns: 1fr;
    }
}

.leads-teaser {
    padding: 80px 0;
    background: linear-gradient(180deg, #F0F7F4 0%, #FAFAFA 100%);
    border-bottom: 1px solid #E0E0E0;
    position: relative;
}

.leads-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(27, 77, 62, 0.03) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.teaser-header {
    text-align: center;
    margin-bottom: 40px;
}

.leaves-table-container {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
}

.leads-table th {
    background-color: #F7F9F8;
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 16px 24px;
    text-align: left;
}

.leads-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
    color: var(--text-primary);
}

.badge {
    background-color: #E8F5E9;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Blur Effect */
.blurred-row td {
    filter: blur(4px);
    opacity: 0.5;
    user-select: none;
}

.blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Cover full height for gradient control */
    top: 0;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.8) 75%,
            #FFFFFF 100%);
    display: flex;
    align-items: flex-end;
    /* Push lock box to bottom */
    justify-content: center;
    z-index: 10;
    padding-bottom: 60px;
    /* Lift lock box slightly */
    pointer-events: none;
    /* Allow clicking through top part */
}

.lock-content {
    pointer-events: auto;
    /* Re-enable clicks */
    text-align: center;
    padding: 24px 32px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    max-width: 420px;
    position: relative;
    margin-bottom: 20px;
}

.lock-icon {
    width: 56px;
    height: 56px;
    background-color: #FEF3C7;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lock-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.lock-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
}


/* Use Cases (Feature Grid) - Redesigned Clean */
.use-cases {
    background-color: #F8F9FA;
    padding: 80px 0;
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Clean look, no strong borders by default */
    border: 1px solid #E5E5E5;
}

.feature-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(27, 77, 62, 0.3);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: #F0FDF4;
    /* Very light green */
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.6;
}

.feature-footer {
    margin-top: auto;
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
}

.pro-tip {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
}

.pro-tip strong {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 600;
    margin-right: 6px;
}


/* Pricing Section */
.pricing-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    max-width: 420px;
    margin: 0 auto;
    padding: 40px;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.billing-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 24px 0;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.features-list li {
    padding: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}


/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F5F2 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 700px;
}

.accordion-item {
    border-bottom: 1px solid #E0E0E0;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--text-secondary);
}


/* Final CTA */
.final-cta {
    background-color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
}

.headline-cta {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1A1A1A;
}


/* Signup Form */
.signup-form-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.form-container {
    max-width: 500px;
}

.form-h2 {
    text-align: center;
    margin-bottom: 32px;
}

.signup-form {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-button);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.2s;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

.form-email-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-email-alt a {
    color: var(--primary-color);
    font-weight: 600;
}


/* Footer Grid */
.footer {
    background-color: #1A1A1A;
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.logo-reno.white-text {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 24px;
}

.footer-desc {
    color: #9CA3AF;
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9CA3AF;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
}

.footer-col.contact p {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-col.contact a {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: #6B7280;
    font-size: 13px;
}


/* Phone Mockup Styles */
.phone-mockup {
    width: 300px;
    height: 580px;
    background-color: #FFFFFF;
    border-radius: 40px;
    border: 12px solid #1A1A1A;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background-color: #1A1A1A;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #F2F2F7;
    /* iOS system gray */
}

.email-header {
    background-color: #FFFFFF;
    padding: 40px 16px 16px 16px;
    border-bottom: 1px solid #E5E5EA;
}

.email-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #8E8E93;
    margin-bottom: 8px;
    font-weight: 500;
}

.email-subject {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
}

.email-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.email-intro {
    font-size: 14px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.permit-list {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.permit-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #F2F2F7;
}

.permit-item:last-child {
    border-bottom: none;
}

.permit-item.highlight {
    background-color: #F0FFF4;
    /* Light green tint */
}

.permit-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F7;
    border-radius: 50%;
}

.permit-item.highlight .permit-icon {
    background-color: #DCFCE7;
}

.permit-details {
    flex: 1;
}

.permit-address {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.permit-sub {
    font-size: 11px;
    color: #8E8E93;
}

.permit-action {
    color: #C7C7CC;
    font-weight: bold;
    font-size: 14px;
}

.email-footer {
    margin-top: 16px;
    text-align: center;
}

.btn-email {
    background-color: #E5E5EA;
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    width: 100%;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 40px 0 20px;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 4px 0;
    text-align: right;
}

.footer-contact a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Mobile Responsive - Consolidated */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .hero-container {
        flex-direction: column;
        padding-top: 20px;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        margin-top: 40px;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .leads-table th:nth-child(2),
    .leads-table td:nth-child(2) {
        display: none;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px;
        margin: 0 16px;
    }

    .pricing-card .price {
        font-size: 40px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .phone-mockup {
        width: 280px;
        height: 540px;
        border-width: 8px;
    }

    .effect-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .effect-content .section-heading {
        text-align: center;
    }

    .effect-stat-number {
        font-size: 48px;
    }

    .trade-grid {
        grid-template-columns: 1fr 1fr;
    }
}