/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #2563eb;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1e40af;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.logo:hover {
    color: #2563eb;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f3f4f6;
    color: #2563eb;
}

/* Hero Immersive */
.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1.5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?w=1600&h=900&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

/* Intro Hook Section */
.intro-hook {
    padding: 4rem 1.5rem;
    background: #fafafa;
}

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

.intro-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #374151;
    font-style: italic;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.intro-text-bold {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
}

/* Story Section */
.story-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 1.5rem;
    background: #1f2937;
    color: #ffffff;
}

.container-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title-dark {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: #d1d5db;
    line-height: 1.6;
}

.cta-inline {
    display: inline-block;
    color: #60a5fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem auto;
    text-align: center;
    width: 100%;
}

.cta-inline:hover {
    color: #93c5fd;
}

/* Insight Reveal */
.insight-reveal {
    padding: 5rem 1.5rem;
    background: #f9fafb;
}

.container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.insight-left img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.label-insight {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-right h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    margin: 1.5rem 0;
}

.insight-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #374151;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.insight-conclusion {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
}

/* Technique Deep Dive */
.technique-deep-dive {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.container-article {
    max-width: 750px;
    margin: 0 auto;
}

.container-article h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.container-article p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.technique-example {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.example-wrong {
    color: #ef4444;
    margin-bottom: 1rem;
}

.example-right {
    color: #10b981;
}

/* Trust Builder */
.trust-builder {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.container-testimony {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-large {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #1f2937;
    font-style: italic;
    padding: 2rem;
    border-left: 5px solid #2563eb;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
}

/* Technique Visual */
.technique-visual {
    padding: 5rem 1.5rem;
    background: #fefce8;
}

.container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.asym-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.asym-content p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.asym-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Benefit Showcase */
.benefit-showcase {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.section-title-accent {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.75rem;
    background: #f9fafb;
    border-radius: 8px;
    border-top: 3px solid #2563eb;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Story Continuation */
.story-continuation {
    padding: 5rem 1.5rem;
    background: #f3f4f6;
}

.story-continuation h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-continuation p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.advanced-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.advanced-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.advanced-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.conclusion-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
}

/* Services Reveal */
.services-reveal {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

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

.services-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.service-badge,
.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-level {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.65rem 0 0.65rem 1.8rem;
    position: relative;
    color: #374151;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-select {
    padding: 0.85rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Urgency Block */
.urgency-block {
    padding: 4rem 1.5rem;
    background: #7c3aed;
    color: #ffffff;
    text-align: center;
}

.container-urgency {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.urgency-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #7c3aed;
}

/* Social Proof */
.social-proof {
    padding: 5rem 1.5rem;
    background: #f9fafb;
}

.social-proof h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
}

.container-form h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

/* Final Thought */
.final-thought {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.final-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #1f2937;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    color: #ffffff;
}

/* Page Hero */
.page-hero {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-story {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.mission-section {
    padding: 5rem 1.5rem;
    background: #f9fafb;
}

.container-split-reverse {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mission-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.mission-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
}

.team-intro {
    padding: 5rem 1.5rem;
    background: #f3f4f6;
}

.team-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.results-showcase {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.results-showcase h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 5rem 1.5rem;
    background: #f9fafb;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

/* Services Page */
.services-detailed {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: #2563eb;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.service-detail-header {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-level-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detail-body {
    padding: 2rem;
}

.service-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-body h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.detail-list {
    list-style: none;
    margin: 1rem 0 2rem;
}

.detail-list li {
    padding: 0.65rem 0 0.65rem 1.8rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0 1.5rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.95rem;
    color: #6b7280;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-select-service:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.services-cta {
    padding: 4rem 1.5rem;
    background: #f9fafb;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.container-contact {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
}

.contact-note {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.contact-note p {
    color: #92400e;
    margin: 0;
}

.contact-map-placeholder {
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
}

.map-box {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.map-box p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.95rem;
    color: #6b7280;
}

.faq-section {
    padding: 5rem 1.5rem;
    background: #f9fafb;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.thanks-details {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-next-steps {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
    border-bottom: 1px solid #f3f4f6;
}

.steps-list li:last-child {
    border-bottom: none;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.9rem;
    background: #2563eb;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
}

.thanks-extra {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.thanks-extra h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-extra p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.extra-list {
    list-style: none;
    margin-top: 1.5rem;
}

.extra-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #374151;
}

.extra-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.container-policy {
    max-width: 850px;
    margin: 0 auto;
}

.container-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.policy-date {
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.container-policy h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.25rem;
    color: #1a1a1a;
}

.container-policy h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.container-policy p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.7;
}

.container-policy ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.container-policy ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f3f4f6;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4b5563;
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu.active {
        flex-direction: row;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
        color: #2563eb;
    }

    .hamburger {
        display: none;
    }

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-image {
        flex: 1;
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .insight-left {
        flex: 0 0 45%;
    }

    .insight-right {
        flex: 1;
    }

    .container-asymmetric {
        flex-direction: row-reverse;
        align-items: center;
    }

    .asym-content {
        flex: 1;
    }

    .asym-image {
        flex: 0 0 40%;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .problem-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }

    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .stats-row {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }

    .container-split-reverse {
        flex-direction: row;
        align-items: center;
    }

    .mission-text {
        flex: 1;
    }

    .mission-image {
        flex: 0 0 45%;
    }

    .container-contact {
        flex-direction: row;
    }

    .contact-info {
        flex: 0 0 40%;
    }

    .contact-map-placeholder {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary {
        flex: 0 0 auto;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
    }

    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
