:root {
    --primary: #1a5f7a;
    --primary-dark: #0d3d4d;
    --secondary: #57c4e5;
    --accent: #f4a261;
    --dark: #1c2833;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0;
}

.header-top {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.header-top a {
    color: var(--secondary);
}

.header-main {
    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(--accent);
}

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

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

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

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

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary);
    color: var(--white);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?w=1400&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

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

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 420px;
    background-color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: #e8955a;
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

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

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

/* Sections */
.section {
    padding: 100px 0;
}

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

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

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

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

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

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

/* Problem Section */
.problem-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.problem-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.problem-image {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 400px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

/* Trust Section */
.trust-grid {
    display: flex;
    gap: 40px;
    text-align: center;
}

.trust-item {
    flex: 1;
    padding: 40px 20px;
}

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

.trust-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-item p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

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

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

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

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

.testimonial-info h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

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

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

.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form */
.form-section {
    background: var(--light);
    padding: 100px 0;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.form-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 17px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dark);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.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 {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

/* Benefits */
.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.benefit-row:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.benefit-content p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.benefit-image {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 320px;
}

/* About */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 17px;
}

.about-image {
    flex: 1;
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background: var(--light);
    border-radius: var(--radius);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.value-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Contact */
.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-details li:last-child {
    border-bottom: none;
}

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

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

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

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

.contact-map {
    flex: 1;
    background: var(--gray-light);
    border-radius: var(--radius);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder {
    text-align: center;
    padding: 40px;
}

.contact-map-placeholder svg {
    width: 64px;
    height: 64px;
    fill: var(--gray);
    margin-bottom: 16px;
}

.contact-map-placeholder p {
    color: var(--gray);
}

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

.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;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 16px;
}

.thanks-service {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 32px 0;
}

.thanks-service h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main {
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 2;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-column ul a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

/* Cookie Banner */
.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.visible {
    display: block;
}

.cookie-content {
    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: 280px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: #e8955a;
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.legal-page h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--primary-dark);
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
    color: var(--gray);
}

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

/* Disclaimer */
.disclaimer {
    background: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 40px 0;
    font-size: 14px;
    color: var(--gray);
    border-left: 4px solid var(--accent);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
}

.sticky-cta a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .problem-grid,
    .form-wrapper,
    .benefit-row,
    .about-intro,
    .contact-wrapper,
    .footer-main {
        flex-direction: column;
    }

    .benefit-row:nth-child(even) {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 38px;
    }

    .trust-grid {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 45%;
    }

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

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

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

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

@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;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .trust-item {
        flex: 1 1 100%;
    }

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

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