:root {
    --primary: #1a5f7a;
    --secondary: #57c5b6;
    --accent: #159895;
    --dark: #002b5b;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --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', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

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

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

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
}

.mobile-nav.active {
    display: block;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="200" cy="200" r="150" fill="none" stroke="%2357c5b6" stroke-width="0.5" opacity="0.3"/><circle cx="200" cy="200" r="100" fill="none" stroke="%2357c5b6" stroke-width="0.5" opacity="0.2"/><circle cx="200" cy="200" r="50" fill="none" stroke="%2357c5b6" stroke-width="0.5" opacity="0.1"/></svg>') center/cover no-repeat;
    opacity: 0.5;
}

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

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

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.section {
    padding: 100px 0;
}

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

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

.section-gradient {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

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

.section-header h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

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

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

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

.problem-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    margin-bottom: 15px;
    color: #c0392b;
}

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

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

.solution-content {
    flex: 1;
}

.solution-content h2 {
    margin-bottom: 25px;
}

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

.solution-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
    font-weight: 700;
}

.solution-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.solution-visual {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

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

.feature-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.services-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

.service-content {
    flex: 1;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

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

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    padding-top: 30px;
}

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

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

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

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

.trust-numbers {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

.trust-item .number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.trust-item .label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.inline-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
    margin: 50px 0;
}

.inline-cta h3 {
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 25px;
}

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

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

.form-content {
    flex: 1;
}

.form-content h2 {
    margin-bottom: 20px;
}

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

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

.form-benefits li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-benefits li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--dark);
}

.form-container {
    flex: 1;
    max-width: 500px;
}

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

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

.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 #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-submit {
    width: 100%;
}

.urgency-bar {
    background: #c0392b;
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.urgency-bar span {
    color: #ffeb3b;
}

.faq-section .container-narrow {
    max-width: 800px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
}

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

.page-content h2 {
    margin: 40px 0 20px;
    color: var(--primary);
}

.page-content h3 {
    margin: 30px 0 15px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

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

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

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

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

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

.contact-text h4 {
    margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

.service-card-content {
    padding: 30px;
}

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

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

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

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

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

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-visual {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow-lg);
}

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

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

.team-avatar {
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.team-member h4 {
    margin-bottom: 5px;
}

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

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .form-wrap {
        flex-direction: column;
    }

    .form-container {
        max-width: 100%;
    }

    .about-story {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .trust-numbers {
        gap: 40px;
    }

    .service-item {
        flex-direction: column !important;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .footer-grid {
        gap: 40px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .btn {
        padding: 12px 24px;
    }

    .btn-large {
        padding: 14px 32px;
    }
}
