:root {
    --primary: #1a1a2e;
    --secondary: #e94560;
    --accent: #f5a623;
    --light: #fafafa;
    --dark: #0f0f1a;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --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;
    line-height: 1.7;
    color: var(--primary);
    background: var(--white);
    font-size: 16px;
}

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

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

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-cta {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 20px 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

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

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    display: block;
}

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

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

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    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(--accent);
    color: var(--dark);
}

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

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* Editorial Sections */
.section-editorial {
    padding: 80px 20px;
}

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

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

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

.editorial-text {
    max-width: 760px;
    margin: 0 auto;
}

.editorial-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.editorial-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray);
}

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

.section-accent .editorial-text p {
    color: rgba(255,255,255,0.9);
}

.editorial-image {
    max-width: 900px;
    margin: 50px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.editorial-image img {
    width: 100%;
    display: block;
}

/* Split Layout */
.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.split-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.split-image {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.split-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 25px;
}

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

/* Cards */
.cards-section {
    padding: 100px 20px;
}

.cards-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.cards-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.cards-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.card {
    flex: 1 1 320px;
    max-width: 360px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.card-text {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto 30px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gray-light);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 40px auto;
    max-width: 760px;
}

.inline-cta-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.inline-cta-text p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Form */
.form-section {
    padding: 100px 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    color: var(--gray);
    text-align: center;
    margin-bottom: 35px;
}

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

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

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

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

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

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    flex: 1 1 250px;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-links {
    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(--secondary);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 400px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

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

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

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

.thanks-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

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

/* Policy Pages */
.policy-page {
    padding: 140px 20px 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin: 40px 0 15px;
    font-weight: 700;
}

.policy-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0 15px 25px;
    color: var(--gray);
}

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

/* About Page */
.about-hero {
    padding: 160px 20px 80px;
    background: var(--light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-text {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Stats */
.stats-section {
    padding: 80px 20px;
    background: var(--primary);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

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

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: var(--dark);
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
}

/* List Styles */
.check-list {
    list-style: none;
    margin: 25px 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--gray);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.section-dark .check-list li {
    color: rgba(255,255,255,0.85);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .split-content {
        padding: 40px 20px;
    }

    .split-image {
        min-height: 300px;
    }

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

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

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

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 130px 15px 60px;
    }

    .section-editorial {
        padding: 60px 15px;
    }

    .cards-section {
        padding: 60px 15px;
    }

    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
