:root {
    /* Nova Paleta - Cliente */
    --bg-color: #010f1a; /* Blue Petrol */
    --panel-color: rgba(1, 15, 26, 0.85);
    --accent-primary: #ff6a10; /* Naranja fuego */
    --accent-secondary: #ff6a10;
    --accent-woke: #8c52ff; /* Morado */
    --text-primary: #ffffff; /* Blanco puro */
    --text-secondary: #d9d9d9; /* Gris */
    --link-color: #8AB4D0; /* Hyperlinks */
    --glass-border: rgba(255, 255, 255, 0.1);
    --liquid-glow: rgba(255, 106, 16, 0.2);

    /* Terminal Specific Colors */
    --term-bg: #000000;
    --term-border: #333333;
    --term-header-bg: #111111;
    --term-text: #e0e0e0;
    --term-green: #00ff9d;
    --term-red: #ff0055;
    --term-font: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px; /* Wider for terminal */
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(1, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

.btn-nav {
    background: var(--accent-primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-nav:hover {
    background: #ff8540;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(1, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    margin: 0;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 106, 16, 0.1);
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.hero-line {
    white-space: nowrap;
    text-align: center;
}

.highlight-orange {
    color: var(--accent-primary);
    display: block;
    margin-top: 40px;
    font-size: 2.5rem;
    white-space: nowrap;
    text-align: center;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--accent-primary);
    color: white;
}

.btn.primary:hover {
    background: #ff8540;
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    margin-left: 20px;
}

.btn.secondary:hover {
    background: #8c52ff;
    border-color: #8c52ff;
    color: white;
    transform: translateY(-2px);
}

/* Scanner Section */
.scanner {
    padding: 100px 0;
}

.glass-panel {
    background: var(--panel-color);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
}

.scanner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.scanner-title {
    font-size: 3rem; /* Similar to terminal section */
    font-weight: 700;
    color: var(--text-primary);
}

.scanner-title span {
    color: var(--accent-primary);
}

.scanner-headline {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.scanner-features {
    list-style: none;
    margin: 20px 0;
}

.scanner-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.scanner-features li i {
    color: var(--accent-primary);
    margin-top: 4px;
}

.scanner-warning {
    background: rgba(255, 106, 16, 0.1);
    border-left: 3px solid var(--accent-primary);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.scanner-warning i {
    color: var(--accent-primary);
    margin-right: 8px;
}

.scanner-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scanner-form input {
    background: var(--text-primary); /* White background for form fields per instruction? No, "fondos de formularios: Blanco puro" usually means the container or the input bg. */
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 5px;
    color: #000000;
    font-size: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.checkbox-container a {
    color: var(--link-color);
}

.scanner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-preview {
    max-width: 100%;
    border-radius: 12px;
}

/* ---------------------------------------------------- */
/* CARTA SECTION STYLES */
/* ---------------------------------------------------- */

.carta-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.carta-container {
    max-width: 1100px;
    margin: 0 auto;
}

.carta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left; /* Left alignment */
}

.carta-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Anotação Woke - Simplified */
.carta-annotation {
    margin-top: 40px;
    padding: 25px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border: none;
    background: transparent;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.carta-annotation p {
    margin-bottom: 10px;
}

.carta-form-container {
    background: transparent;
    padding: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 150px;
}

.carta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carta-form input[type="email"] {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 5px;
    color: #000000;
    font-size: 1rem;
    width: 100%;
}

.carta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.privacy-checkbox {
    font-size: 0.85rem;
    line-height: 1.4;
}

.privacy-checkbox a {
    color: var(--link-color);
    text-decoration: underline;
}

.privacy-checkbox a:hover {
    color: var(--accent-secondary);
}

/* ---------------------------------------------------- */
/* PRO TERMINAL STYLES (NEW) */
/* ---------------------------------------------------- */

.pro-terminal-section {
    padding: 100px 0;
    background: #080a0f;
}

.pro-terminal-window {
    background: var(--term-bg);
    border: 1px solid var(--term-border);
    border-radius: 4px; /* Sharper corners for pro look */
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    overflow: hidden;
    font-family: var(--term-font);
    display: flex;
    flex-direction: column;
    height: 800px;
}

/* Ticker */
.ticker-wrap {
    background: var(--term-header-bg);
    border-bottom: 1px solid var(--term-border);
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.ticker {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 20px;
    font-size: 0.8rem;
    color: var(--term-text);
}

.ticker__item .symbol { font-weight: bold; color: #fff; }
.ticker__item .up { color: var(--term-green); }
.ticker__item .down { color: var(--term-red); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Terminal Grid (Bento Box) */
.terminal-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 1px;
    background-color: var(--term-border); /* Creates gap lines */
    padding: 1px;
}

.module {
    background: var(--term-bg);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-header {
    height: 25px;
    background: var(--term-header-bg);
    border-bottom: 1px solid var(--term-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-title {
    font-weight: bold;
    color: var(--accent-primary);
}

/* Specific Module Layouts */
.chart-module {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.watchlist-module {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.core-module {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.orderbook-module {
    grid-column: 2 / 4; /* Spans 2 columns */
    grid-row: 2 / 3;
    display: flex;
    flex-direction: row;
}

.order-list {
    width: 100%;
    font-size: 0.75rem;
}

/* Charts (CSS Draw) */
.chart-container {
    flex: 1;
    position: relative;
    padding: 20px;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
}

.candle-chart {
    width: 100%;
    height: 100%;
    position: relative;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
}

.candle {
    position: absolute;
    width: 15px;
    background: currentColor;
}
.candle::before { /* Wick */
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 1px;
    background: currentColor;
    transform: translateX(-50%);
    opacity: 0.5;
}
.candle.up { color: var(--term-green); }
.candle.down { color: var(--term-red); }
.candle.active { box-shadow: 0 0 10px var(--term-green); }

.ma-line {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.chart-info {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 0.7rem;
    color: var(--term-text);
}
.chart-info span { margin-right: 15px; }

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}
.data-table th {
    text-align: left;
    padding: 8px;
    color: #666;
    font-weight: normal;
    border-bottom: 1px solid var(--term-border);
}
.data-table td {
    padding: 8px;
    border-bottom: 1px solid #1a1a1a;
    color: var(--term-text);
}
.data-table .up { color: var(--term-green); }
.data-table .down { color: var(--term-red); }

/* Order Book */
.order-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px;
    border-bottom: 1px solid #111;
}
.order-row.header { color: #666; margin-bottom: 5px; }
.order-row.sell span:last-child { color: var(--term-red); }
.order-row.buy span:last-child { color: var(--term-green); }
.order-row.spread { 
    text-align: center; 
    color: #444; 
    padding: 5px; 
    font-size: 0.6rem;
    letter-spacing: 2px;
}

/* Visual Container for Three.js */
.visual-container {
    flex: 1;
    min-height: 200px;
}

.core-stats {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--accent-primary);
    border-top: 1px solid var(--term-border);
}

/* Command Bar */
.command-bar {
    height: 40px;
    background: var(--term-header-bg);
    border-top: 1px solid var(--term-border);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.prompt {
    color: var(--accent-primary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

.cmd-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--term-font);
    font-size: 0.9rem;
    outline: none;
}

.connection-status {
    font-size: 0.7rem;
    color: var(--term-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--term-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--term-green);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-content .tagline {
    color: var(--accent-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-content .copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ---------------------------------------------------- */
/* TERMINAL SHOWCASE STYLES */
/* ---------------------------------------------------- */

.terminal-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #080a0f 0%, var(--bg-color) 100%);
}

.terminal-header {
    text-align: center;
    margin-bottom: 60px;
}

.terminal-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.terminal-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.terminal-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Devices Showcase */
.devices-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 60px;
    position: relative;
}

.device-item {
    position: relative;
}

.device-item img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.device-item.tablet img {
    max-width: 550px;
}

.device-item.phone {
    margin-left: -100px;
}

.device-item.phone img {
    max-width: 280px;
}

/* Product Highlight */
.product-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--panel-color);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
}

.product-image img {
    max-width: 100%;
    border-radius: 10px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.feature-list li i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    width: 30px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.terminal-cta {
    text-align: center;
    margin-top: 60px;
}

.terminal-cta .btn {
    padding: 20px 60px;
    font-size: 1.2rem;
}

/* ---------------------------------------------------- */
/* RESPONSIVE - LARGE TABLET */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .navbar {
        padding: 15px 30px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .scanner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scanner-visual {
        order: -1;
    }

    .glass-panel {
        padding: 40px;
    }

    .device-item.tablet img {
        max-width: 450px;
    }

    .device-item.phone {
        margin-left: -60px;
    }

    .device-item.phone img {
        max-width: 180px;
    }

    .terminal-header h2 {
        font-size: 2.2rem;
    }

    /* Carta Section tablet */
    .carta-section {
        padding: 60px 0;
    }

    .carta-text {
        font-size: 1.05rem;
    }

    .carta-annotation {
        padding: 20px;
    }
}

/* ---------------------------------------------------- */
/* RESPONSIVE - TABLET */
/* ---------------------------------------------------- */
@media (max-width: 900px) {
    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(1, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 0;
        padding: 15px 0;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links .btn-nav {
        margin-top: 20px;
        padding: 15px 30px;
        text-align: center;
        width: 100%;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0 0 0 20px;
        margin: 0;
        min-width: auto;
    }

    .nav-dropdown .dropdown-menu a {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    /* Hero tablet adjustments */
    h1 {
        font-size: 2.8rem;
    }

    .highlight-orange {
        font-size: 1.8rem;
    }

    .hero-line {
        white-space: normal;
    }
}

/* ---------------------------------------------------- */
/* RESPONSIVE - MOBILE */
/* ---------------------------------------------------- */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 15px 20px;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 20px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
    }

    .hero-line {
        white-space: normal;
        display: block;
    }

    .highlight-orange {
        font-size: 1.3rem;
        white-space: normal;
        text-align: center;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        text-align: center;
        padding: 0 10px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }

    .btn.secondary {
        margin-left: 0;
    }

    .scanner {
        padding: 10px 0 50px;
    }

    .glass-panel {
        padding: 25px;
        border-radius: 16px;
    }

    .scanner-grid {
        gap: 30px;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .scanner-info p {
        font-size: 0.95rem;
    }

    .scanner-form {
        margin-top: 25px;
        gap: 12px;
    }

    .scanner-form input {
        padding: 14px;
        font-size: 0.95rem;
    }

    .scanner-form .btn {
        width: 100%;
    }

    .checkbox-container {
        font-size: 0.75rem;
        align-items: flex-start;
    }

    .product-preview {
        border-radius: 10px;
    }

    /* Terminal Section Mobile */
    .terminal-showcase {
        padding: 60px 0;
    }

    .terminal-header {
        margin-bottom: 40px;
    }

    .terminal-header h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .terminal-header p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .devices-showcase {
        gap: 30px;
        padding: 0;
        margin-bottom: 40px;
    }

    .device-item {
        width: 100%;
        padding: 0 10px;
    }

    .devices-showcase {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .device-item {
        display: flex;
        justify-content: center;
    }

    .device-item.tablet img {
        max-width: 100%;
    }

    .device-item.phone {
        margin-left: 0;
    }

    .device-item.phone img {
        max-width: 260px;
    }

    .terminal-cta {
        margin-top: 40px;
    }

    .terminal-cta .btn {
        padding: 16px 40px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 0;
    }

    .footer-content .logo img {
        height: 30px;
    }

    .footer-content p {
        font-size: 0.85rem;
    }

    /* Carta Section Mobile */
    .carta-section {
        padding: 40px 0;
    }

    .carta-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .carta-text p:first-child {
        font-size: 1.1rem;
    }

    .carta-form-container {
        padding: 20px;
        margin-top: 30px;
    }

    .carta-form-container h3 {
        font-size: 1.1rem;
    }

    .carta-annotation {
        padding: 15px;
        font-size: 0.85rem;
    }
}