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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #00c896;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

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

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

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
    color: var(--bg-white);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #00a87a;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    width: calc(100% - 40px);
    box-shadow: var(--shadow-md);
    z-index: 9999;
    transition: var(--transition);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section - Immersive */
.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 76, 153, 0.75) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 0 30px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

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

.btn-sticky {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-sticky:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 200, 150, 0.4);
}

/* Narrative Intro Section */
.narrative-intro {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, var(--bg-white) 100%);
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-weight: 500;
}

.narrative-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    border-left: 5px solid var(--primary-color);
}

/* Problem Section - Split Layout */
.problem-section {
    padding: 120px 0;
    background-color: var(--bg-white);
}

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

.split-image,
.split-content {
    flex: 1 1 450px;
}

.split-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.problem-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 24px;
    background-color: #fff8e1;
    border-radius: 12px;
    margin-top: 30px;
}

/* Insight Reveal Section */
.insight-reveal {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--bg-white);
}

.reveal-box h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.insight-card {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.insight-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Inline CTA Blocks */
.inline-cta-block {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--bg-white);
}

.inline-cta-block h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.inline-cta-block.alternate {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.story-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-align: center;
}

.story-section > .container-narrow > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-medium);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.flow-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.flow-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flow-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonial-card-large {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.testimonial-card-large blockquote {
    flex: 1 1 400px;
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

.testimonial-card-large cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Trust Signals */
.trust-signals {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.trust-signals h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.trust-item {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trust-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.trust-item h3 {
    font-size: 1.5rem;
    padding: 24px 24px 12px;
    color: var(--text-dark);
}

.trust-item p {
    padding: 0 24px 24px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Benefit Reveal */
.benefit-reveal {
    padding: 120px 0;
    background-color: var(--bg-white);
}

.benefit-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 320px;
    max-width: 380px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.comparison-table {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
    color: var(--bg-white);
    font-weight: 700;
}

.comp-label,
.comp-traditional,
.comp-ai {
    flex: 1 1 200px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.comp-label {
    font-weight: 600;
    flex: 1 1 250px;
}

.comp-ai.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.pricing-reveal h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.price-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price-amount span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-medium);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.urgency-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 50px;
    border-radius: 20px;
    border-left: 6px solid #ff9800;
    box-shadow: var(--shadow-md);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.urgency-counter {
    font-size: 1.3rem;
    margin-top: 20px;
}

.urgency-counter strong {
    color: #ff5722;
    font-size: 1.5rem;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.guarantee-text {
    font-size: 1rem;
    margin-top: 30px;
    opacity: 0.8;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-submit,
.btn-select,
.btn-final {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-submit,
.btn-select {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.btn-submit:hover,
.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-final {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    font-size: 1.3rem;
    padding: 20px 50px;
}

.btn-final:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 200, 150, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0d0d0d 100%);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--bg-white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

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

/* Page Hero (for inner pages) */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 2.3rem;
    margin: 50px 0 24px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.mission-statement {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    margin: 40px 0;
}

.mission-statement p {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.styled-list {
    margin: 30px 0;
    padding-left: 20px;
}

.styled-list li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.tech-item {
    flex: 1 1 280px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.tech-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.tech-item p {
    font-size: 1.05rem;
}

.values-list {
    list-style: none;
    margin: 30px 0;
}

.values-list li {
    padding: 20px;
    margin-bottom: 16px;
    background-color: var(--bg-light);
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-list strong {
    color: var(--primary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

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

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-text ul {
    list-style: none;
    margin: 24px 0;
}

.service-text ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.service-ideal {
    font-weight: 600;
    color: var(--primary-color);
    padding: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    border-radius: 10px;
    margin: 30px 0;
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

.addon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.addon-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.addon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.addon-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Service Guarantee */
.service-guarantee {
    padding: 100px 0;
}

.service-guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.service-guarantee p {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.guarantee-cta {
    text-align: center;
    margin-top: 40px;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
}

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

.contact-details,
.contact-map {
    flex: 1 1 400px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.map-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* CTA Contact */
.cta-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Thanks Page */
.thanks-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-lg);
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.thanks-sub {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-content {
    padding: 80px 0;
}

.thanks-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.thanks-box h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00a87a 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.highlight-service {
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-info {
    margin-bottom: 50px;
}

.thanks-info h2 {
    font-size: 2.1rem;
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.info-list li:before {
    content: "ℹ️";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.thanks-cta {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.thanks-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

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

.thanks-support h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.thanks-support p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.support-hours {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Legal Page */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin: 30px 0 16px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background-color: var(--bg-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 20px 20px;
        gap: 10px;
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .container-split {
        gap: 40px;
    }

    .split-content h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .insight-reveal h2,
    .story-section h2,
    .trust-signals h2,
    .benefit-reveal h2,
    .comparison-section h2,
    .pricing-reveal h2 {
        font-size: 2rem;
    }

    .inline-cta-block h3 {
        font-size: 1.7rem;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .testimonial-card-large {
        padding: 30px;
    }

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

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

    .comp-label,
    .comp-traditional,
    .comp-ai {
        border-bottom: 1px solid var(--border-color);
    }

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

    .btn-sticky {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .urgency-box {
        padding: 30px 20px;
    }

    .thanks-box {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .price-amount {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-submit,
    .btn-final {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

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

section.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .cookie-banner,
    .floating-nav,
    .sticky-cta,
    .footer {
        display: none;
    }
}
