:root {
    /* Цветовая схема Тетрада */
    --primary-color: #2e5bff; /* Основной синий */
    --primary-dark: #1a3cc1;
    --primary-light: #6a8fff;
    
    --secondary-color: #ff5e2e; /* Оранжевый */
    --secondary-dark: #e04a1c;
    --secondary-light: #ff8560;
    
    --tertiary-color: #2eff8d; /* Зеленый */
    --tertiary-dark: #1bc96a;
    --tertiary-light: #6fffae;
    
    --quaternary-color: #e62eff; /* Фиолетовый */
    --quaternary-dark: #c01bc9;
    --quaternary-light: #f26aff;
    
    --dark-color: #222232;
    --light-color: #f5f7fa;
    --mid-gray: #888899;
    --light-gray: #eaedf2;
    
    /* Тени */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    
    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Размеры */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-spacing: 5rem;
    --element-spacing: 1.5rem;
    
    /* Радиусы */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    padding-top: 0px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Контейнеры */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: 4rem 0;
}

/* Сетка и выравнивание */
.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

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

.space-between {
    justify-content: space-between;
}

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

/* Кнопки */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-align: center;
    box-shadow: 0 4px 6px rgba(46, 91, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(46, 91, 255, 0.3);
    color: white;
}

.btn:active {
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(255, 94, 46, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    box-shadow: 0 6px 12px rgba(255, 94, 46, 0.3);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 6px rgba(46, 255, 141, 0.2);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-dark);
    box-shadow: 0 6px 12px rgba(46, 255, 141, 0.3);
}

/* Формы */
input, select, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    transition: border var(--transition-fast);
    font-family: 'Source Sans Pro', sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
    margin-bottom: 0;
}

/* Заголовки секций */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Хедер */
.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: 0.8rem 0;
}

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

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary-color), var(--quaternary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-medium);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all var(--transition-medium);
}

/* Hero секция */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF; /* Всегда белый текст для читаемости */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Статистика */
.stats {
    background-color: white;
    padding: 4rem 0;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-lg);
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    transition: transform var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--quaternary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--mid-gray);
}

/* История */
.history {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.history-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.history-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.history-image img {
    transition: transform var(--transition-slow);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.history-image:hover img {
    transform: scale(1.05);
}

.history-text {
    flex: 1;
}

.history-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Проекты */
.projects {
    padding: 5rem 0;
    background-color: white;
}

.projects-carousel {
    margin: 3rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-medium);
}

.carousel-item {
    min-width: calc(100% / 3 - 2rem);
    flex: 1;
}

.card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.projects-cta {
    text-align: center;
    margin-top: 3rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.carousel-button:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Калькулятор */
.calculator {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.calculator-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.calculator-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.calculator-image img {
    transition: transform var(--transition-slow);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.calculator-text {
    flex: 1;
}

.calculator-text ul {
    margin-bottom: 1.5rem;
}

.calculator-form {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.calculator-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.calculator-form .form-group {
    margin-bottom: 0;
}

.calculator-form button {
    grid-column: span 2;
    margin-top: 1rem;
}

/* За кулисами */
.behind-scenes {
    padding: 5rem 0;
    background-color: white;
}

.scenes-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.scenes-video {
    flex: 3;
}

.video-placeholder {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: background var(--transition-medium);
}

.video-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--primary-color);
    margin-left: 5px;
}

.video-placeholder:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    color: var(--mid-gray);
}

.scenes-gallery {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.scenes-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Цены */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.pricing-card {
    height: 100%;
}

.pricing-card .card {
    height: 100%;
}

.pricing-note {
    margin-top: auto;
    font-style: italic;
    color: var(--mid-gray);
    font-size: 0.9rem;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Внешние ресурсы */
.external-resources {
    padding: 5rem 0;
    background-color: white;
}

.resources-content {
    margin-bottom: 3rem;
}

.resources-content > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.resource-card {
    height: 100%;
}

.resource-card .card-content {
    display: flex;
    flex-direction: column;
}

.resource-card a {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.resource-card a::after {
    content: '→';
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.resource-card a:hover::after {
    transform: translateX(5px);
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: white;
}

.accordion-header {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-medium);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Контакт */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-map {
    flex: 1;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Футер */
.footer {
    padding: 5rem 0 2rem;
    background: var(--dark-color);
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul {
    list-style: none;
    margin: 0;
}

.footer li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: var(--light-gray);
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--mid-gray);
    margin: 0;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-content {
    max-width: 600px;
    animation: fadeInUp 1s;
}

.success-icon {
    font-size: 5rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.success-content h1 {
    margin-bottom: 1.5rem;
}

.success-content p {
    margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
    padding-top: 100px; /* Отступ для хедера */
}

.privacy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.privacy-content h2, .terms-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content h3, .terms-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p, .terms-content p {
    margin-bottom: 1.5rem;
}

.privacy-content ul, .terms-content ul {
    margin-bottom: 1.5rem;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 91, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 91, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 91, 255, 0);
    }
}

/* Медиа запросы */
@media (max-width: 1200px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-models {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .history-content, .calculator-content, .scenes-content, .contact-content {
        flex-direction: column;
    }
    
    .history-image, .history-text, .calculator-image, .calculator-text {
        flex: none;
        width: 100%;
    }
    
    .scenes-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
    
    .calculator-form form {
        grid-template-columns: 1fr;
    }
    
    .calculator-form button {
        grid-column: span 1;
    }
    
    .carousel-item {
        min-width: calc(100% / 2 - 2rem);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .carousel-item {
        min-width: 100%;
    }
    
    .pricing-models, .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .scenes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-navigation, .footer-legal, .footer-social {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}