/* Tiny Homes — Standalone Microsite CSS */
/* Exact replica of original style.css */

:root {
    --bg-color: #ffffff;
    --text-primary: #111111;
    --text-secondary: #666666;
    --section-gray: #f5f5f7;
    --accent-wood: #C19A6B;
    --accent-green: #2E7D32;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px !important; /* Override CMS 10px reset to restore browser default */
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--spacing-md);
}

/* Buttons — use higher specificity to override CMS .btn styles */
.hero .btn,
.models-section .btn,
.final-cta .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    max-width: none;
}

.hero .btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

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

.btn-primary-light {
    background-color: var(--bg-color);
    color: var(--text-primary);
}

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

.btn-cta-quote {
    background-color: #0071e3;
    color: #fff;
    border: none;
}

.btn-cta-quote:hover {
    background-color: #0077ED;
    transform: translateY(-2px);
}

.btn-cta-quote:active {
    background-color: #005bb5;
    transform: translateY(0);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.btn-outline-light {
    background: transparent;
    color: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.btn-outline-light:hover {
    background: var(--bg-color);
    color: var(--text-primary);
}

/* CMS style.css reset overrides — the CMS sets a, span, img { display: block } */
.navbar a,
.nav-links a,
.nav-links button,
.hero-buttons a,
.models-section a,
.specs li span,
.icon-item span,
.author {
    display: inline;
}

.hero-buttons a,
.nav-cta {
    display: inline-block;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.navbar.scrolled .logo-light {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

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

.nav-links a,
.nav-links button {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: normal;
    transition: opacity 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links button {
    color: var(--text-primary);
}

.nav-links a:hover,
.nav-links button:hover {
    opacity: 0.7;
}

.nav-cta {
    background: white;
    color: var(--text-primary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 0.9rem;
}

.navbar.scrolled .nav-cta {
    background: var(--text-primary);
    color: white;
}

/* Language Selector in Tiny Homes navbar */
.navbar .language-selector {
    margin-left: 0;
}

.navbar .lang-btn {
    font-size: 0.85rem;
    padding: 4px 8px;
    color: white;
    text-decoration: none;
}

.navbar .lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar .lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .lang-btn {
    color: var(--text-primary);
}

.navbar.scrolled .lang-btn.active {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.navbar.scrolled .lang-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    isolation: isolate; /* Create stacking context so z-index children stay within */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    animation: zoomOut 10s ease-out forwards;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

@keyframes zoomOut {
    to { transform: scale(1); }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease 0.5s both;
}

.hero-subtitle {
    color: #f0f0f0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 0 auto 2rem;
    animation: fadeUp 1s ease 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.9s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Reveal Section */
.reveal-section {
    background-color: var(--bg-color);
}

.feature-block {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing-xl) 5%;
    gap: 5%;
}

.feature-block.reverse {
    flex-direction: row-reverse;
    background-color: var(--section-gray);
}

.feature-block.center {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-title-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3rem;
    margin-bottom: 0.15rem;
    width: 48px;
    height: 48px;
}

@media (min-width: 601px) {
    .feature-title-icon {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 901px) {
    .feature-title-icon {
        width: 64px;
        height: 64px;
    }
}

@media (min-width: 1201px) {
    .feature-title-icon {
        width: 72px;
        height: 72px;
    }
}

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

.text-center p {
    margin: 0 auto 3rem;
}

.feature-image {
    flex: 1;
    height: 70vh;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Parallax effect on images */
.parallax-bg {
    background-attachment: fixed;
}

/* Timeline */
.timeline-placeholder {
    background-color: var(--section-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    width: 100%;
    max-width: 300px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.time-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.time-step span {
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px var(--section-gray);
    flex-shrink: 0;
}

.time-step p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Icons Row */
.icons-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.icon-item:hover .icon-circle {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-item span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Models Section */
.models-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--section-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    margin: 0 auto;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.model-card {
    background: var(--bg-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.specs li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: var(--text-primary);
    font-weight: 500;
}

.specs li span {
    color: var(--text-secondary);
    font-weight: 400;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Lifestyle Gallery */
.lifestyle-section {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 50vh 50vh;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    background-color: #333;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.gallery-item:hover::before {
    background: rgba(0,0,0,0.4);
}

.gallery-overlay {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 5%;
    text-align: center;
    background: var(--bg-color);
}

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

.quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: none;
}

.author {
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-xl) 5%;
    text-align: center;
    background-color: var(--text-primary);
    color: white;
}

.final-cta h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 3rem;
}


/* Scroll Animations — progressive enhancement: visible by default, JS hides then reveals */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
}

.scroll-ready .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-ready .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Version Badge — override CMS span { display: block } */
.version-badge span {
    display: inline;
}

/* Back to Top — matches home page style */
.back-to-top-tiny {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FF6B6B;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.25s ease;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-to-top-tiny.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-tiny:hover {
    background-color: hsla(218, 22%, 26%, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top-tiny:focus {
    outline: 2px solid #FF6B6B;
    outline-offset: 5px;
}

.back-to-top-tiny svg {
    transition: transform 0.15s ease;
}

.back-to-top-tiny:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top-tiny {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .back-to-top-tiny {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* Sustainability Section */
.sustainability-section {
    position: relative;
    padding: var(--spacing-xl) 5%;
    color: var(--text-primary);
    background-color: var(--bg-color);
    background-image: url('../assets/images/tiny-homes/hero_home_1772835656569.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 0;
}

.sustainability-section .section-header,
.sustainability-grid {
    position: relative;
    z-index: 1;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.sustainability-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sustainability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
}

.sustainability-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.sustainability-icon svg {
    width: 32px;
    height: 32px;
}

/* Land Preparation — forest green */
.sustainability-card:nth-child(1) .sustainability-icon {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
}
.sustainability-card:nth-child(1):hover .sustainability-icon {
    background: #2E7D32;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

/* Aluminum Structure — slate blue */
.sustainability-card:nth-child(2) .sustainability-icon {
    background: rgba(91, 110, 122, 0.1);
    color: #5B6E7A;
}
.sustainability-card:nth-child(2):hover .sustainability-icon {
    background: #5B6E7A;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

/* Comfort & Safety — warm amber */
.sustainability-card:nth-child(3) .sustainability-icon {
    background: rgba(212, 160, 23, 0.1);
    color: #D4A017;
}
.sustainability-card:nth-child(3):hover .sustainability-icon {
    background: #D4A017;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.sustainability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.sustainability-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Project Showcase (See It To Believe It) */
.project-showcase {
    padding: var(--spacing-xl) 5%;
    background-color: var(--section-gray);
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.showcase-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Comparison Table */
.comparison-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--section-gray);
}

.comparison-title {
    color: #4A86A8;
}

.comparison-card {
    max-width: 960px;
    margin: 0 auto;
    background: var(--bg-color);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-top: 4px solid #5BA3C9;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.comparison-table thead th {
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table .feature-col {
    color: var(--text-secondary);
    font-weight: 500;
    text-align: left;
    width: 30%;
}

.comparison-table .aluminum-col {
    background: #4A7A9B;
    color: white;
    width: 35%;
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    position: relative;
}

.comparison-table .wood-col {
    color: var(--text-secondary);
    font-weight: 500;
    width: 35%;
}

.comparison-table tbody td {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
    text-align: center;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-label {
    color: var(--text-primary);
    font-weight: 500;
    text-align: left;
}

.comparison-table .aluminum-value {
    background-color: rgba(74, 134, 168, 0.05);
}

.comparison-table tbody tr:last-child .aluminum-value {
    border-radius: 0 0 12px 12px;
}

.comparison-table .advantage {
    color: #4A86A8;
    font-weight: 600;
}

.comparison-table .wood-value {
    color: var(--text-secondary);
}

/* CMS override for comparison table spans */
.comparison-table span {
    display: inline;
}

/* Image Carousel Section */
.image-carousel-section {
    padding: 6rem 5%;
    background-color: #f8f8f8;
    overflow: hidden;
}

.image-carousel-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
}

.carousel-track-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--text-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev-btn {
    left: -25px;
}

.carousel-btn.next-btn {
    right: -25px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
}

.carousel-indicator {
    border: none;
    background: rgba(0,0,0,0.2);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.current-indicator {
    background: var(--text-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }
    .carousel-btn.prev-btn { left: 10px; }
    .carousel-btn.next-btn { right: 10px; }
}

/* Commitment Section */
.commitment-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

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

.commitment-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.commitment-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: none;
}

p.commitment-dream {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    color: var(--accent-green);
    margin-top: 2rem;
    max-width: none;
}

/* Build Your Dream Home Wizard */
.wizard-section {
    padding: 0;
    background-color: var(--section-gray);
}

.config-layout {
    display: flex;
    align-items: stretch;
}

/* Left side: Visual Preview */
.config-visual {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f2;
}

.preview-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-summary-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
}

.live-summary-overlay h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

#live-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#live-summary-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
}

#live-summary-list li::before {
    content: '•';
    color: var(--text-primary);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.live-summary-empty {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-style: italic;
}

/* Right side: Wizard Panel */
.wizard-container {
    flex: 1;
    background: var(--bg-color);
    padding: 4rem;
    max-width: none;
    width: auto;
    box-shadow: none;
    border-radius: 0;
    overflow-y: auto;
}

.wizard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wizard-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.wizard-progress {
    width: 100%;
    height: 8px;
    background: #eaeaea;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.wizard-section .progress-bar {
    height: 100%;
    background: var(--text-primary);
    border-radius: 4px;
    transition: width 0.4s ease;
}

#wizard-step-indicator {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: none;
}

.wizard-step {
    display: none;
    animation: wizardFadeIn 0.5s ease forwards;
}

.wizard-step.active {
    display: block;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.wizard-step h3 + .options-hint {
    margin-top: -0.75rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    cursor: pointer;
    display: block;
}

.option-card input {
    display: none;
}

.option-content {
    border: 2px solid transparent;
    background: var(--section-gray);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
}

.option-content .icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.option-content span {
    font-weight: 500;
    font-size: 0.95rem;
    display: inline;
}

.option-card:hover .option-content {
    background: #f0f0f2;
}

.option-card input:checked + .option-content {
    border-color: var(--text-primary);
    background: var(--bg-color);
    color: var(--text-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.notes-field {
    margin-bottom: 1.5rem;
}

.notes-field label,
.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.notes-field label {
    font-size: 0.85rem;
}

.options-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 1.25rem;
    font-style: italic;
    text-align: left;
}

.notes-field textarea,
.wizard-section .input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    background: var(--bg-color);
}

.notes-field textarea {
    min-height: 4.5rem;
    height: 4.5rem;
    resize: vertical;
    font-size: 0.85rem;
    overflow: hidden;
    field-sizing: content;
}

.notes-field textarea:focus,
.wizard-section .input-group input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

/* Override CMS .btn styles for wizard buttons */
.wizard-section .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    max-width: none;
}

.wizard-section .btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.wizard-section .btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.wizard-section .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.wizard-section .btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.wizard-section .btn-outline:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.final-desc {
    text-align: center;
    margin: 0 auto 2rem;
}

.summary-container {
    background: var(--section-gray);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
}

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

.summary-item strong {
    color: var(--text-primary);
    font-size: 0.88rem;
}

.summary-item span {
    color: var(--text-secondary);
    text-align: right;
    max-width: 60%;
    display: inline;
    font-size: 0.88rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-form input {
    font-size: 0.88rem;
}

/* Captcha Row */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.captcha-question {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.captcha-input {
    width: 80px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}

.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Wizard Toast Notification */
.wizard-toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    background: var(--text-primary);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.wizard-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.wizard-toast svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* GSP Features Section */
.gsp-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--section-gray);
}

/* GSP Comparison Table */
.gsp-comparison-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

p.gsp-comparison-outro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 3rem auto 0;
    text-align: left;
    font-weight: 500;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background-color 0.4s ease;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:not(.comp-header):hover {
    background-color: #fafafa;
}

.comp-cell {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comp-header .comp-cell {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.feature-cell {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    border-right: 1px solid rgba(0,0,0,0.06);
}

.feat-icon {
    font-size: 1.8rem;
    background: var(--section-gray);
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    transition: transform 0.4s ease;
}

.comp-row:hover .feat-icon {
    transform: scale(1.05);
}

.highlight-cell {
    background-color: rgba(245, 245, 247, 0.4);
    position: relative;
    border-right: 1px solid rgba(0,0,0,0.06);
}

.comp-header .highlight-cell {
    color: var(--text-primary);
    font-weight: 700;
    background-color: #f5f5f7;
}

.comp-header .highlight-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--text-primary);
}

.wood-cell {
    background-color: #ffffff;
}

.comp-cell p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    max-width: none;
}

.highlight-cell p {
    color: var(--text-primary);
    font-weight: 500;
}

.adv-indicator, .dis-indicator {
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.adv-indicator {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.dis-indicator {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.check-icon, .cross-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Lifestyles Section */
.lifestyles-container {
    max-width: 1200px;
    margin: 6rem auto;
}

.lifestyles-container .section-header {
    margin-bottom: 3.5rem;
}

.lifestyles-container .section-header h2 {
    margin-left: auto;
    margin-right: auto;
}

.lifestyles-container .section-header h2 .line {
    display: block;
    white-space: nowrap;
}

.lifestyles-container .section-header p {
    text-align: left;
    max-width: none;
}

.lifestyles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.lifestyle-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.lifestyle-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(255, 255, 255, 0.8);
}


.lifestyle-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.lifestyle-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

/* Smart Living — green tones */
.lifestyle-card:nth-child(1) .lifestyle-icon-wrapper {
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
}

.lifestyle-card:nth-child(1):hover .lifestyle-icon-wrapper {
    background: #2E7D32;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

/* Comfort Living — blue tones */
.lifestyle-card:nth-child(2) .lifestyle-icon-wrapper {
    background: rgba(74, 134, 168, 0.1);
    color: #4A86A8;
}

.lifestyle-card:nth-child(2):hover .lifestyle-icon-wrapper {
    background: #4A86A8;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

/* Signature Living — warm gold tones */
.lifestyle-card:nth-child(3) .lifestyle-icon-wrapper {
    background: rgba(193, 154, 107, 0.12);
    color: #A0784C;
}

.lifestyle-card:nth-child(3):hover .lifestyle-icon-wrapper {
    background: #A0784C;
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.lifestyle-tier {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}


.lifestyle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.lifestyle-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.lifestyle-outro {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: left;
    max-width: none;
}

/* GSP Sustainability & CTA */
.gsp-sustainability {
    max-width: 1000px;
    margin: 0 auto;
    background: #1b4332;
    color: white;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gsp-sustainability::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gsp-sus-content {
    position: relative;
    z-index: 1;
}

.gsp-sus-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.gsp-sus-content p {
    color: rgba(255,255,255,0.75);
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    max-width: 700px;
}

.sus-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin: 2rem auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    max-width: 700px;
    line-height: 1.6;
}

.gsp-cta {
    margin-top: 2rem;
    background: rgba(255,255,255,0.06);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.gsp-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.gsp-cta p {
    max-width: none;
}

.cta-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.cta-pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.cta-pillar svg {
    color: #4ade80;
    flex-shrink: 0;
}

.cta-pillar span {
    display: inline;
}

.btn-cta-sustainability {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    display: inline-block;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-sustainability:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .feature-block, .feature-block.reverse {
        flex-direction: column;
        padding: var(--spacing-lg) 5%;
        text-align: center;
        min-height: auto;
    }

    .feature-text {
        margin-bottom: 2rem;
    }

    .feature-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-image {
        width: 100%;
        height: 50vh;
        flex: none;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 40vh);
    }

    .navbar {
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid #eee;
    }
    .nav-links a,
    .nav-links button {
        color: var(--text-primary);
    }
    .logo-light {
        display: none;
    }
    .logo-dark {
        display: block;
    }
    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .navbar .language-selector {
        position: static;
        transform: none;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .navbar .lang-btn {
        color: var(--text-primary);
    }

    .navbar .lang-btn.active {
        background: var(--text-primary);
        color: white;
        border-color: var(--text-primary);
    }

    .navbar .lang-divider {
        color: rgba(0, 0, 0, 0.3);
    }

    .sustainability-section {
        padding: var(--spacing-lg) 5%;
        background-attachment: scroll;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .sustainability-card {
        padding: 2rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .showcase-image {
        height: 40vh;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .config-visual {
        display: none;
    }

    .wizard-container {
        padding: 2rem 1.5rem;
    }

    .wizard-header h2 {
        font-size: 1.6rem;
    }

    .wizard-step h3 {
        font-size: 1.4rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .notes-field textarea {
        min-height: 2.4rem;
        height: 2.4rem;
    }

    .option-content .icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .option-content {
        padding: 1rem 0.75rem;
        border-radius: 12px;
    }

    .option-content span {
        font-size: 0.82rem;
    }

    .comparison-section {
        padding: var(--spacing-lg) 3%;
    }

    .comparison-card {
        border-radius: 12px;
        padding: 1.5rem 1rem;
    }

    .comparison-table-wrapper {
        overflow-x: visible;
    }

    .comparison-table {
        table-layout: auto;
        min-width: 0;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.25rem;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .comparison-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .comparison-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.88rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .comparison-table tbody td:last-child {
        border-bottom: none;
    }

    .comparison-table tbody td.feature-label {
        background: var(--section-gray);
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .comparison-table tbody td.aluminum-value::before {
        content: 'Aluminum';
        font-weight: 600;
        font-size: 0.78rem;
        color: #4A86A8;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .comparison-table tbody td.wood-value::before {
        content: 'Wood';
        font-weight: 600;
        font-size: 0.78rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .comparison-table tbody td.aluminum-value {
        background-color: rgba(74, 134, 168, 0.04);
        border-radius: 0;
    }

    /* GSP Section mobile */
    .gsp-section {
        padding: var(--spacing-lg) 5%;
    }

    /* Comparison table mobile */
    .comp-row {
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
    }

    .comp-header {
        display: none;
    }

    .comp-cell {
        padding: 1.5rem 2.5rem;
        border-right: none;
    }

    .feature-cell {
        border-bottom: 1px solid rgba(0,0,0,0.06);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .highlight-cell::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-primary);
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background: none;
        height: auto;
        position: relative;
    }

    .wood-cell::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .highlight-cell {
        background-color: transparent;
        border-left: 4px solid var(--text-primary);
        padding-left: 2rem;
        margin-left: 2.5rem;
        margin-right: 2.5rem;
        margin-bottom: 1rem;
        border-radius: 0;
    }

    .wood-cell {
        padding-left: 2rem;
        margin-left: 2.5rem;
        margin-right: 2.5rem;
        border-left: 4px solid var(--section-gray);
        margin-top: 1rem;
    }

    .lifestyles-container {
        margin: 4rem auto;
    }

    .lifestyles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gsp-sustainability {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }

    .gsp-cta {
        padding: 2rem 1.5rem;
    }

    .cta-pillars {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
