:root {
    --primary: #0a2f5c;
    --secondary: #1d6fa5;
    --accent: #f7a825;
    --dark: #0d1b2a;
    --light: #f4f7fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --success: #27ae60;
    --border: #dce4ec;
    --shadow: 0 4px 24px rgba(10, 47, 92, 0.08);
    --shadow-lg: 0 12px 48px rgba(10, 47, 92, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #e69a1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-desktop a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-mobile {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.split-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.split-left,
.split-right {
    flex: 1;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: var(--light);
}

.split-right {
    background: var(--white);
}

.hero {
    padding-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero .split-left {
    background: transparent;
    color: var(--white);
}

.hero .split-left h1 {
    color: var(--white);
}

.hero .split-left p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
}

.hero .split-right {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.section {
    padding: 80px 0;
}

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

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

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-split {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: column-reverse;
}

.feature-content {
    flex: 1;
    padding: 24px 0;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--dark);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image {
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--secondary);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--dark);
}

.benefit-text h4 {
    margin-bottom: 4px;
}

.benefit-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

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

.section-dark .stat-label {
    color: rgba(255,255,255,0.8);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 24px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

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

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

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #e69a1f 100%);
    padding: 48px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 48px 0;
}

.cta-banner h3 {
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(0,0,0,0.7);
    margin-bottom: 24px;
}

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

.cta-banner .btn:hover {
    background: var(--dark);
}

.form-section {
    background: var(--light);
    padding: 80px 20px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(29, 111, 165, 0.1);
}

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

.form-group select {
    appearance: none;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.cookie-content a {
    color: var(--accent);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    padding: 14px 24px;
}

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

.page-header h1 {
    color: var(--white);
}

.page-header p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 16px auto 0;
}

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

.page-content h2 {
    margin: 40px 0 20px;
}

.page-content h3 {
    margin: 32px 0 16px;
}

.page-content ul,
.page-content ol {
    margin: 16px 0 16px 24px;
}

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

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-box {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-details h4 {
    margin-bottom: 4px;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
}

.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: var(--light);
}

.thanks-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--text-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.step-content h4 {
    margin-bottom: 4px;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-avatar {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar span {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.team-info {
    padding: 24px;
}

.team-info h4 {
    margin-bottom: 4px;
}

.team-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 100%;
    max-width: 400px;
}

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

    .hamburger { display: none; }

    .nav-desktop {
        display: block;
    }

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

    .split-left,
    .split-right {
        padding: 80px 48px;
    }

    .feature-row {
        flex-direction: row;
    }

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

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

    .service-card {
        flex: 1;
        min-width: 300px;
        max-width: calc(50% - 12px);
    }

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

    .testimonial-card {
        flex: 1;
    }

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

    .footer-brand {
        max-width: 300px;
    }

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

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

    .contact-info-box {
        flex: 1;
    }

    .form-wrapper {
        padding: 48px;
    }

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

    .team-card {
        flex: 1;
    }

    .about-story {
        flex-direction: row;
        align-items: center;
    }

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

    .process-step {
        flex: 1;
        min-width: 200px;
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

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

    .service-card {
        max-width: calc(33.333% - 16px);
    }

    .split-left,
    .split-right {
        padding: 100px 64px;
    }
}
