:root {
    --primary: #1a5f7a;
    --primary-dark: #134559;
    --secondary: #e8a838;
    --accent: #f4511e;
    --bg-light: #f7f9fb;
    --bg-warm: #fff8f0;
    --bg-dark: #0d2b36;
    --text-main: #2c3e50;
    --text-light: #5a6d7e;
    --text-white: #ffffff;
    --border: #d1dce5;
    --shadow: rgba(26, 95, 122, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    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(--text-main);
    background: var(--text-white);
}

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

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

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

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

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="400" cy="300" r="250" fill="%231a5f7a" opacity="0.3"/><circle cx="600" cy="400" r="180" fill="%23e8a838" opacity="0.15"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.4;
}

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

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

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: none;
}

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

.btn-primary:hover {
    background: #d49430;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,168,56,0.4);
}

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

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

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

.btn-accent:hover {
    background: #d84315;
}

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

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

.section {
    padding: 90px 0;
}

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

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

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

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.75);
}

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

.text-center .section-subtitle {
    margin: 0 auto;
}

.mb-60 {
    margin-bottom: 60px;
}

.problem-section {
    position: relative;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
    border-left: 4px solid var(--accent);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

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

.story-section {
    position: relative;
    overflow: hidden;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px var(--shadow);
}

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

.story-text blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-dark);
    border-left: 4px solid var(--secondary);
    padding-left: 25px;
    margin: 30px 0;
}

.insight-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #d49430 100%);
    padding: 50px;
    border-radius: var(--radius-lg);
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.insight-box::before {
    content: '💡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.15;
}

.insight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-top: 10px;
}

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

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--text-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefit-content p {
    color: var(--text-light);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--text-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.service-body {
    padding: 30px;
}

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

.service-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

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

.testimonial {
    display: flex;
    gap: 30px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.cta-block {
    background: linear-gradient(135deg, var(--accent) 0%, #c62828 100%);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}

.urgency-banner {
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.form-section {
    position: relative;
}

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

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-info ul {
    list-style: none;
    margin-top: 30px;
}

.form-info li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-info li::before {
    content: '✓';
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-container {
    flex: 1;
    min-width: 320px;
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px var(--shadow);
}

.form-container h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-dark);
}

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

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

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

.sticky-cta p {
    color: var(--text-white);
    font-weight: 500;
}

footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--text-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(0,0,0,0.25);
    z-index: 10000;
    display: none;
}

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

.cookie-banner h4 {
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.cookie-buttons button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

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

.cookie-reject {
    background: var(--bg-light);
    color: var(--text-main);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

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

.content-page h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.content-page h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

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

.content-page ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
}

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

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius);
    margin: 30px 0;
    font-weight: 600;
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

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

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--text-white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    nav.active {
        transform: translateY(0);
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

    .testimonial-avatar {
        margin: 0 auto;
    }

    .cta-block {
        padding: 40px 25px;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .sticky-cta p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .form-container {
        padding: 25px;
    }
}
