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

/* Base Styles - Mobile First */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --success-color: #2ecc71;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.25rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.btn-accept:hover {
    background: #d63851;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

/* Header */
.header-minimal {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

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

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

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

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

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    padding: 1rem 0;
}

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

.nav-menu a {
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: var(--light-bg);
    opacity: 1;
}

/* Container Utilities */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.centered {
    text-align: center;
}

/* Hero Visual Dominant */
.hero-visual-dominant {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.75) 100%);
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem 1.25rem;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    color: var(--white);
}

.hero-content-narrow h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 680px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-story-intro {
    background: var(--light-bg);
    padding: 3.5rem 0;
}

.story-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.section-story-intro p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* Problem Amplification Section */
.section-problem-amplification {
    padding: 5rem 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.content-left h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-left p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.stat-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
}

/* CTA Inline */
.cta-inline-one {
    padding: 2rem 0;
    text-align: center;
}

.cta-link-underline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Insight Reveal Section */
.section-insight-reveal {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 0;
}

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

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

.insight-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
}

.insight-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Image Break Section */
.section-image-break {
    position: relative;
    padding: 0;
}

.section-image-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.25rem 1.5rem;
    color: var(--white);
}

.image-caption p {
    max-width: 960px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-style: italic;
}

/* Story Transformation */
.section-story-transformation {
    background: var(--light-bg);
    padding: 4rem 0;
}

.testimonial-large {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-color);
}

/* Method Breakdown */
.section-method-breakdown {
    padding: 5rem 0;
}

.centered-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.method-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    line-height: 1.7;
}

/* CTA Sticky Trigger */
.cta-sticky-trigger {
    background: var(--accent-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.cta-sticky-trigger h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 1;
}

/* Science Section */
.section-science-backing {
    background: var(--light-bg);
    padding: 5rem 0;
}

.science-header h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.science-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.science-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.science-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.science-item p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Testimonials Cascade */
.section-testimonials-cascade {
    padding: 5rem 0;
}

.testimonials-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-block {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

/* Urgency Section */
.section-urgency-reveal {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0;
}

.urgency-box {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.urgency-question {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--accent-color);
}

/* Pricing Section */
.section-pricing-reveal {
    padding: 5rem 0;
    background: var(--light-bg);
}

.pricing-header {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3.5rem;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 2rem 0;
}

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

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #d63851;
    transform: translateY(-2px);
}

/* Form Section */
.section-form-wrapper {
    padding: 5rem 0;
    background: var(--white);
}

.form-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-control,
.form-control-readonly {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-control-readonly {
    background: var(--light-bg);
    color: var(--gray);
    cursor: not-allowed;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final Push Section */
.section-final-push {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.section-final-push h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.section-final-push p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: var(--white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.sticky-cta-content span {
    font-weight: 600;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--white);
    color: var(--accent-color);
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* About Page Specific */
.about-story {
    padding: 4rem 0;
}

.story-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-science {
    background: var(--light-bg);
    padding: 5rem 0;
}

.section-title-centered {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
}

.science-pillars {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pillar {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.pillar-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pillar p {
    line-height: 1.7;
}

.about-principles {
    padding: 5rem 0;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.principle-item {
    display: flex;
    gap: 1.5rem;
}

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

.principle-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.principle-content p {
    line-height: 1.7;
}

.about-difference {
    background: var(--light-bg);
    padding: 5rem 0;
}

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

.diff-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.diff-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.diff-item p {
    line-height: 1.7;
}

.about-results {
    padding: 5rem 0;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.stat-big {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0;
}

.about-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Services Page Specific */
.services-intro {
    padding: 4rem 0;
    background: var(--light-bg);
}

.selection-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.guide-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guide-item p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.guide-recommendation {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.services-detailed {
    padding: 5rem 0;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light-bg);
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.featured-tag {
    background: var(--accent-color);
    color: var(--white);
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-block {
    margin-top: 2rem;
}

.service-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.services-guarantee {
    background: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.guarantee-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 1rem;
}

/* Contact Page Specific */
.contact-info-section {
    padding: 4rem 0;
}

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

.contact-info-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-box p {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: var(--accent-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.75rem;
}

.contact-faq {
    background: var(--light-bg);
    padding: 5rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 0;
}

.contact-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: var(--gray);
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 5rem 0 3rem;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-lead {
    font-size: 1.15rem;
    color: var(--gray);
    margin-top: 1rem;
}

.thanks-details {
    padding: 4rem 0;
    background: var(--light-bg);
}

.thanks-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

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

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    line-height: 1.7;
}

.selected-service-display {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.selected-service-display h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.service-name-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-next-steps {
    padding: 4rem 0;
}

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

.step-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-link {
    font-weight: 600;
    color: var(--accent-color);
}

.thanks-tip {
    background: var(--light-bg);
    padding: 4rem 0;
}

.tip-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.tip-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tip-box p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tip-box ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.tip-box ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 3rem;
    }

    .page-hero-simple h1 {
        font-size: 2.75rem;
    }

    .split-content {
        flex-direction: row;
        gap: 3rem;
    }

    .content-left,
    .content-right {
        flex: 1;
    }

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

    .insight-card {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .method-step {
        flex-direction: row;
        gap: 2rem;
    }

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

    .step-visual,
    .step-content {
        flex: 1;
    }

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

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

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

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

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

    .sticky-cta-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 1.5rem;
    }

    .nav-menu a {
        padding: 0;
    }

    .nav-menu a:hover {
        background: transparent;
    }

    .science-pillars {
        flex-direction: row;
    }

    .pillar {
        flex: 1;
    }

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

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

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

    .stat-item {
        flex: 1;
    }

    .selection-guide {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .service-block {
        flex-direction: row;
        gap: 3rem;
    }

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

    .service-image,
    .service-content {
        flex: 1;
    }

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

    .contact-info-box {
        flex: 1;
    }

    .next-steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content-narrow h1 {
        font-size: 3.5rem;
    }

    .insight-card {
        flex: 1 1 calc(33.333% - 1.67rem);
    }

    .science-item {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .pricing-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }
}