/* Lottopro - Bold Dark Theme Design */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Color System - Dark Bold Theme */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    
    --accent-primary: #ff6b35;
    --accent-secondary: #f7931e;
    --accent-glow: rgba(255, 107, 53, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    --border-color: #262626;
    --border-hover: #404040;
    
    --success: #00d084;
    --error: #ff4757;
    
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

/* Header - Minimal Dark */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.5rem 0;
}

header nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Hero Section - Split Layout */
.hero-container {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 3rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hero-text h1 {
    color: var(--text-primary);
    margin: 0;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
    word-wrap: break-word;
}

.hero-visual {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border-radius: 24px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 70%);
    opacity: 0.5;
}

.stats-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem;
}

.stat-showcase-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.stat-showcase-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-showcase-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Features Grid - 3 Columns */
.features-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-card);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Content Section - Full Width Split */
.content-section-dark {
    padding: 6rem 3rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.content-wrapper-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-main p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-list li {
    padding: 1rem;
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    word-wrap: break-word;
}

/* Stats Bar - Horizontal */
.stats-bar {
    padding: 4rem 3rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-bar-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-bar-item {
    text-align: center;
    padding: 2rem;
}

.stat-bar-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Responsible Gaming - Full Width Card */
.responsible-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.responsible-card-full {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.responsible-content-text h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.responsible-content-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tools-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tools-list li {
    padding: 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.help-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.help-card h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.help-phone-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0;
}

.help-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.help-link:hover {
    text-decoration: underline;
}

/* Footer - Minimal Dark */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 3rem 2rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-column span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-warning {
    color: var(--accent-secondary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Modals - Dark Theme */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-card);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-width: 40px;
    min-height: 40px;
}

.modal-close:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.modal-content h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group.row {
    flex-direction: row;
    gap: 1rem;
}

.form-group.row > div {
    flex: 1;
}

.form-label {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.form-checkbox a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 208, 132, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.form-message.error {
    background: rgba(255, 71, 87, 0.1);
    color: var(--error);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .content-wrapper-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .responsible-card-full {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header mobile fixes */
    header {
        padding: 0.875rem 0;
    }
    
    header nav {
        padding: 0 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.25rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
        min-width: auto;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Hero section */
    .hero-container {
        margin-top: 70px;
        padding: 2rem 1rem;
        gap: 2.5rem;
        min-height: auto;
    }
    
    .hero-text {
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .hero-visual {
        height: auto;
        min-height: 350px;
    }
    
    .stats-showcase {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-showcase-item {
        padding: 1.25rem 1rem;
    }
    
    .stat-showcase-number {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .stat-showcase-label {
        font-size: 0.75rem;
    }
    
    /* Sections padding */
    .features-section,
    .content-section-dark,
    .responsible-section,
    .content-page {
        padding: 2rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
    
    /* Stats bar */
    .stats-bar {
        padding: 2.5rem 1rem;
    }
    
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .stat-bar-item {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-bar-number {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .stat-bar-label {
        font-size: 0.8125rem;
    }
    
    /* Content sections */
    .content-wrapper-split {
        gap: 2rem;
    }
    
    .content-main p {
        font-size: 1rem;
    }
    
    .responsible-card-full {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .responsible-content-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .responsible-content-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .help-card {
        padding: 2rem 1.5rem;
    }
    
    .help-card h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .help-phone-large {
        font-size: 2rem;
        line-height: 1.2;
        margin: 1rem 0;
    }
    
    .help-link {
        font-size: 0.9375rem;
    }
    
    /* Footer */
    footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tools-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Content pages */
    .content-page {
        margin-top: 70px;
        padding: 2rem 1rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .page-header h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .page-content-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .content-section-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .content-section-item h2 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .content-section-item h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .content-section-item p {
        font-size: 0.9375rem;
    }
    
    .content-section-item ul,
    .content-section-item ol {
        font-size: 0.9375rem;
        padding-left: 1.5rem;
    }
    
    /* Modals mobile */
    .modal {
        padding: 0.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        margin: auto 1rem;
        border-radius: 20px;
        max-width: calc(100% - 2rem);
        width: 100%;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        padding-right: 2rem;
    }
    
    .modal-content > p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .form-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .form-group {
        gap: 0.5rem;
    }
    
    .form-group.row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-checkbox {
        gap: 0.625rem;
    }
    
    .form-checkbox label {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .form-message {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 0;
    }
    
    header nav {
        padding: 0 0.75rem;
        gap: 0.375rem;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .nav-buttons {
        gap: 0.375rem;
    }
    
    .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-container {
        margin-top: 65px;
        padding: 1.5rem 0.75rem;
        gap: 2rem;
    }
    
    .hero-text {
        gap: 1.25rem;
    }
    
    .hero-text h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-text p {
        font-size: 0.9375rem;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .stats-showcase {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .stat-showcase-item {
        padding: 1rem 0.75rem;
    }
    
    .stat-showcase-number {
        font-size: 1.5rem;
    }
    
    .stat-showcase-label {
        font-size: 0.6875rem;
    }
    
    .features-section,
    .content-section-dark,
    .responsible-section,
    .content-page {
        padding: 1.5rem 0.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-header p {
        font-size: 0.875rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.125rem;
    }
    
    .feature-item p {
        font-size: 0.9375rem;
    }
    
    .stats-bar {
        padding: 2rem 0.75rem;
    }
    
    .stats-bar-grid {
        gap: 1rem;
    }
    
    .stat-bar-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-bar-number {
        font-size: 1.75rem;
    }
    
    .stat-bar-label {
        font-size: 0.75rem;
    }
    
    .content-main p {
        font-size: 0.9375rem;
    }
    
    .responsible-card-full {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .responsible-content-text h3 {
        font-size: 1.25rem;
    }
    
    .responsible-content-text p {
        font-size: 0.9375rem;
    }
    
    .help-card {
        padding: 1.5rem 1rem;
    }
    
    .help-card h4 {
        font-size: 1.125rem;
    }
    
    .help-phone-large {
        font-size: 1.75rem;
    }
    
    .tools-list {
        gap: 0.625rem;
    }
    
    .tools-list li {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    footer {
        padding: 2rem 0.75rem 1.5rem;
    }
    
    .footer-wrapper {
        gap: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.875rem;
    }
    
    .footer-column h4 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a,
    .footer-column span {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8125rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-content h2 {
        font-size: 1.375rem;
    }
    
    .modal-content > p {
        font-size: 0.8125rem;
    }
    
    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-label {
        font-size: 0.75rem;
    }
    
    .form-checkbox label {
        font-size: 0.75rem;
    }
    
    .page-content-card {
        padding: 1.25rem 0.75rem;
    }
    
    .content-section-item h2 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    
    .content-section-item h3 {
        font-size: 1.125rem;
    }
    
    .content-section-item p {
        font-size: 0.875rem;
    }
}

/* Content Pages Styles */
.content-page {
    margin-top: 80px;
    padding: 4rem 3rem;
    min-height: calc(100vh - 80px);
    background: var(--bg-dark);
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
}

.content-section-item {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.content-section-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-section-item h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-primary);
}

.content-section-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.content-section-item p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-section-item ul,
.content-section-item ol {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section-item li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.content-section-item li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-section-item a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-section-item a:hover {
    border-bottom-color: var(--accent-primary);
}

.info-box {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-primary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 0;
}

.info-box p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.page-footer-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.page-footer-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.page-footer-info strong {
    color: var(--text-secondary);
}

/* Utility */
.hidden {
    display: none !important;
}
