:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-hover: #ff6b6b;
    --light: #f8f9fa;
    --dark: #0f0f23;
    --text: #2d3436;
    --text-light: #636e72;
    --gold: #d4af37;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.15);
}

* {
    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(--light);
}

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.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.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s;
}

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

.hero-editorial::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="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 800px;
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-meta {
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Article Body */
.article-body {
    padding: 80px 0;
}

.article-intro {
    font-size: 1.25rem;
    color: var(--text);
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin-bottom: 50px;
}

.article-text {
    margin-bottom: 35px;
    font-size: 1.1rem;
    color: var(--text);
}

.article-image {
    margin: 50px 0;
    position: relative;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
}

.article-image figcaption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.article-heading {
    font-size: 2rem;
    color: var(--primary);
    margin: 60px 0 25px;
    position: relative;
    padding-bottom: 15px;
}

.article-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.article-quote {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.article-quote p {
    font-size: 1.4rem;
    color: #fff;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.article-quote cite {
    display: block;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Inline CTA */
.inline-cta {
    background: var(--light);
    border: 2px solid var(--accent);
    padding: 35px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
}

.inline-cta h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}

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

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fff;
}

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

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

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.testimonial-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: #fff;
}

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

.problem-text {
    flex: 1 1 500px;
}

.problem-image {
    flex: 1 1 400px;
}

.problem-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
}

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

.problem-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

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

.problem-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Insight Section */
.insight-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.insight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.insight-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.insight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.insight-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.insight-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
}

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

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.benefit-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #fff;
}

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

.form-info {
    flex: 1 1 350px;
}

.form-container {
    flex: 1 1 450px;
    background: var(--light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
}

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

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

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

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    padding: 20px;
    text-align: center;
}

.urgency-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.urgency-text span {
    background: rgba(0,0,0,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 15px;
}

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

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

.sticky-cta p {
    color: #fff;
    font-size: 1rem;
}

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

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

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

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

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

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

.cookie-content {
    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 500px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

.thanks-content {
    text-align: center;
    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 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.thanks-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.thanks-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: inline-block;
}

.thanks-service span {
    color: var(--accent);
    font-weight: 600;
}

/* About Page */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.about-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

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

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

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

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

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
}

/* Contact Page */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.contact-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

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

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

.contact-info {
    flex: 1 1 350px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

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

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

/* Legal Pages */
.legal-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: #fff;
}

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

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

.legal-content h2:first-child {
    margin-top: 0;
}

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

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

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

/* Services Page */
.services-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.services-hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

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

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-image {
    flex: 1 1 400px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.service-detail h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

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

    .form-container {
        padding: 30px;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .article-heading {
        font-size: 1.5rem;
    }

    .container,
    .container-narrow {
        padding: 0 15px;
    }

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