/* 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: #222;
    background: #fff;
}

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: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #444;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: #0066cc;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

/* Split Container - Core Archetype */
.split-container {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-split .split-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content {
    max-width: 550px;
}

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

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

.hero-split .split-right {
    padding: 0;
}

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

/* Buttons & CTAs */
.cta-primary {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #667eea;
    padding: 14px 32px;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #667eea;
    color: #fff;
}

.cta-large {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 20px 50px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

.trust-content {
    max-width: 500px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

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

.stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-card h3 {
    font-size: 56px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

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

/* Problem & Solution Sections */
.problem-section,
.solution-section {
    background: #fff;
}

.problem-content,
.solution-content {
    max-width: 520px;
}

.problem-content h2,
.solution-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.problem-content p,
.solution-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #667eea;
}

.feature p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Testimonials */
.testimonials-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
}

/* Services Preview */
.services-preview {
    padding: 90px 0;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #667eea;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 25px 0;
}

.btn-service {
    display: block;
    width: 100%;
    text-align: center;
    background: #667eea;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #5568d3;
}

/* Guarantee Section */
.guarantee-section {
    background: #f8f9fa;
}

.guarantee-content {
    max-width: 500px;
}

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

.guarantee-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Form Section */
.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-intro {
    margin-bottom: 35px;
}

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

.form-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox label {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    background: #667eea;
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

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

/* Footer */
.main-footer {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.sticky-btn {
    display: block;
    background: #667eea;
    color: #fff;
    padding: 16px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #667eea;
    color: #fff;
}

.btn-accept:hover {
    background: #5568d3;
}

.btn-reject {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Page Hero */
.page-hero {
    margin-top: 65px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Specific */
.about-story {
    background: #fff;
}

.story-content {
    max-width: 500px;
}

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

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.methodology-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.methodology-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.method-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-approach {
    background: #fff;
}

.approach-content {
    max-width: 520px;
}

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

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.values-section {
    padding: 90px 0;
    background: #1a1a1a;
    color: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.journey-section {
    background: #f8f9fa;
}

.journey-content {
    max-width: 520px;
}

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

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #667eea;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

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

.cta-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.service-info {
    flex: 1.2;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin: 15px 0;
}

.popular-badge {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 10px 0 20px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.service-includes {
    margin: 25px 0;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: disc;
    margin-left: 20px;
}

.service-includes ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-includes p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.btn-select {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.comparison-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.comparison-card h3 {
    font-size: 16px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.comparison-card p {
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.arrow {
    font-size: 28px;
    color: #667eea;
    margin: 15px 0;
}

.recommendation {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
}

.guarantee-box {
    padding: 80px 0;
    background: #667eea;
    color: #fff;
}

.guarantee-box-small {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.guarantee-box-small h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-box-small p {
    font-size: 17px;
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-block {
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667eea;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.info-item a {
    color: #667eea;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.map-note {
    font-size: 15px;
    color: #888;
}

.faq-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-contact h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #667eea;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Thanks Page */
.thanks-hero {
    margin-top: 65px;
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: #667eea;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.service-confirmation {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.service-selected {
    font-size: 16px;
}

.next-steps {
    padding: 90px 0;
    background: #fff;
}

.next-steps h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.while-waiting {
    background: #f8f9fa;
}

.waiting-content {
    max-width: 500px;
}

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

.waiting-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.waiting-links {
    list-style: disc;
    margin-left: 20px;
}

.waiting-links li {
    margin-bottom: 12px;
}

.waiting-links a {
    color: #667eea;
    font-size: 16px;
}

.waiting-links a:hover {
    text-decoration: underline;
}

.guarantee-reminder {
    padding: 80px 0;
    background: #fff;
}

.guarantee-reminder h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.guarantee-reminder p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.urgent-contact {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

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

.urgent-contact p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

.email-link {
    font-size: 22px;
    color: #667eea;
    font-weight: 600;
}

.email-link:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    margin-top: 65px;
    padding: 80px 0;
    background: #fff;
}

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

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #667eea;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-page ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.btn-reset {
    background: #667eea;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #5568d3;
}

.back-link {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.back-link a {
    color: #667eea;
    font-size: 16px;
}

.back-link a:hover {
    text-decoration: underline;
}

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .service-image img {
        height: 300px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

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

    .hero-content .lead {
        font-size: 16px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .thanks-hero h1 {
        font-size: 32px;
    }

    .stat-card h3 {
        font-size: 42px;
    }

    .service-split {
        padding: 30px 20px;
    }

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

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