:root {
    --primary: #1a5f7a;
    --primary-dark: #134b5f;
    --secondary: #e07b39;
    --secondary-light: #f4a261;
    --accent: #2a9d8f;
    --text-dark: #1d1d1d;
    --text-muted: #5a5a5a;
    --bg-light: #fafafa;
    --bg-cream: #fdf8f3;
    --bg-blue: #e8f4f8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

a:hover {
    color: var(--secondary);
}

.ad-disclosure {
    background: var(--text-dark);
    color: var(--white);
    font-size: 12px;
    padding: 6px 0;
    text-align: center;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s ease;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,95,122,0.75) 0%, rgba(42,157,143,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

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

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

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-cream);
}

.section-blue {
    background: var(--bg-blue);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

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

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.85);
}

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

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

.split-content {
    flex: 1;
}

.split-media {
    flex: 1;
    background-color: var(--bg-blue);
    border-radius: var(--radius);
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.split-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 1 1 320px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img {
    height: 200px;
    background-color: var(--bg-blue);
    overflow: hidden;
}

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

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

.testimonial {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex: 1 1 340px;
    max-width: 400px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
}

.form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    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: var(--primary);
}

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

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

.form-submit .btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 36px;
}

.cta-inline {
    background: var(--bg-cream);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.cta-inline p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 24px;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

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

.footer-col p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    margin-left: 24px;
}

.footer-legal a:hover {
    color: var(--white);
}

.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 40px;
    border-left: 4px solid var(--secondary);
}

.references {
    margin-top: 40px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.references h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.references ol {
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--primary);
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-size: 1.5rem;
    margin: 40px 0 16px;
    color: var(--text-dark);
}

.content-page h3 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
}

.content-page p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.content-page ul {
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 8px;
}

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

.contact-info {
    flex: 1 1 300px;
}

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p {
    color: var(--text-muted);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    flex: 1 1 350px;
    transition: transform 0.3s ease;
}

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

.service-img {
    height: 220px;
    background-color: var(--bg-blue);
}

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

.service-body {
    padding: 32px;
}

.service-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
    color: var(--white);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.thanks-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.story-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.story-content p {
    margin-bottom: 28px;
    color: var(--text-muted);
}

.story-content strong {
    color: var(--text-dark);
}

.highlight-box {
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius);
    margin: 40px 0;
    border-left: 4px solid var(--secondary);
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.stat-item {
    flex: 1 1 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        display: none;
    }

    nav.active {
        display: flex;
    }

    .split {
        flex-direction: column;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 8px 12px;
    }

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