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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cookie-accept {
    background: #10b981;
    color: white;
}

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

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

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 800px;
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: #1a202c;
}

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

.nav-menu a {
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a202c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.btn-sticky {
    background: #2563eb;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    display: inline-block;
}

.btn-sticky:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

/* Hero Overlay Section */
.hero-overlay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(99, 102, 241, 0.8)),
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1600&q=80') center/cover;
    z-index: -1;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

.btn-hero {
    background: white;
    color: #2563eb;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Content Story Section */
.content-story {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.story-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a202c;
    line-height: 1.2;
}

.story-container p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #4a5568;
}

.story-image {
    margin: 48px 0;
    border-radius: 12px;
    overflow: hidden;
}

.inline-cta {
    color: #2563eb;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 16px;
}

.inline-cta:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Problem Amplification Section */
.problem-amplification {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.content-centered h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.problem-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #60a5fa;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.problem-conclusion {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    padding: 24px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 12px;
}

/* Insight Reveal Section */
.insight-reveal {
    padding: 100px 20px;
    background: white;
}

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

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.insight-list {
    list-style: none;
    margin: 32px 0;
}

.insight-list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
}

.insight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 24px;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
}

/* Trust Building Section */
.trust-building {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

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

.content-wide h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
    font-size: 16px;
}

.trust-cta-block {
    text-align: center;
    margin-top: 48px;
}

.btn-trust {
    background: #2563eb;
    color: white;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-trust:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Methods Section */
.methods-section {
    padding: 100px 20px;
    background: white;
}

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

.methods-container h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.method-stacked {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.method-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.method-block.reverse {
    flex-direction: row-reverse;
}

.method-image {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.method-content {
    flex: 1;
    min-width: 300px;
}

.method-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.method-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.method-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.btn-method {
    background: #10b981;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
}

.btn-method:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Science Backing Section */
.science-backing {
    padding: 80px 20px;
    background: #1e293b;
    color: white;
}

.science-content {
    max-width: 1000px;
    margin: 0 auto;
}

.science-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.science-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

.science-note {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    font-style: italic;
    margin-top: 32px;
}

/* Benefits Cascade Section */
.benefits-cascade {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.benefits-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

/* Services Pricing Section */
.services-pricing {
    padding: 100px 20px;
    background: white;
}

.pricing-reveal {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-reveal h2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-color: #2563eb;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card.featured h3 {
    color: white;
}

.service-desc {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.85;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

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

.service-card.featured .service-features li::before {
    color: #60a5fa;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a202c;
}

.service-card.featured .service-price {
    color: white;
}

.btn-service {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.btn-service:hover {
    background: #1d4ed8;
}

.service-card.featured .btn-service {
    background: white;
    color: #2563eb;
}

.service-card.featured .btn-service:hover {
    background: #f1f5f9;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

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

.urgency-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 20px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 28px 0;
}

.btn-urgency {
    background: white;
    color: #dc2626;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
}

.btn-urgency:hover {
    background: #f1f5f9;
    transform: scale(1.05);
}

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

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

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-subtitle {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 48px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a202c;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    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;
}

.form-group textarea {
    resize: vertical;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.form-group-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Final Push Section */
.final-push {
    padding: 80px 20px;
    background: #1e293b;
    color: white;
}

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

.final-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.btn-final {
    background: #10b981;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}

.btn-final:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

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

.story-image-inline {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.values-section {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.values-container h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.team-section {
    padding: 80px 20px;
    background: white;
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.member-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
    text-align: center;
}

.member-image {
    border-radius: 50%;
    overflow: hidden;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.member-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a202c;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.technology-section {
    padding: 80px 20px;
    background: #f0f9ff;
}

.tech-content {
    max-width: 900px;
    margin: 0 auto;
}

.tech-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.tech-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.tech-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.tech-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.results-section {
    padding: 80px 20px;
    background: #1e293b;
    color: white;
}

.results-content {
    max-width: 1000px;
    margin: 0 auto;
}

.results-content h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}

.result-stat {
    text-align: center;
    min-width: 240px;
}

.stat-big {
    font-size: 64px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 12px;
}

.result-stat p {
    font-size: 17px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}

.btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-intro {
    padding: 60px 20px;
    background: white;
}

.services-detailed {
    padding: 60px 20px;
    background: #f9fafb;
}

.services-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #2563eb;
}

.badge-recommended {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.service-price-big {
    font-size: 40px;
    font-weight: 800;
    color: #60a5fa;
}

.service-body {
    padding: 40px;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.service-includes li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.service-note {
    background: #fef3c7;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 15px;
    color: #92400e;
}

.btn-service-page {
    background: #2563eb;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 24px;
}

.btn-service-page:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.comparison-section {
    padding: 80px 20px;
    background: white;
}

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

.comparison-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #1e293b;
    color: white;
}

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

.comparison-table th {
    font-weight: 700;
    font-size: 15px;
}

.comparison-table td {
    font-size: 14px;
    color: #4a5568;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.faq-section {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta-section {
    padding: 80px 20px;
    background: #f0f9ff;
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 20px;
    background: white;
}

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

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2563eb;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a202c;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
}

.map-note {
    margin-top: 12px;
    font-size: 14px;
    color: #4a5568;
    text-align: center;
}

.contact-faq {
    padding: 80px 20px;
    background: #f9fafb;
}

.team-contact {
    padding: 80px 20px;
    background: white;
}

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

.team-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-container > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 48px;
}

.team-emails {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-email-card {
    flex: 1;
    min-width: 260px;
    background: #f9fafb;
    padding: 28px;
    border-radius: 12px;
}

.team-email-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a202c;
}

.team-email-card .team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.team-email-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

.team-email-card a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

.emergency-info {
    padding: 60px 20px;
    background: #fef2f2;
}

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

.emergency-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #dc2626;
}

.emergency-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.emergency-content a {
    color: #dc2626;
    font-weight: 700;
    text-decoration: underline;
}

.emergency-note {
    font-size: 14px;
    background: #fee2e2;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    color: #991b1b;
}

.newsletter-section {
    padding: 60px 20px;
    background: #f0f9ff;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.newsletter-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 14px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #1d4ed8;
}

.newsletter-note {
    font-size: 13px;
    color: #6b7280;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-details {
    padding: 80px 20px;
    background: white;
}

.details-container {
    max-width: 900px;
    margin: 0 auto;
}

.details-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 48px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.selected-service-box {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.selected-service-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.selected-service-box p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-resources {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.resources-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.resources-container > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 48px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.resource-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-blog {
    padding: 80px 20px;
    background: white;
}

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

.blog-container h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.blog-container > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 48px;
}

.blog-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.blog-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 19px;
    font-weight: 700;
    padding: 20px 20px 8px;
    color: #1a202c;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    padding: 0 20px 20px;
}

.thanks-cta {
    padding: 60px 20px;
    background: #f0f9ff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.cta-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.btn-secondary {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1d4ed8;
}

.thanks-social {
    padding: 60px 20px;
    background: white;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.social-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
}

.social-note p {
    font-weight: 600;
    color: #2563eb;
}

/* Legal Page Styles */
.legal-page {
    padding: 140px 20px 80px;
    background: white;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a202c;
}

.legal-update {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-container ul {
    margin: 16px 0 16px 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow-x: auto;
    display: block;
}

.cookies-table table {
    width: 100%;
    min-width: 600px;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookies-table th {
    background: #f9fafb;
    font-weight: 700;
    font-size: 14px;
    color: #1a202c;
}

.cookies-table td {
    font-size: 14px;
    color: #4a5568;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        display: none;
        width: 90%;
        max-width: 300px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content-narrow h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .story-container h2,
    .content-centered h2,
    .pricing-reveal h2 {
        font-size: 32px;
    }

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

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

    .method-block,
    .method-block.reverse {
        flex-direction: column;
    }

    .science-stats,
    .results-stats {
        flex-direction: column;
        gap: 32px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .team-emails,
    .values-grid,
    .team-members {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table {
        font-size: 13px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content-narrow h1 {
        font-size: 28px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

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