/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #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;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: #1a252f;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: #4a5568;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.logo:hover {
    color: #1d4ed8;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

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

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

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

.nav-menu li {
    padding: 0.75rem 1.25rem;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    display: block;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.btn-primary-large {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.btn-submit {
    background-color: #10b981;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover {
    background-color: #059669;
}

/* ========================================
   HERO SECTION - SPLIT SCREEN
   ======================================== */

.hero-split {
    padding: 3rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-text {
    padding: 2rem 0;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    width: 100%;
}

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

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 4rem 0;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero .hero-lead {
    color: #f3f4f6;
}

.problem-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.problem-section h2 {
    color: #dc2626;
    margin-bottom: 1.5rem;
}

/* ========================================
   SPLIT CONTAINER - ALTERNATING
   ======================================== */

.split-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 2rem;
}

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

.split-text {
    flex: 1;
    padding: 1rem 0;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-list {
    margin-top: 1.5rem;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    color: #4a5568;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    background-color: #1e293b;
    color: #ffffff;
    padding: 4rem 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.125rem;
    color: #cbd5e1;
}

/* ========================================
   SERVICES & CARDS
   ======================================== */

.services-preview,
.services-detailed {
    padding: 4rem 0;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card p {
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

/* ========================================
   DETAILED SERVICES
   ======================================== */

.service-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-full:last-child {
    border-bottom: none;
}

.service-full.reverse {
    flex-direction: column;
}

.service-content {
    flex: 2;
}

.service-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    list-style: disc;
    color: #4a5568;
}

.service-result {
    background-color: #f0fdf4;
    padding: 1rem 1.25rem;
    border-left: 4px solid #10b981;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.service-pricing {
    flex: 1;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.price-note {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ========================================
   PACKAGES
   ======================================== */

.packages-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.package-card.featured {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-card h3 {
    margin-bottom: 1.5rem;
}

.package-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.package-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.package-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.package-price {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0 0.5rem;
}

.package-saving {
    font-size: 0.9375rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

/* ========================================
   TRUST & TESTIMONIALS
   ======================================== */

.trust-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

blockquote {
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-style: normal;
    color: #6b7280;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */

.process-section {
    padding: 4rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #cbd5e1;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #f3f4f6;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.final-cta {
    background-color: #f9fafb;
    padding: 3rem 0;
}

.final-message {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a252f;
    text-align: center;
}

/* ========================================
   FORMS
   ======================================== */

.form-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #6b7280;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-info-section {
    padding: 4rem 0;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

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

.contact-block h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.contact-block a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-faq {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story {
    padding: 4rem 0;
}

.values-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.expertise-section {
    padding: 4rem 0;
}

.expertise-list {
    margin-top: 2rem;
}

.expertise-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.0625rem;
    color: #4a5568;
}

.expertise-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
    line-height: 1;
}

.mission-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #f0fdf4;
    padding: 1rem;
    border-radius: 6px;
    color: #047857;
}

.thanks-next {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-next ol {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.thanks-next li {
    padding: 0.5rem 0;
    list-style: decimal;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-info {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.resource-list {
    margin-top: 1.5rem;
}

.resource-list li {
    padding: 0.75rem 0;
}

.resource-list a {
    color: #2563eb;
    text-decoration: underline;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 4rem 0;
}

.legal-date {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    padding: 0.25rem 0;
    list-style: disc;
    color: #4a5568;
}

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

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.25rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: #cbd5e1;
    text-align: center;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #059669;
}

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

.btn-cookie-reject:hover {
    background-color: #334155;
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background-color: #10b981;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #1a252f;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col ul li {
    padding: 0.375rem 0;
}

.footer-col a {
    color: #cbd5e1;
    font-size: 0.9375rem;
}

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

.footer-col p {
    color: #cbd5e1;
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

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

    h2 {
        font-size: 2.25rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-text {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .split-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

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

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .service-full {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .packages-grid {
        flex-direction: row;
    }

    .package-card {
        flex: 1;
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .process-step {
        flex: calc(25% - 1.5rem);
    }

    .sticky-cta {
        display: block;
    }
}
