/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

/* Layout Archetype: Stacked Sections Flow */
/* Vertical blocks with alternating backgrounds and rhythm variation */

/* Navigation - Floating Style */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5490;
}

/* Stacked Sections - Core Layout Pattern */
.stacked-dark {
    background: linear-gradient(135deg, #1a5490 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.stacked-light {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.stacked-accent {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
    padding: 4.5rem 2rem;
}

/* Content Containers - Varied Widths */
.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Typography - Varied Hierarchy */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

.light-text {
    color: #ffffff;
}

.large-text {
    font-size: 1.3rem;
}

.subtitle-text {
    font-size: 1.15rem;
    opacity: 0.9;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: rgba(26, 84, 144, 0.85);
    width: 100%;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Split Content - Asymmetric Layout */
.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
}

.split-content .text-block {
    flex: 1.2;
}

.split-content .image-block {
    flex: 1;
}

.split-reverse {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-direction: row-reverse;
}

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

/* Insight Grid - Card-based */
.insight-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.insight-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.insight-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1rem;
}

/* Testimonials - Varied Layout */
.testimonial-layout {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.testimonial-main {
    flex: 2;
}

.testimonial-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-large {
    background: white;
    padding: 2.5rem;
    border-left: 5px solid #1a5490;
    border-radius: 8px;
    margin: 2rem 0;
}

.testimonial-large p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-large cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5490;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #1a5490 0%, #2c3e50 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Services Showcase */
.services-showcase {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.service-preview-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-preview-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-preview-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-top: 1rem;
}

/* Problem Visual - Stacked Cards */
.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 3rem;
    min-width: 60px;
}

/* Forms */
.form-container {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Benefits List */
.benefits-list {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.checkmark-list {
    list-style: none;
    margin-top: 1.5rem;
}

.checkmark-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.checkmark-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Buttons - Multiple CTA Styles */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-light,
.btn-urgent {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #1a5490;
    color: white;
}

.btn-primary:hover {
    background: #144172;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a5490;
    color: #1a5490;
}

.btn-outline:hover {
    background: #1a5490;
    color: white;
}

.btn-light {
    background: white;
    color: #1a5490;
}

.btn-light:hover {
    background: #f0f0f0;
}

.btn-urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-full {
    width: 100%;
}

.large-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.cta-primary {
    display: inline-block;
    background: white;
    color: #1a5490;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-inline {
    text-align: center;
    margin-top: 2.5rem;
}

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

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.service-card.featured {
    border: 3px solid #1a5490;
}

.service-header {
    background: #f8f9fa;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-badge {
    background: #1a5490;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-body {
    padding: 2rem;
}

.service-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-select-service {
    margin-top: 1.5rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5490;
    min-width: 80px;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

/* Results Stats */
.results-stats {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-large {
    text-align: center;
}

.result-context {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Comparison Layout */
.comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-point {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #1a5490;
}

/* Pricing Principles */
.pricing-principles {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.principle-item {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Comparison Guide */
.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.guide-item {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

/* Contact Layout */
.contact-layout {
    display: flex;
    gap: 4rem;
    margin: 2rem 0;
}

.contact-details {
    flex: 1;
}

.map-placeholder {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item a {
    color: #1a5490;
    text-decoration: none;
}

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

/* Directions Grid */
.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.direction-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
}

/* Thanks Page */
.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-number {
    background: #1a5490;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.service-summary {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-name-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 1rem;
}

.service-note {
    color: #666;
}

/* Resources Grid */
.resources-grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.resource-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Policy Pages */
.policy-header {
    padding: 4rem 2rem;
}

.policy-content {
    padding: 4rem 2rem;
}

.policy-content h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.policy-content h3 {
    margin-top: 2rem;
    color: #1a5490;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #1a5490;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.policy-content table th,
.policy-content table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.policy-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

.simple-list {
    list-style: disc;
    margin: 1.5rem 0 1.5rem 2rem;
}

.note-text {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.timing-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Page Header */
.page-header {
    padding: 6rem 2rem 4rem;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .split-content,
    .split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-grid,
    .services-showcase,
    .pricing-principles,
    .resources-grid {
        flex-direction: column;
    }

    .testimonial-layout,
    .contact-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .values-grid .value-card {
        flex: 1 1 100%;
    }

    .directions-grid .direction-item {
        flex: 1 1 100%;
    }

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

    .cta-group {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .stacked-dark,
    .stacked-light,
    .stacked-accent {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-light {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .large-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}
