/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #1a1a1a;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
}

.cta-button-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-header:hover {
    background: #333333;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-icon {
    width: 28px;
    height: 28px;
    color: #1a1a1a;
}

.mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #FFC800;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: #FFC800;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.3);
}

.cta-button:hover {
    background: #FFD633;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.4);
}

/* Features Intro */
.features-intro {
    padding: 5rem 2rem 3rem;
    background: #ffffff;
}

.features-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description-center {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 3rem 2rem 5rem;
    background: #ffffff;
}

.feature-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-yellow {
    background: linear-gradient(135deg, #FFF4D6 0%, #FFE699 100%);
}

.feature-card-gray {
    background: #f8f7f4;
}

.feature-card-content {
    flex: 1;
    padding: 3rem;
    z-index: 2;
}

.feature-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1rem;
}

.feature-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.feature-card-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.feature-card.expanded .feature-card-description {
    max-height: 1000px;
}

.feature-card-button {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-card-button:hover {
    background: #333333;
    transform: translateX(5px);
}

.feature-card-visual {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.visual-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-card-visual-left {
    flex: 0 0 400px;
    overflow: hidden;
}

.feature-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Insights Section */
.insights-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.insights-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insights-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1rem;
}

.insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.insights-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.insight-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.insight-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.insight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.insight-icon svg {
    width: 36px;
    height: 36px;
}

.insight-icon-yellow {
    background: #FFC800;
    color: #1a1a1a;
}

.insight-item:hover .insight-icon {
    transform: scale(1.1) rotate(5deg);
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.insight-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* Data Analysis Section */
.data-section {
    padding: 5rem 2rem;
    background: #E8F5E9;
}

.data-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.data-visual {
    flex: 0 0 400px;
}

.data-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.data-content {
    flex: 1;
}

.data-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1rem;
}

.data-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.data-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Blog Section */
.blog-section {
    padding: 5rem 2rem;
    background: #FFF8E1;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.blog-content {
    flex: 1;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.blog-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-visual {
    flex: 0 0 500px;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.services-visual {
    flex: 0 0 450px;
}

.services-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-content {
    flex: 1;
}

.services-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1rem;
}

.services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Promise Section */
.promise-section {
    padding: 5rem 2rem;
    background: #F3E5F5;
}

.promise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.promise-content {
    flex: 1;
}

.promise-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666666;
    margin-bottom: 1rem;
}

.promise-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.promise-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.promise-visual {
    flex: 0 0 500px;
}

.promise-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.team-description {
    font-size: 1.1rem;
    color: #666666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    perspective: 1000px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 400px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-card-front {
    background: #ffffff;
}

.team-card-back {
    background: #FFC800;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.team-photo {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    background: #ffffff;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    color: #666666;
}

.team-bio {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.6;
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: #f8f7f4;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FFC800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666666;
}

/* Contacts Section */
.contacts-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contacts-description {
    font-size: 1.1rem;
    color: #666666;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.contact-info-block {
    background: #f8f7f4;
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #FFC800;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.map-container {
    margin-top: 2rem;
}

.contact-form-block {
    background: #f8f7f4;
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.required {
    color: #d32f2f;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFC800;
}

.form-input.error,
.form-textarea.error {
    border-color: #d32f2f;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-input {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FFC800;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.checkbox-label.error .checkbox-text {
    color: #d32f2f;
}

.link {
    color: #1a1a1a;
    text-decoration: underline;
}

.link:hover {
    color: #FFC800;
}

.form-submit {
    width: 100%;
    background: #FFC800;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #FFD633;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: #FFC800;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.9rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFC800;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: #FFC800;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transition: bottom 0.5s ease;
    z-index: 9999;
    border-top: 3px solid #FFC800;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-accept {
    background: #FFC800;
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: #FFD633;
}

.cookie-learn-more {
    background: #f0f0f0;
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-learn-more:hover {
    background: #e0e0e0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FFC800;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 200, 0, 0.4);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #FFD633;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 200, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .cta-button-header {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .feature-card-gray {
        flex-direction: column-reverse;
    }
    
    .feature-card-visual,
    .feature-card-visual-left {
        flex: 1;
        width: 100%;
    }
    
    .data-container,
    .blog-container,
    .services-container,
    .promise-container {
        flex-direction: column;
    }
    
    .data-visual,
    .blog-visual,
    .services-visual,
    .promise-visual {
        flex: 1;
        max-width: 100%;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title-center,
    .insights-title,
    .blog-title,
    .promise-title,
    .team-title,
    .contacts-title {
        font-size: 1.75rem;
    }
    
    .feature-card-content {
        padding: 2rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-accept,
    .cookie-learn-more {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .cookie-popup,
    .scroll-to-top,
    .site-header,
    .site-footer {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #FFC800;
    outline-offset: 2px;
}

/* ===========================
   Thank You Page
   =========================== */

.thank-section {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
}

.thank-container {
    max-width: 900px;
    margin: 0 auto;
}

.thank-content {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thank-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    background: #FFC800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.4);
}

.thank-icon svg {
    width: 40px;
    height: 40px;
}

.thank-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thank-description {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.thank-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-bottom: 2.75rem;
    text-align: left;
}

.thank-info-item {
    background: #f8f7f4;
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
}

.thank-info-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.thank-info-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thank-link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.thank-link:hover {
    color: #FFC800;
}

.thank-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* вторичная кнопка на сенкью */
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e5e5e5;
    background: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    border-color: #FFC800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* ===========================
   Quick Links Section
   =========================== */

.quick-links-section {
    padding: 3.5rem 2rem 4.5rem;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.quick-links-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-links-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: #f8f7f4;
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.quick-link-icon {
    width: 32px;
    height: 32px;
    color: #FFC800;
    margin-bottom: 0.25rem;
}

.quick-link-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.quick-link-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}


/* ===========================
   Thank You Page – Responsive
   =========================== */

@media (max-width: 768px) {
    .thank-section {
        padding: 3.5rem 1.5rem 3.5rem;
    }

    .thank-content {
        padding: 2.5rem 1.75rem;
        border-radius: 24px;
    }

    .thank-title {
        font-size: 1.75rem;
    }

    .thank-description {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }

    .thank-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thank-info-item {
        padding: 1.25rem 1.5rem;
    }

    .quick-links-section {
        padding: 3rem 1.5rem 3.5rem;
    }

    .quick-links-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .thank-content {
        padding: 2.25rem 1.5rem;
    }

    .thank-title {
        font-size: 1.6rem;
    }

    .thank-actions {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}
