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

:root {
    /* Colors */
    --black-bg: #0B0B0B;
    --charcoal: #111111;
    --red-accent: #E0001A;
    --gray-light: #E6E6E6;
    --gray-mid: #8C8C8C;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --card-gap: 32px;
    --internal-padding: 28px;
    
    /* Border Radius */
    --radius-card: 20px;
    --radius-button: 16px;
    --radius-icon: 50%;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-bg);
    color: var(--gray-light);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 64px;
    text-align: center;
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red-accent);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 180px 0 var(--section-padding);
    background: linear-gradient(180deg, var(--black-bg) 0%, var(--charcoal) 100%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-mid);
    margin-bottom: 64px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--red-accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-mid);
}

/* Hero Graphic */
.hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* SVG Animations */
.doc-1 {
    animation: docFloat 3s ease-in-out infinite;
    transform-origin: center;
}

.doc-2 {
    animation: docFloat 3s ease-in-out infinite 0.3s;
    transform-origin: center;
}

.doc-3 {
    animation: docFloat 3s ease-in-out infinite 0.6s;
    transform-origin: center;
}

@keyframes docFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.doc-line {
    animation: lineDraw 2s ease-in-out infinite;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

@keyframes lineDraw {
    0% {
        stroke-dashoffset: 100;
    }
    50%, 100% {
        stroke-dashoffset: 0;
    }
}

.chart-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: chartDraw 2s ease-out forwards;
}

@keyframes chartDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.chart-dot {
    opacity: 0;
    animation: dotAppear 0.5s ease-out forwards;
}

.chart-dot-1 {
    animation-delay: 0.2s;
}

.chart-dot-2 {
    animation-delay: 0.4s;
}

.chart-dot-3 {
    animation-delay: 0.6s;
}

.chart-dot-4 {
    animation-delay: 0.8s;
}

.chart-dot-5 {
    animation-delay: 1s;
}

.chart-dot-6 {
    animation-delay: 1.2s;
    animation: dotAppear 0.5s ease-out forwards, dotPulse 2s ease-in-out infinite 1.7s;
}

@keyframes dotAppear {
    to {
        opacity: 1;
    }
}

@keyframes dotPulse {
    0%, 100% {
        r: 8;
        opacity: 1;
    }
    50% {
        r: 12;
        opacity: 0.8;
    }
}

.checkmark-circle {
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    animation: circleDraw 1s ease-out 0.5s forwards;
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.checkmark-path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkmarkDraw 0.8s ease-out 1.5s forwards;
}

@keyframes checkmarkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.arrow-path {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: arrowDraw 1.5s ease-out 0.8s forwards;
}

@keyframes arrowDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.block-1 {
    animation: blockGrow 1s ease-out 1.2s forwards;
    transform: scale(0);
    transform-origin: bottom;
}

.block-2 {
    animation: blockGrow 1s ease-out 1.4s forwards;
    transform: scale(0);
    transform-origin: bottom;
}

.block-3 {
    animation: blockGrow 1s ease-out 1.6s forwards, blockGlow 2s ease-in-out infinite 2.6s;
    transform: scale(0);
    transform-origin: bottom;
}

@keyframes blockGrow {
    to {
        transform: scale(1);
    }
}

@keyframes blockGlow {
    0%, 100% {
        stroke-opacity: 1;
    }
    50% {
        stroke-opacity: 0.6;
    }
}

.connect-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: connectDraw 1.5s ease-out 2s forwards;
}

.connect-2 {
    animation-delay: 2.2s;
}

@keyframes connectDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: var(--radius-button);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background-color: #C00016;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 0, 26, 0.3);
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background-color: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--card-gap);
}

.service-card {
    background-color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: var(--internal-padding);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 26, 0.3);
}

.service-icon {
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-description {
    color: var(--gray-mid);
    font-size: 16px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--black-bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.section-title-left {
    text-align: left;
    margin-bottom: 48px;
}

.about-text {
    margin-bottom: 48px;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 24px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
}

.about-feature-text {
    flex: 1;
}

.about-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.about-feature-description {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.5;
}

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

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.about-stat-card {
    background-color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 26, 0.3);
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--red-accent);
    margin-bottom: 12px;
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.4;
}

/* Stages Section */
.stages {
    padding: var(--section-padding) 0;
    background-color: var(--charcoal);
}

.stages-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.stage-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.stage-item:last-child {
    margin-bottom: 0;
}

.stage-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--red-accent);
    min-width: 80px;
    line-height: 1;
}

.stage-content {
    flex: 1;
}

.stage-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--white);
}

.stage-description {
    color: var(--gray-mid);
    font-size: 18px;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding) 0;
    background-color: var(--charcoal);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--card-gap);
}

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

.benefit-icon {
    margin-bottom: 24px;
    display: inline-block;
}

.benefit-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.benefit-description {
    color: var(--gray-mid);
    font-size: 16px;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding) 0;
    background-color: var(--black-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--card-gap);
}

.review-card {
    background-color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: var(--internal-padding);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 26, 0.3);
}

.review-stars {
    color: var(--red-accent);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.review-author-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.review-author-position {
    color: var(--gray-mid);
    font-size: 14px;
}

/* Contacts Section */
.contacts {
    padding: var(--section-padding) 0;
    background-color: var(--charcoal);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-label {
    color: var(--gray-mid);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-value {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--red-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: var(--internal-padding);
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    background-color: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red-accent);
    background-color: rgba(17, 17, 17, 0.9);
}

.form-input::placeholder {
    color: var(--gray-mid);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 200, 0, 0.1);
    color: #4ade80;
    border: 1px solid rgba(0, 200, 0, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(224, 0, 26, 0.1);
    color: var(--red-accent);
    border: 1px solid rgba(224, 0, 26, 0.3);
}

/* Map */
.map-wrapper {
    margin-top: 64px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-mid);
}

.map-placeholder p {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 16px;
    color: var(--gray-mid);
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--red-accent);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #C00016;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 8px;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
    padding-right: 50px;
}

.modal-body {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body p strong {
    color: var(--white);
    font-weight: 700;
}

.modal-body ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.modal-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--gray-light);
}

.modal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red-accent);
    font-weight: bold;
    font-size: 20px;
}

.modal-date {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-mid);
    font-size: 14px;
}

/* Footer */
.footer-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    display: inline-block;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-logo img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    display: block;
}


.footer {
    background-color: var(--black-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gray-mid);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
}

.footer-legal {
    margin-left: auto;
    text-align: right;
}

.footer-legal p {
    margin-bottom: 8px;
    color: var(--gray-mid);
    font-size: 14px;
}

.footer-legal .privacy-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--gray-mid);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.footer-legal .privacy-link:hover {
    color: var(--red-accent);
    text-decoration-color: var(--red-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-mid);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.review-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-wrapper {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-wrapper {
        gap: 60px;
    }
    
    .section-title-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --card-gap: 24px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--charcoal);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        align-items: flex-start;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-graphic {
        order: -1;
    }
    
    .hero-illustration {
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stage-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .stage-number {
        min-width: auto;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-legal {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stage-title {
        font-size: 22px;
    }
    
    .service-title,
    .benefit-title {
        font-size: 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
    
    .modal-content {
        padding: 32px 24px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 28px;
        padding-right: 40px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
    }
    
    .footer-legal {
        text-align: center;
    }
}

