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

:root {
    --primary-dark: #1a3d2e;
    --primary-green: #2d5f3f;
    --accent-green: #4a8c6a;
    --light-green: #e8f4ed;
    --charcoal: #2c3539;
    --warm-gray: #5a5f63;
    --soft-white: #f8f9fa;
    --off-white: #fefefe;
    --accent-gold: #d4a574;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-green);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--soft-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background: var(--accent-green);
}

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

.btn-cookie.reject:hover {
    background: var(--warm-gray);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-logo a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--charcoal);
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

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

.btn-sticky {
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(45, 95, 63, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 95, 63, 0.4);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 95, 63, 0.25);
}

.hero-visual-overlap {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 55%;
    max-width: 700px;
    z-index: 1;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-visual-overlap img {
    border-radius: 12px;
}

.intro-offset {
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.intro-narrow {
    flex: 1;
    min-width: 300px;
    padding-left: 8%;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.intro-wide-visual {
    flex: 1;
    min-width: 300px;
    transform: translateY(30px);
}

.intro-wide-visual img {
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.problem-amplification {
    padding: 5rem 2rem;
    background: var(--light-green);
}

.problem-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.problem-card.card-dark {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-20px);
}

.problem-card.card-light {
    background: white;
    transform: translateY(20px);
}

.problem-card.card-accent {
    background: var(--accent-green);
    color: white;
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem-card p {
    line-height: 1.7;
}

.insight-asymmetric {
    padding: 7rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.insight-image-left {
    flex: 0.9;
    min-width: 300px;
    transform: rotate(-2deg);
}

.insight-image-left img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.insight-content-right {
    flex: 1.1;
    min-width: 300px;
    padding-right: 5%;
}

.insight-content-right h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.2;
}

.insight-content-right p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.btn-inline {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.btn-inline:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.trust-elements {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    color: white;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.testimonial-asymmetric {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-offset-left,
.testimonial-offset-right {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: var(--soft-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
}

.testimonial-offset-left {
    transform: translateY(-30px);
}

.testimonial-offset-right {
    transform: translateY(30px);
}

blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--charcoal);
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.approach-section {
    padding: 7rem 2rem;
    background: var(--light-green);
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.approach-header p {
    font-size: 1.2rem;
    color: var(--warm-gray);
}

.approach-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-block {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.approach-block:nth-child(odd) {
    transform: translateY(20px);
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-green);
    margin-bottom: 1rem;
}

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

.approach-block p {
    color: var(--charcoal);
    line-height: 1.7;
}

.services-reveal {
    padding: 8rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--warm-gray);
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--accent-gold);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-section {
    padding: 7rem 2rem;
    background: var(--soft-white);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--warm-gray);
    font-size: 1.1rem;
}

.energy-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: white;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: white;
    transform: translateY(-2px);
}

.final-trust {
    padding: 7rem 2rem;
}

.final-trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.final-trust-content img {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.final-trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.3;
}

.final-trust-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.btn-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--accent-green);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.footer-asymmetric {
    background: var(--charcoal);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.page-hero-offset {
    padding: 10rem 2rem 5rem;
    background: var(--light-green);
}

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

.page-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 1.4rem;
    color: var(--warm-gray);
}

.about-story {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1.2;
    min-width: 300px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.story-image {
    flex: 0.8;
    min-width: 300px;
    transform: translateY(40px);
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.insight-block {
    padding: 5rem 2rem;
    background: var(--primary-dark);
    color: white;
}

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

.insight-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.insight-wrapper p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-philosophy {
    padding: 6rem 2rem;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--soft-white);
    border-radius: 8px;
    border-top: 4px solid var(--accent-green);
}

.philosophy-card:nth-child(2) {
    transform: translateY(30px);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.philosophy-card p {
    color: var(--charcoal);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--light-green);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--warm-gray);
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.values-asymmetric {
    padding: 6rem 2rem;
}

.values-offset {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-block {
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    border-left: 6px solid var(--accent-green);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.value-block:nth-child(2) {
    margin-left: 10%;
}

.value-block:nth-child(3) {
    margin-left: 5%;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.value-block p {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.timeline-section {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

.timeline-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.timeline-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    min-width: 100px;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--accent-green);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.timeline-content p {
    color: var(--charcoal);
}

.commitment-section {
    padding: 6rem 2rem;
    background: var(--primary-dark);
    color: white;
}

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

.commitment-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.commitment-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

.services-overview {
    padding: 5rem 2rem;
    background: var(--light-green);
}

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

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.overview-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
}

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

.service-detail.alternate {
    background: var(--soft-white);
}

.service-layout-left,
.service-layout-right {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-info {
    flex: 1.2;
    min-width: 300px;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.service-badge-inline {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.service-timeline {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 6px;
}

.service-timeline h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-timeline p {
    color: var(--charcoal);
    font-weight: 600;
}

.service-pricing-block {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--accent-green);
    text-align: center;
}

.service-price-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

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

.btn-service-cta {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-hero {
    padding: 10rem 2rem 5rem;
    background: var(--light-green);
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.4rem;
    color: var(--warm-gray);
}

.contact-content {
    padding: 6rem 2rem;
}

.contact-info-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-item p {
    color: var(--charcoal);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-green);
    border-radius: 6px;
}

.contact-note p {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.contact-map-placeholder img {
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    width: 100%;
}

.response-expectations {
    padding: 5rem 2rem;
    background: var(--soft-white);
}

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

.expectations-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

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

.expectation-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-top: 4px solid var(--accent-green);
}

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

.expectation-item p {
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-regions {
    padding: 5rem 2rem;
}

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

.regions-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.regions-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
}

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

.regions-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.regions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.5rem;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 5rem;
    background: var(--light-green);
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.4rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
}

.thanks-details {
    margin: 3rem 0;
}

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

.service-selected {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 600;
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.step-item p {
    color: var(--charcoal);
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-green);
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.thanks-resources {
    padding: 5rem 2rem;
}

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

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.resources-content p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.resources-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.legal-page {
    padding: 10rem 2rem 5rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.legal-updated {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        top: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        transform: none;
        margin-top: 3rem;
    }

    .problem-card {
        transform: none !important;
    }

    .approach-block {
        transform: none !important;
    }

    .testimonial-offset-left,
    .testimonial-offset-right {
        transform: none !important;
    }

    .story-image {
        transform: none !important;
    }

    .philosophy-card {
        transform: none !important;
    }

    .value-block {
        margin-left: 0 !important;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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