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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --light: #f8f9fa;
    --text: #2d3436;
    --text-light: #636e72;
    --gold: #d4a574;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* 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 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

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

/* Hero Editorial */
.hero-editorial {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 30px;
}

.hero-editorial h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.2;
    max-width: 900px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--accent);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-gold:hover {
    background: #c9956a;
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

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

.editorial-intro {
    background: var(--light);
}

.editorial-intro .narrow-container {
    text-align: center;
}

.editorial-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.editorial-intro p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.drop-cap {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
    color: var(--accent);
    font-weight: 700;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 25px;
}

.story-text:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--accent);
    font-weight: 700;
}

.inline-image {
    margin: 40px -100px;
    position: relative;
}

.inline-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.highlight-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.inline-cta {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 30px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 0 12px 12px 0;
}

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

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

/* Problem Section */
.problem-section {
    background: var(--primary);
    color: var(--white);
    padding: 100px 20px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background: var(--white);
}

.insight-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    position: relative;
}

.insight-image img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.insight-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.insight-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.insight-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.check-list {
    list-style: none;
    margin: 25px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text);
}

.check-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
}

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services/Pricing */
.services-section {
    padding: 100px 20px;
    background: var(--white);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card .price-period {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--gold);
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.pricing-card.featured .btn-primary {
    background: var(--gold);
    color: var(--primary);
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
}

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

.benefit-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

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

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: var(--primary);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.form-content {
    flex: 1;
    color: var(--white);
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
}

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

.form-guarantee p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    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(--accent);
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
}

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

.urgency-banner p {
    font-size: 1.1rem;
    font-weight: 600;
}

.urgency-banner span {
    background: var(--white);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 700;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sticky-cta-text h4 {
    font-size: 1rem;
    color: var(--primary);
}

.sticky-cta-text p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

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

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

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

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

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

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

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

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

.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 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

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

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

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

.cookie-inner p a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

.thanks-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
}

/* Page Headers */
.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

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

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

/* Content Pages */
.content-section {
    padding: 80px 20px;
}

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

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

.content-section p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

/* About Page */
.about-story {
    padding: 80px 20px;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

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

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

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

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

.contact-form-wrapper {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
}

/* Services Page */
.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--white);
    border: 1px solid #eee;
}

.service-detail-image {
    flex: 1;
    max-width: 300px;
}

.service-detail-image img {
    border-radius: 15px;
}

.service-detail-content {
    flex: 2;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .insight-wrapper,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .inline-image {
        margin: 40px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .sticky-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-grid {
        gap: 40px;
    }

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

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

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 15px 20px;
    }

    .hero-editorial {
        padding: 100px 15px 60px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 25px;
    }

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