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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-text);
    color: var(--color-background);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

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

.header-logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.header-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.header-email {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.theme-icon .sun-icon {
    display: block;
}

.theme-icon .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-icon .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-icon .moon-icon {
    display: block;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-surface);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://vsesvit-ai.ams3.cdn.digitaloceanspaces.com/files/6/9/0/6902951f69b98868629512.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(245, 245, 220, 0.85) 100%);
    z-index: -1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
}

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

.hero-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--color-surface);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.trust-item span {
    font-size: 0.875rem;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

/* Services Section */
.services-section {
    padding: 4rem 20px;
    background-color: var(--color-background);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.services-cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-surface);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.services-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.services-content {
    margin-top: 4rem;
}

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

.services-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.services-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.services-highlights {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    padding: 1.5rem;
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-secondary);
    border-radius: 4px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Process Section */
.process-section {
    padding: 4rem 20px;
    background-color: var(--color-surface);
}

.process-timeline {
    margin: 3rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: var(--color-border);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-icon {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.process-info {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-background);
    border-radius: 8px;
}

.info-card svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.info-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.info-card p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.process-benefits {
    display: grid;
    gap: 1rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--color-background);
    border-radius: 8px;
}

.benefit-item svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.benefit-item span {
    font-size: 0.9375rem;
    font-family: 'Arial', sans-serif;
}

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

/* Cases Section */
.cases-section {
    padding: 4rem 20px;
    background-color: var(--color-background);
}

.cases-slider {
    position: relative;
    margin: 3rem 0;
}

.cases-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cases-track::-webkit-scrollbar {
    display: none;
}

.case-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background-color: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.25rem;
}

.case-details {
    padding: 0 1.5rem 1.5rem;
}

.case-details h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1rem;
}

.case-details p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.case-quote {
    padding: 1.5rem;
    background-color: var(--color-background);
    border-left: 4px solid var(--color-secondary);
    margin: 1.5rem;
    font-style: italic;
}

.case-quote p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.case-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-surface);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.slider-prev {
    left: -24px;
}

.slider-next {
    right: -24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-surface);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-family: 'Arial', sans-serif;
}

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

/* Trust Section */
.trust-section {
    padding: 4rem 20px;
    background-color: var(--color-surface);
}

.trust-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1.5rem;
}

.trust-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.trust-text h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.trust-text p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.trust-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.trust-image img {
    width: 100%;
    height: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-background);
    border-radius: 8px;
    margin: 3rem 0;
}

.trust-badge svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.trust-badge strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.trust-badge p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

/* Contact Section */
.contact-section {
    padding: 4rem 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #FFFFFF;
}

.contact-section h2,
.contact-section .section-subtitle {
    color: #FFFFFF;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form-wrapper {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9375rem;
    font-family: 'Arial', sans-serif;
}

.required {
    color: var(--color-error);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--color-background);
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.privacy-link {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.trust-badge-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.trust-badge-small svg {
    flex-shrink: 0;
    color: var(--color-success);
}

.faq-wrapper {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
}

.faq-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-background);
    color: var(--color-text);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--color-border);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.seo-content {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

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

.seo-content h4 {
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.seo-highlights {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.seo-highlight {
    padding: 1.5rem;
    background-color: var(--color-background);
    border-left: 4px solid var(--color-secondary);
    border-radius: 4px;
}

.seo-highlight strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: var(--color-text);
}

.seo-highlight p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Footer */
footer {
    background-color: #2C2C2C;
    color: #E5E5E5;
}

.footer-main {
    padding: 3rem 20px 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-logo {
    margin-bottom: 1rem;
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: #B0B0B0;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E5E5E5;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #B0B0B0;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #B0B0B0;
    font-size: 0.9375rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-secondary);
}

.footer-contact a {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding: 2rem 20px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: #B0B0B0;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-link {
    color: #B0B0B0;
    font-size: 0.875rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #B0B0B0;
}

.badge-item svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.footer-cta {
    text-align: center;
    padding: 1.5rem 20px;
    border-top: 1px solid #404040;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: var(--color-surface);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
    margin: 0;
    color: var(--color-text);
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--color-background);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    color: var(--color-text);
}

/* Tablet Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .header-nav {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .hero-trust-indicators {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-layout {
        flex-direction: row;
    }

    .trust-content {
        flex: 1;
    }

    .trust-image {
        flex: 0 0 400px;
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-form-wrapper,
    .faq-wrapper {
        flex: 1;
    }

    .form-trust {
        flex-direction: row;
        justify-content: space-around;
    }

    .seo-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-badges {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .services-section,
    .process-section,
    .cases-section,
    .trust-section,
    .contact-section {
        padding: 6rem 40px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .case-card {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .cases-track {
        overflow-x: visible;
    }
}

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

.hero-content > * {
    animation: fadeIn 0.6s ease-out forwards;
}

.hero-content h1 {
    animation-delay: 0.1s;
}

.hero-content .hero-subtitle {
    animation-delay: 0.2s;
}

.hero-content .hero-cta {
    animation-delay: 0.3s;
}

.hero-content .hero-trust-indicators {
    animation-delay: 0.4s;
}

/* Print Styles */
@media print {
    header,
    .hero-cta,
    .services-cta,
    .process-cta,
    .cases-cta,
    .trust-cta,
    .contact-form,
    footer {
        display: none;
    }
}
