:root {
    --primary: #1a2634;
    --secondary: #2d4a5e;
    --accent: #c9a227;
    --accent-hover: #a88420;
    --light: #f8f9fa;
    --dark: #0d1117;
    --text: #333;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.12);
    --gradient-dark: linear-gradient(135deg, #1a2634 0%, #2d4a5e 100%);
    --gradient-accent: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
}

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

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

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

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

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

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 38, 52, 0.97);
    z-index: 1000;
    padding: 0;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 180px 20px 100px;
    background: var(--gradient-dark);
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-editorial h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Article Intro */
.article-intro {
    padding: 80px 20px;
    background: #fff;
}

.article-intro .narrow-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drop-cap {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    font-weight: 700;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 8px;
}

.inline-quote {
    border-left: 4px solid var(--accent);
    padding: 25px 30px;
    background: rgba(201, 162, 39, 0.08);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 20px 0;
}

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

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

.split-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 38, 52, 0.3) 0%, rgba(45, 74, 94, 0.5) 100%);
}

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

.split-content h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.25;
}

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

/* Story Section */
.story-section {
    padding: 100px 20px;
    background: var(--light);
}

.story-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.story-main {
    flex: 2;
}

.story-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

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

.story-main p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.story-image {
    margin: 40px 0;
    position: relative;
}

.story-image img {
    width: 100%;
}

.story-image figcaption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 25px;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

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

.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-left: 4px solid var(--accent);
}

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

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

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

.author-info h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
}

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

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

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

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

.services-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: var(--light);
    padding: 40px 35px;
    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::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-hover);
}

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

.insights-flow {
    max-width: 800px;
    margin: 0 auto;
}

.insight-block {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.insight-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

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

.insight-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 20px;
    background: var(--gradient-accent);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
}

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

/* Form Styles */
.form-container {
    background: var(--light);
    padding: 45px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 1rem;
    color: var(--text);
    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: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 28px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.sticky-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

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

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

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

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

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

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

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

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

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

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

.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 {
    border-color: #fff;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: var(--light);
}

.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 35px;
}

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

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

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

.selected-service {
    background: #fff;
    padding: 20px 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
}

.selected-service span {
    color: var(--primary);
    font-weight: 600;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: var(--secondary);
}

/* About Page */
.page-hero {
    padding: 160px 20px 80px;
    background: var(--gradient-dark);
    text-align: center;
}

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

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 20px;
    background: #fff;
}

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

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

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

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

.about-image-placeholder {
    background: var(--gradient-dark);
    padding-top: 75%;
    position: relative;
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid var(--accent);
}

/* Policy Pages */
.policy-content {
    padding: 80px 20px;
    background: #fff;
}

.policy-content .narrow-container {
    max-width: 800px;
}

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

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

.policy-content p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1rem;
}

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

.policy-content li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    padding: 100px 40px;
}

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

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

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

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: var(--light);
}

.process-flow {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.5rem;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .story-sidebar {
        position: static;
    }

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

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

    .about-grid.reverse {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }
}

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

    .hero-editorial {
        padding: 140px 20px 70px;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .split-content {
        padding: 50px 25px;
    }

    .services-header h2,
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .testimonial-item {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }

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

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

    .insight-block {
        flex-direction: column;
        gap: 20px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.6rem;
    }

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

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