:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #ed8936;
    --secondary-light: #f6ad55;
    --dark: #1a202c;
    --gray-900: #171923;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
}

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

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

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

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

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

/* Ad Disclosure Banner */
.ad-disclosure {
    background: var(--gray-200);
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-300);
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    margin: 5px 0;
    transition: 0.3s;
}

/* Split Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
    background: var(--gray-100);
}

.hero-visual {
    flex: 1;
    background-color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

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

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

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

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

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--gray-100);
}

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

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

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

/* Split Layout Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    background-color: var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.split-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.split-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.split-text {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.feature-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 200px;
    background-color: var(--gray-300);
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.price-label {
    font-size: 14px;
    color: var(--gray-500);
}

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

.price-note {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 40px;
    counter-reset: step;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray-600);
    font-size: 15px;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 18px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gray-300);
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 64px 0;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-400);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-text {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background: var(--secondary-light);
}

/* Forms */
.form-section {
    background: var(--gray-100);
    padding: 96px 0;
}

.form-wrapper {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

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

.form-group .required {
    color: var(--secondary);
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 17px;
}

/* Contact Info */
.contact-split {
    display: flex;
    gap: 64px;
}

.contact-details {
    flex: 1;
}

.contact-map {
    flex: 1;
    background-color: var(--gray-300);
    border-radius: var(--radius-lg);
    min-height: 400px;
    overflow: hidden;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-content p {
    color: var(--gray-600);
    font-size: 15px;
}

/* About Page */
.about-hero {
    display: flex;
    min-height: 60vh;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
    background: var(--primary);
    color: var(--white);
}

.about-hero-visual {
    flex: 1;
    background-color: var(--gray-300);
    position: relative;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 480px;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.value-item h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--gray-600);
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--gray-300);
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-member span {
    color: var(--gray-500);
    font-size: 15px;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

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

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

.thanks-title {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-text {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.legal-header {
    background: var(--primary);
    padding: 64px 0;
    color: var(--white);
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 40px;
    font-weight: 700;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray-700);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--gray-700);
}

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

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 64px 0 32px;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 14px;
}

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

.footer-copy {
    font-size: 14px;
    color: var(--gray-500);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 15px;
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

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

.cookie-accept:hover {
    background: var(--secondary-light);
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
}

.cookie-reject:hover {
    border-color: var(--gray-400);
    color: var(--white);
}

/* Disclaimer */
.disclaimer-section {
    background: var(--gray-200);
    padding: 32px 0;
    border-top: 1px solid var(--gray-300);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split,
    .about-hero {
        flex-direction: column;
    }

    .hero-content,
    .about-hero-content {
        padding: 48px 24px;
    }

    .hero-visual,
    .about-hero-visual {
        min-height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .split-visual {
        min-height: 300px;
    }

    .form-wrapper,
    .contact-split {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 40px;
    }
}

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

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

    .nav-toggle {
        display: block;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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