/* Base Reset & Variables */
:root {
    --color-primary: #1a4d7c;
    --color-secondary: #e8a94a;
    --color-accent: #c23b3b;
    --color-dark: #1c2833;
    --color-light: #f4f6f9;
    --color-text: #2c3e50;
    --color-muted: #7f8c8d;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 32px 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: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    background: #fff;
}

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

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

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

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

.nav-toggle {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.nav-menu {
    position: absolute;
    top: 62px;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul {
    list-style: none;
    padding: 12px 0;
}

.nav-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

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

.hero-editorial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    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="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 60px;
    animation: float 40s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20%) rotate(360deg); }
}

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

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    color: #fff;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-editorial p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #d4982f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,169,74,0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

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

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

.btn-accent:hover {
    background: #a82f2f;
}

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

.btn-dark:hover {
    background: #0f1922;
}

/* Section Layouts */
.section {
    padding: 80px 20px;
}

.section-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.section-wide {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.section-gradient {
    background: linear-gradient(180deg, #fff 0%, var(--color-light) 100%);
}

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

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

.problem-card {
    flex: 1 1 280px;
    background: var(--color-light);
    padding: 36px;
    border-radius: 16px;
    border-left: 4px solid var(--color-accent);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

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

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

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

.problem-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

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

.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.story-image {
    flex: 1 1 400px;
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.story-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--color-secondary);
    border-radius: 20px;
    z-index: -1;
}

.story-content {
    flex: 1 1 400px;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.story-content p {
    margin-bottom: 18px;
    color: var(--color-text);
}

.story-highlight {
    background: linear-gradient(90deg, var(--color-secondary) 0%, transparent 100%);
    padding: 3px 0 3px 12px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--color-dark);
}

/* Insight Section */
.insight-section {
    background: var(--color-primary);
    padding: 80px 20px;
    text-align: center;
}

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

.insight-section h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.insight-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--color-light);
}

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

.services-header h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.services-header p {
    color: var(--color-muted);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 350px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 64px;
    height: 64px;
    fill: rgba(255,255,255,0.9);
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-body p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #fff;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    color: var(--color-muted);
    margin-top: 8px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2c3e50 100%);
}

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

.testimonials-header h2 {
    color: #fff;
    font-size: 2rem;
}

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

.testimonial-card {
    flex: 1 1 320px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

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

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: var(--color-light);
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

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

.benefits-header h2 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    align-items: flex-start;
}

.benefit-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.benefit-content p {
    color: var(--color-muted);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--color-muted);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(26,77,124,0.1);
}

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

.form-submit {
    text-align: center;
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

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

.sticky-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-cta p {
    font-weight: 600;
    color: var(--color-dark);
}

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

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

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

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

.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);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: #d4982f;
}

.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: 40px 20px;
    background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
}

.thanks-card {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-card h1 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--color-muted);
    margin-bottom: 12px;
}

.thanks-service {
    background: var(--color-light);
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.thanks-service strong {
    color: var(--color-primary);
}

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

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.content-wrapper p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.content-wrapper ul {
    margin: 16px 0 16px 24px;
}

.content-wrapper ul li {
    margin-bottom: 8px;
    color: var(--color-text);
}

/* About Page */
.about-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

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

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 280px;
    text-align: center;
    background: var(--color-light);
    padding: 40px;
    border-radius: 16px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.team-member h3 {
    margin-bottom: 8px;
    color: var(--color-dark);
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

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

.contact-form-wrap {
    flex: 2 1 400px;
}

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

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

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

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

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

/* Inline CTA */
.inline-cta {
    background: var(--color-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.inline-cta h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

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

/* Section CTA */
.section-cta {
    padding: 80px 20px;
    background: var(--color-primary);
    text-align: center;
}

.section-cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}

.section-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e5ec;
    padding: 24px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-top: 16px;
    color: var(--color-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 16px;
    }

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

    .story-wrapper,
    .about-hero,
    .contact-grid {
        flex-direction: column;
    }

    .story-image::after {
        display: none;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

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

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

    .thanks-card {
        padding: 40px 24px;
    }

    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
