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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B7355;
    --accent-color: #C5A572;
    --dark: #1A1A1A;
    --light: #F5F5F0;
    --white: #FFFFFF;
    --grey: #6B6B6B;
    --light-grey: #E8E8E8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

/* Floating Navigation - Asymmetric Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--dark);
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Hero Section - Asymmetric Layout */
.hero-asymmetric {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-offset-left {
    width: 45%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: grayscale(20%);
}

.hero-content-right {
    width: 50%;
    margin-left: auto;
    padding: 4rem 8% 4rem 3rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 200;
}

.hero-subtext {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border: none;
    transition: all 0.4s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Story Hook Section */
.story-hook {
    padding: 8rem 5%;
    background: var(--light);
}

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

.hook-text-narrow {
    text-align: left;
}

.hook-text-narrow h2 {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hook-text-narrow p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Insight Asymmetric Section */
.insight-asymmetric {
    padding: 6rem 5%;
}

.insight-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.insight-block-offset {
    width: 55%;
    padding-left: 5%;
}

.insight-block-offset h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.insight-block-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.insight-image-right {
    width: 40%;
}

.insight-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: -30px 30px 0 var(--accent-color);
}

/* Problem Amplification */
.problem-amplification {
    padding: 8rem 5%;
    background: var(--dark);
    color: var(--white);
}

.problem-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 300;
}

.problem-cards {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-color);
}

.problem-card.offset-down {
    margin-top: 4rem;
}

.problem-card h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.problem-card p {
    color: var(--light-grey);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Transformation Story */
.transformation-story {
    padding: 7rem 5%;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.story-text-left {
    width: 50%;
}

.story-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-text-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image-offset {
    width: 45%;
    position: relative;
}

.story-image-offset img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin-left: 3rem;
}

/* Testimonial Inline */
.testimonial-inline {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-large p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-large cite {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-style: normal;
}

/* Method Reveal */
.method-reveal {
    padding: 8rem 5%;
}

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

.method-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 300;
}

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

.step-item {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--light);
}

.step-item.step-offset {
    margin-left: 8rem;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--accent-color);
    font-family: 'Helvetica Neue', sans-serif;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Trust Elements */
.trust-elements {
    padding: 6rem 5%;
    background: var(--light);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-stat.offset-trust {
    margin-top: 3rem;
}

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 200;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: var(--grey);
    letter-spacing: 0.03em;
}

/* Benefit Reveal */
.benefit-reveal {
    padding: 8rem 5%;
}

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

.benefit-wrapper h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.benefit-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-main,
.benefit-secondary {
    padding: 3rem;
    border-left: 4px solid var(--primary-color);
}

.benefit-main {
    width: 65%;
    background: var(--light);
}

.benefit-secondary {
    width: 55%;
    margin-left: auto;
    background: var(--light-grey);
}

.benefit-secondary.offset-benefit {
    margin-right: 5%;
}

.benefit-main h3,
.benefit-secondary h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.benefit-main p,
.benefit-secondary p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Social Proof Scattered */
.social-proof-scattered {
    padding: 7rem 5%;
    background: var(--secondary-color);
}

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

.proof-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.proof-item:nth-child(2) {
    margin-left: auto;
}

.proof-item.offset-proof {
    margin-left: 15%;
}

.proof-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.proof-item span {
    font-size: 1rem;
    color: var(--grey);
}

/* Services Reveal */
.services-reveal {
    padding: 8rem 5%;
}

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

.services-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 5rem;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 0 0 calc(50% - 1.5rem);
    padding: 3rem;
    background: var(--light);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.service-card.offset-card {
    margin-top: 5rem;
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 3rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.badge-premium {
    position: absolute;
    top: -15px;
    right: 3rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
}

/* Urgency Section */
.urgency-section {
    padding: 6rem 5%;
    background: var(--accent-color);
}

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

.urgency-content h2 {
    color: var(--dark);
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.cta-urgency {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.25rem 3.5rem;
    background: var(--dark);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 5%;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.guarantee-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 5%;
    background: var(--light);
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-wrapper > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 3rem;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-grey);
    font-family: Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 4rem;
}

.footer-brand h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-brand p {
    color: var(--light-grey);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

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

.footer-links ul li a {
    color: var(--light-grey);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 2rem 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--secondary-color);
}

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

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

/* About Page Styles */
.about-hero {
    padding: 10rem 5% 5rem;
    background: var(--light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--grey);
}

.about-story {
    padding: 6rem 5%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-insight {
    padding: 5rem 5%;
    background: var(--primary-color);
}

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

.about-quote {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--white);
    font-style: italic;
    text-align: center;
    border: none;
    margin-bottom: 2rem;
}

.quote-author {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.about-mission {
    padding: 7rem 5%;
}

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

.mission-content h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.mission-grid {
    display: flex;
    gap: 3rem;
}

.mission-item {
    flex: 1;
    padding: 2.5rem;
    background: var(--light);
}

.mission-item h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.mission-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-team {
    padding: 7rem 5%;
    background: var(--light);
}

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

.team-container h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.team-grid {
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.member-image img:hover {
    filter: grayscale(0%);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey);
}

.about-values {
    padding: 7rem 5%;
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-wrapper h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.value-item {
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
    background: var(--light);
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta {
    padding: 6rem 5%;
    background: var(--secondary-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--white);
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

/* Services Page */
.services-hero {
    padding: 10rem 5% 5rem;
    background: var(--light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.services-hero-content p {
    font-size: 1.5rem;
    color: var(--grey);
}

.services-detailed {
    padding: 6rem 5%;
}

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

.service-detail {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    position: relative;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

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

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing-box {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light);
    text-align: center;
}

.price-large {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--grey);
}

.btn-service-detail {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background: var(--secondary-color);
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-faq {
    padding: 6rem 5%;
    background: var(--light);
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.faq-item {
    padding: 2rem;
    background: var(--white);
    border-left: 3px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

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

.services-final-cta {
    padding: 6rem 5%;
    background: var(--dark);
}

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

.final-cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.final-cta-content p {
    color: var(--light-grey);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
    padding: 10rem 5% 5rem;
    background: var(--light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

.contact-hero-content p {
    font-size: 1.5rem;
    color: var(--grey);
}

.contact-main {
    padding: 6rem 5%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

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

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--grey);
    font-style: italic;
    margin-top: 1rem;
}

.contact-form-side {
    flex: 1;
}

.contact-form-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.contact-page-form {
    background: var(--light);
    padding: 3rem;
}

.contact-additional {
    padding: 6rem 5%;
    background: var(--light);
}

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

.additional-container h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5%;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.thanks-message {
    font-size: 1.4rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light);
}

.thanks-details p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.thanks-next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.step-box {
    flex: 1;
    padding: 2rem;
    background: var(--light);
    text-align: center;
}

.step-num {
    display: block;
    font-size: 3rem;
    font-weight: 200;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-box p {
    font-size: 1rem;
    line-height: 1.7;
}

.thanks-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 8rem 5% 5rem;
}

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

.legal-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-date {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content-right {
        width: 55%;
        padding: 3rem 5% 3rem 2rem;
    }

    .hero-offset-left {
        width: 40%;
    }

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

    .insight-block-offset,
    .insight-image-right {
        width: 100%;
    }

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

    .problem-card.offset-down {
        margin-top: 0;
    }

    .story-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .story-text-left,
    .story-image-offset {
        width: 100%;
    }

    .story-image-offset img {
        margin-left: 0;
        height: 400px;
    }

    .step-item.step-offset {
        margin-left: 3rem;
    }

    .trust-grid {
        gap: 3rem;
    }

    .benefit-main,
    .benefit-secondary {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .service-card.offset-card {
        margin-top: 0;
    }

    .mission-grid,
    .team-grid {
        flex-direction: column;
    }

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

    .story-image {
        flex: 0 0 100%;
    }

    .service-detail {
        flex-direction: column;
        gap: 3rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 100%;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info-side {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 80px;
    }

    .hero-offset-left {
        position: static;
        width: 100%;
        transform: none;
    }

    .hero-visual img {
        height: 50vh;
    }

    .hero-content-right {
        width: 100%;
        padding: 3rem 5%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.15rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .method-steps {
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        padding: 2rem;
    }

    .step-item.step-offset {
        margin-left: 0;
    }

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

    .trust-stat.offset-trust {
        margin-top: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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