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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 60px;
}

.hero-text-content {
    max-width: 500px;
}

.hero-text-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-text,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #ffffff;
    color: #2563eb;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #2563eb;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-primary-large {
    background: #2563eb;
    color: #ffffff;
    padding: 18px 45px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: #2563eb;
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: #1d4ed8;
}

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.btn-submit:hover {
    background: #1d4ed8;
}

/* Sections */
section {
    padding: 80px 0;
}

.intro-section {
    background: #f9fafb;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 15px;
}

/* Split Feature Sections */
.split-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.feature-content,
.feature-image {
    flex: 1;
}

.feature-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}

.feature-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Benefit List */
.benefit-list {
    margin: 25px 0;
    padding-left: 0;
}

.benefit-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #374151;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 20px;
}

/* Services Preview */
.services-preview {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border: 2px solid #2563eb;
}

.badge {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

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

/* Testimonials */
.testimonial-section {
    background: #1e293b;
    color: #ffffff;
}

.testimonial {
    text-align: center;
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

/* Value Props */
.value-props {
    background: #f9fafb;
}

.prop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.prop-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
}

.prop-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.prop-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #6b7280;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    background: #2563eb;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    display: inline-block;
}

.btn-sticky:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 25px;
    z-index: 1100;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-cookie.accept {
    background: #22c55e;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #16a34a;
}

.btn-cookie.reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #4b5563;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 100px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-info,
.service-visual {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #2563eb;
    margin: 20px 0;
}

.service-lead {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.checkmark-list {
    margin: 25px 0;
}

.checkmark-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #374151;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 18px;
}

.service-duration {
    margin-top: 25px;
    padding: 12px 20px;
    background: #f3f4f6;
    border-radius: 6px;
    font-weight: 600;
    color: #374151;
    display: inline-block;
}

.service-cta-box {
    margin-top: 25px;
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.service-cta-box p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #4b5563;
}

/* Comparison Note */
.comparison-note {
    background: #fef3c7;
    padding: 60px 0;
    text-align: center;
}

.comparison-note h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.comparison-note p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 25px;
}

/* Testimonials Grid */
.testimonials-grid {
    background: #f9fafb;
}

.testimonials-grid h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 14px;
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
}

/* About Page Styles */
.about-intro {
    text-align: center;
    background: #f9fafb;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f9fafb;
    padding: 35px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.stats-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    text-align: center;
}

.stats-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.story-section {
    padding: 80px 0;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-about {
    background: #f9fafb;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-icon {
    margin: 0 auto 25px;
    color: #2563eb;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-card a {
    color: #2563eb;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.contact-cta-section {
    background: #f9fafb;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 30px;
}

.location-section {
    padding: 80px 0;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 50px;
}

.location-details {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.location-image {
    flex: 1;
}

.location-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-directions {
    flex: 1;
}

.location-directions h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.directions-list {
    margin-bottom: 25px;
}

.directions-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.6;
}

.directions-list li:last-child {
    border-bottom: none;
}

.location-note {
    padding: 18px;
    background: #fef3c7;
    border-radius: 6px;
    font-size: 15px;
    color: #92400e;
}

.faq-contact {
    background: #f9fafb;
}

.faq-contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-hero {
    text-align: center;
    padding: 100px 20px 60px;
    margin-top: 70px;
}

.success-icon {
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    color: #6b7280;
}

.thanks-details {
    padding: 60px 0;
}

.thanks-box {
    background: #f9fafb;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.selected-service-display {
    background: #dbeafe;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.thanks-resources {
    background: #f9fafb;
    padding: 60px 0;
}

.thanks-resources h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-resources > p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 35px;
}

.resource-list {
    display: flex;
    gap: 30px;
}

.resource-item {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.resource-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.resource-item p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.6;
}

.thanks-support {
    padding: 60px 0;
    text-align: center;
}

.thanks-support h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-support p {
    font-size: 17px;
    color: #6b7280;
}

.thanks-support a {
    color: #2563eb;
    font-weight: 600;
}

.thanks-support a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0 80px;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section li {
    list-style: disc;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 60vh;
    }

    .split-feature,
    .split-feature.reverse,
    .service-split,
    .service-split.reverse {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-text-content h1 {
        font-size: 38px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero-left {
        padding: 40px 30px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2,
    .intro-section h2,
    .values-section h2,
    .story-section h2,
    .final-cta h2 {
        font-size: 30px;
    }

    .feature-content h3,
    .service-info h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 14px 22px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .price-large {
        font-size: 36px;
    }

    .stat-number {
        font-size: 38px;
    }
}
