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

:root {
    --primary: #1a3a5c;
    --secondary: #e8a430;
    --accent: #c73e1d;
    --dark: #0d1b2a;
    --light: #f7f9fc;
    --gray: #6b7280;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 40px 40px;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

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

.nav-menu a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ffffff10" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff08" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23ffffff05" stroke-width="0.5"/></svg>') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 60px 0;
}

.hero-badge {
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    max-width: 700px;
}

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

.hero-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232,164,48,0.4);
}

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

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

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

.btn-accent:hover {
    background: #a83216;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

/* Problem Section */
.problem-section {
    background: var(--white);
    position: relative;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.problem-content {
    flex: 1;
    min-width: 300px;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

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

.section-label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.problem-list {
    list-style: none;
    margin-top: 30px;
}

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

.problem-list li::before {
    content: '!';
    background: var(--accent);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

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

.story-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

.story-number {
    font-size: 6rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.story-image {
    flex: 1;
    background: var(--primary);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image svg {
    width: 150px;
    height: 150px;
    opacity: 0.5;
}

/* Trust Section */
.trust-section {
    background: var(--dark);
    color: var(--white);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.trust-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.trust-label {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-price {
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
}

.service-card p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Testimonials */
.testimonials-section {
    background: var(--light);
    position: relative;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
}

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

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

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

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

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
}

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

/* Urgency Section */
.urgency-section {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.urgency-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.urgency-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.timer-block {
    background: rgba(0,0,0,0.2);
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 80px;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.timer-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Form Section */
.form-section {
    background: var(--dark);
    color: var(--white);
}

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

.form-content {
    flex: 1;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    color: var(--dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

.sticky-cta p {
    color: var(--white);
    font-size: 1rem;
}

.sticky-cta .btn {
    padding: 12px 30px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

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

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

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

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

.footer-col a {
    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;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

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

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

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

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

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

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

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

/* About Page */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 150px 0 100px;
    color: var(--white);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
}

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

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: var(--primary);
    min-height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
}

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

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-details p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrap {
    flex: 1;
    background: var(--light);
    padding: 50px;
    border-radius: 25px;
}

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

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

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    border-left: 5px solid var(--secondary);
}

.inline-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 25px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
    .form-wrapper {
        flex-direction: column;
    }

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

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

    .story-item,
    .story-item:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

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

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

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

    .footer-links {
        justify-content: center;
    }

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

    .urgency-timer {
        flex-wrap: wrap;
    }

    .timer-block {
        min-width: 70px;
        padding: 15px;
    }

    .timer-number {
        font-size: 2rem;
    }

    .nav-menu {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .form-container {
        padding: 30px 20px;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 25px;
    }

    .service-header {
        flex-direction: column;
        gap: 15px;
    }
}
