/* ==========================================================================
   TriSHP Music Label - Premium Glassmorphism 2.0 Stylesheet & Audio Player
   Fonts: Syne (Headings), Plus Jakarta Sans (Body), Space Grotesk (Data)
   ========================================================================== */

:root {
    /* Color Tokens */
    --bg-main: #07080e;
    --bg-alt: #0a0c16;
    --card-glass-bg: rgba(15, 17, 28, 0.78);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(0, 243, 255, 0.4);
    
    /* Neon Accents */
    --color-cyan: #00f3ff;
    --color-pink: #ec4899;
    --color-purple: #8b5cf6;
    --color-violet: #6366f1;
    
    /* Gradients */
    --grad-cyan-pink: linear-gradient(135deg, var(--color-cyan), var(--color-pink));
    --grad-purple-cyan: linear-gradient(135deg, var(--color-purple), var(--color-cyan));
    --grad-text: linear-gradient(135deg, #ffffff 0%, #d8e2ff 60%, var(--color-cyan) 100%);
    
    /* Text Tokens */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Layout */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 70px;
}

/* Ambient Animated Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-violet);
    top: -150px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-pink);
    top: 40%;
    right: -150px;
    animation-delay: -6s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: var(--color-cyan);
    bottom: -100px;
    left: 20%;
    animation-delay: -12s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 80px) scale(1.1); }
    100% { transform: translate(-40px, 40px) scale(0.95); }
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, .font-syne {
    font-family: 'Syne', sans-serif;
}

.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--card-glass-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.12);
    transform: translateY(-4px);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
    color: #07080e;
    font-weight: 700;
}

.btn-glow {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.35);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-cyan), #3b82f6);
    color: #000;
    font-size: 1.1rem;
    padding: 18px 36px;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.7);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    padding: 18px 36px;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* NAVBAR */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar-wrapper.scrolled {
    background: rgba(7, 8, 14, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
}

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

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

.logo-box {
    position: relative;
    width: 44px;
    height: 44px;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 243, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.25);
    object-fit: cover;
}

.live-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid var(--bg-main);
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.brand-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-cyan);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-cyan);
}

.wiki-badge-link {
    color: var(--color-cyan);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO SECTION */
.hero-section {
    padding: 170px 0 90px 0;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.25);
    color: var(--color-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    max-width: 950px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* STATS */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 48px;
    background: rgba(15, 17, 28, 0.6);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 1000px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
}

/* TICKER MARQUEE */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: tickerScroll 30s linear infinite;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.ticker-track span.dot {
    color: var(--color-cyan);
    font-size: 1.2rem;
}

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

/* SECTION HEADERS */
.section-padding {
    padding: 100px 0;
}

.section-alt-bg {
    background: var(--bg-alt);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.cyan-glow {
    background: rgba(0, 243, 255, 0.1);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.pink-glow {
    background: rgba(236, 72, 153, 0.1);
    color: var(--color-pink);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.purple-glow {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* PLATFORMS MATRIX */
.platforms-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.platform-card {
    padding: 32px;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.platform-header i {
    font-size: 2rem;
}

.spotify-card .platform-header i { color: #1ed760; }
.apple-card .platform-header i { color: #fa243c; }
.yandex-card .platform-header i { color: #ffcc00; }
.vk-card .platform-header i { color: #0077ff; }
.tiktok-card .platform-header i { color: #ff0050; }
.youtube-card .platform-header i { color: #ff0000; }

.platform-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.platform-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-benefits li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-benefits li i {
    color: var(--color-cyan);
    font-size: 0.85rem;
}

/* ROADMAP TIMELINE */
.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.roadmap-step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roadmap-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan);
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-card {
    padding: 28px;
    flex: 1;
}

.roadmap-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.roadmap-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ARTISTS GRID & PLAY DEMO BUTTON */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.artist-card {
    overflow: hidden;
    padding: 0;
}

.artist-cover-box {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-img {
    transform: scale(1.08);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 14, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.btn-play-demo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-violet));
    color: #000;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-play-demo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.7);
}

.artist-details {
    padding: 28px;
}

.artist-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.artist-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-cyan);
}

.artist-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.artist-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.artist-btn-link {
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.artist-btn-link:hover {
    text-decoration: underline;
}

/* CALCULATOR & PRESETS */
.calculator-card {
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.calc-presets {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.preset-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.preset-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-btn:hover, .preset-btn.active {
    background: rgba(0, 243, 255, 0.12);
    border-color: var(--color-cyan);
    color: #fff;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.currency-selector span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.currency-btn {
    padding: 6px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn.active {
    background: var(--color-cyan);
    color: #000;
    font-weight: 700;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.calc-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.calc-label strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--color-cyan);
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    margin-bottom: 12px;
    accent-color: var(--color-cyan);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.result-title {
    font-size: 1rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.result-amount-usd {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.result-amount-rub {
    font-size: 1.1rem;
    color: var(--color-cyan);
    font-weight: 600;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.breakdown-item strong {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

/* TERMS CARDS */
.terms-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.term-feature-card {
    padding: 40px;
    position: relative;
}

.term-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.term-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.term-feature-header i {
    font-size: 2rem;
    color: var(--color-cyan);
}

.term-feature-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.term-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.term-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.term-list li i {
    color: var(--color-cyan);
    margin-right: 8px;
}

.term-list li strong {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

/* FAQ ACCORDION */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    cursor: pointer;
    padding: 24px 30px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 1rem;
    color: var(--color-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: var(--text-secondary);
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 16px;
}

/* FOOTER */
.footer-wrapper {
    background: #040508;
    border-top: 1px solid var(--card-border);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-col a {
    color: var(--color-cyan);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
