/* ==========================================================
   TUZHERUM — MODERN DISCORD HUB LANDING PAGE THEME
   ========================================================== */

:root {
    --bg-main: #0B0E14;
    --bg-darker: #07090D;
    --bg-card: rgba(18, 22, 33, 0.75);
    --bg-card-hover: rgba(26, 32, 48, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(88, 101, 242, 0.35);

    /* Discord & Brand Colors */
    --discord-blurple: #5865F2;
    --discord-blurple-hover: #4752C4;
    --discord-green: #57F287;
    --discord-yellow: #FEE75C;
    --discord-fuchsia: #EB459E;
    --discord-red: #ED4245;
    
    /* Text Hierarchy */
    --text-primary: #FFFFFF;
    --text-secondary: #949BA4;
    --text-muted: #6D737F;

    /* Fonts */
    --font-heading: 'Cabinet Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Shadows & Transitions */
    --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 35px rgba(88, 101, 242, 0.35);
    --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--discord-blurple), transparent 70%);
    top: -100px;
    right: 5%;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #7289da, transparent 70%);
    top: 40%;
    left: -150px;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--discord-fuchsia), transparent 70%);
    bottom: 5%;
    right: 15%;
    opacity: 0.15;
}

.page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(11, 14, 20, 0.75);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    position: relative;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--discord-blurple) 0%, #3b429f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.brand-letter {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.brand-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--discord-green);
    border: 2.5px solid var(--bg-main);
    border-radius: 50%;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.brand-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--discord-blurple);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--discord-blurple);
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-discord-sm {
    background: var(--discord-blurple);
    color: #fff;
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}

.btn-discord-sm:hover {
    background: var(--discord-blurple-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(88, 101, 242, 0.4);
}

.btn-discord-lg {
    background: linear-gradient(135deg, var(--discord-blurple) 0%, #4752C4 100%);
    color: #fff;
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-discord-lg:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.55);
}

.btn-secondary-lg {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(87, 242, 135, 0.1);
    border: 1px solid rgba(87, 242, 135, 0.25);
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: var(--discord-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--discord-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(87, 242, 135, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(87, 242, 135, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(87, 242, 135, 0); }
}

.badge-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--discord-green);
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.highlight-gradient {
    background: linear-gradient(135deg, #7289da 0%, #5865F2 50%, #b892ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.2rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Stats Card Grid */
.stats-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
}

.stat-box {
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}

.stat-online {
    color: var(--discord-green);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Discord Window Mockup */
.hero-visual {
    position: relative;
}

.discord-mockup-window {
    background: #1e1f22;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(88, 101, 242, 0.15);
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.mockup-titlebar {
    background: #141517;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mockup-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.mini-tag {
    font-size: 0.65rem;
    background: rgba(88, 101, 242, 0.2);
    color: var(--discord-blurple);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.mockup-body {
    display: grid;
    grid-template-columns: 190px 1fr;
    height: 380px;
}

.mockup-sidebar {
    background: #2b2d31;
    padding: 1rem 0.6rem;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    user-select: none;
}

.server-banner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.server-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--discord-blurple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.server-name-head {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.server-badge-verified {
    font-size: 0.62rem;
    color: var(--discord-green);
}

.channel-category {
    font-size: 0.64rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding: 0.4rem 0.5rem 0.15rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: default;
    transition: background 0.15s;
}

.channel-item:hover, .channel-item.active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.ch-hash {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.voice-channel {
    display: flex;
    justify-content: space-between;
}

.active-voice {
    color: var(--discord-green);
}

.voice-count {
    font-size: 0.68rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 5px;
    border-radius: 4px;
}

/* Chat Mockup */
.mockup-chat {
    background: #313338;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat-header {
    background: #313338;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.chat-current-name {
    font-weight: 700;
    color: #fff;
}

.chat-topic {
    font-size: 0.72rem;
    color: var(--text-muted);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0.6rem;
}

.chat-messages {
    padding: 0.8rem 1rem;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.chat-msg {
    display: flex;
    gap: 0.75rem;
}

.msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #232428;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.msg-author {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.15rem;
}

.msg-author .name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.text-role-owner {
    color: #f1c40f !important;
}

.bot-badge {
    background: var(--discord-blurple);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
}

.role-badge {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}

.msg-author .time {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.msg-text {
    font-size: 0.82rem;
    color: #dbdee1;
    line-height: 1.4;
}

.msg-text code {
    background: #2b2d31;
    padding: 1px 4px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
}

.chat-input-bar {
    margin: 0.75rem 1rem;
    background: #383a40;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-attach {
    background: #4e5058;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-sub {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--discord-blurple);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Feature Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(88, 101, 242, 0.15);
}

.card-icon {
    font-size: 2.2rem;
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--discord-blurple);
    background: rgba(88, 101, 242, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
}

/* Rules Section */
.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.rule-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem;
    position: relative;
    transition: var(--transition-smooth);
}

.rule-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.rule-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    line-height: 1;
}

.rule-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: #fff;
}

.rule-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-card[open] {
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--discord-blurple);
    font-weight: 400;
    transition: transform 0.25s ease;
}

.faq-card[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer code {
    background: #2b2d31;
    color: var(--discord-green);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* Final CTA Section */
.final-cta-section {
    max-width: 1200px;
    margin: 2rem auto 5rem;
    padding: 0 1.5rem;
}

.final-cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(20, 24, 36, 0.9) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: 28px;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 250px;
    background: radial-gradient(circle, var(--discord-blurple), transparent 70%);
    opacity: 0.35;
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: var(--bg-darker);
    padding: 2.5rem 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 26px;
    height: 26px;
    background: var(--discord-blurple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
}

.status-indicator-green {
    width: 7px;
    height: 7px;
    background: var(--discord-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--discord-green);
}

.domain-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Toast */
.toast-notify {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1e1f22;
    border: 1px solid var(--discord-green);
    color: #fff;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(120px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 9999;
}

.toast-notify.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    width: 22px;
    height: 22px;
    background: var(--discord-green);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
}

.toast-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-visual {
        max-width: 580px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stats-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 0.5rem;
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .mockup-body {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: none;
    }

    .final-cta-box {
        padding: 3rem 1.25rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}
