/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #121811;
    --light-orange: #F6BA65;
    --sky-blue: #7EC8E3;
    --text-light: #ffffff;
    --text-gray: #e8e8e8;
    --text-dim: #a1a1a1;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-green);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-green);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: var(--dark-green);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    padding: 10px 16px;
    border-radius: 6px;
    display: block;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.cta-nav {
    background: var(--light-orange) !important;
    color: var(--dark-green) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.cta-nav:hover {
    background: #ffca7a !important;
    color: var(--dark-green) !important;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--dark-green);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Scale hero graphics based on viewport width for consistent appearance */
.hero-image-left {
    position: absolute;
    bottom: 18vh;
    left: 3%;
    width: 50vw;
    max-width: 700px;
    min-width: 350px;
}

.hero-image-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-logo-right {
    position: absolute;
    top: 12vh;
    right: 15vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sun-animation {
    width: clamp(180px, 20vw, 280px);
    height: clamp(180px, 20vw, 280px);
    background: #F6BA65;
    border-radius: 50%;
    animation: sunPulse 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(246, 186, 101, 0.7), 0 0 100px rgba(246, 186, 101, 0.3);
    position: relative;
}

.sun-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: 
        linear-gradient(45deg, transparent 40%, rgba(246, 186, 101, 0.3) 48%, rgba(246, 186, 101, 0.4) 50%, rgba(246, 186, 101, 0.3) 52%, transparent 60%),
        linear-gradient(90deg, transparent 40%, rgba(246, 186, 101, 0.3) 48%, rgba(246, 186, 101, 0.4) 50%, rgba(246, 186, 101, 0.3) 52%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(246, 186, 101, 0.3) 48%, rgba(246, 186, 101, 0.4) 50%, rgba(246, 186, 101, 0.3) 52%, transparent 60%),
        linear-gradient(180deg, transparent 40%, rgba(246, 186, 101, 0.3) 48%, rgba(246, 186, 101, 0.4) 50%, rgba(246, 186, 101, 0.3) 52%, transparent 60%);
    animation: rotateRays 20s linear infinite;
    pointer-events: none;
    filter: blur(8px);
}

@keyframes rotateRays {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


@keyframes sunPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.hero-logo-fade {
    max-width: 300px;
    width: 80%;
    animation: logoFadeIn 2s ease-in-out 0.5s both;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 1000px;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--light-orange);
    text-shadow: 0 4px 30px rgba(246, 186, 101, 0.3);
    animation: fadeInUp 1s var(--transition-smooth);
}

.hero-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 1s var(--transition-smooth) 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s var(--transition-smooth) 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s var(--transition-smooth) 0.6s both;
}

.btn-primary {
    background: var(--light-orange);
    color: var(--dark-green);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}

.btn-primary:hover {
    background: #ffca7a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(246, 186, 101, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 16px 40px;
    border: 2px solid var(--text-light);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-green);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s var(--transition-smooth) 0.8s both;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--light-orange);
    border-bottom: 2px solid var(--light-orange);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights {
    padding: 120px 0;
    background: linear-gradient(to bottom, #F6BA65, #e5a854);
}

.section-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
    color: var(--dark-green);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.highlight-item {
    background: var(--dark-green);
    border-radius: 20px;
    border: 1px solid rgba(246, 186, 101, 0.3);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(18, 24, 17, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 300px;
}

.highlight-item:hover {
    border-color: var(--light-orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(18, 24, 17, 0.9);
}

.highlight-image {
    flex: 0 0 45%;
    min-width: 45%;
    overflow: hidden;
}

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

.highlight-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-orange);
}

.highlight-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .highlight-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .highlight-image {
        min-width: 100%;
        min-height: 200px;
    }
}

/* ===== LARGE FEATURE SECTIONS ===== */
.feature-large {
    padding: 200px 0;
    position: relative;
}

.feature-solar {
    background: linear-gradient(135deg, #0d100c 0%, #1a2219 100%);
}

.feature-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.feature-description {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-image {
    width: 100%;
}

.solar-panel-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ===== SCROLLING FEATURE SECTION ===== */
.feature-scroll {
    position: relative;
    background: linear-gradient(to bottom, #e5a854, #F6BA65);
}

.sticky-container {
    position: sticky;
    top: 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sticky-content {
    text-align: center;
}

.feature-title-sticky {
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark-green);
}

.scroll-content {
    position: relative;
    z-index: 2;
}

.scroll-panel {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-side h3 {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 20px;
    color: var(--dark-green);
}

.text-side p {
    font-size: clamp(16px, 2vw, 20px);
    color: #2a3a2e;
    line-height: 1.8;
}

.scroll-panel-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ===== DESIGN SECTION ===== */
.feature-design {
    background: var(--dark-green);
}

.feature-design .section-title {
    color: var(--light-orange);
}

.design-showcase {
    display: grid;
    gap: 60px;
}

.design-image-main {
    width: 100%;
    margin-bottom: 40px;
}

.design-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.design-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.design-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-orange);
}

.design-detail p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-section {
    padding: 150px 0;
    background: var(--dark-green);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--transition-smooth);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(246, 186, 101, 0.3);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.tech-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--light-orange);
}

.tech-card p {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ===== PERSONAS SECTION ===== */
.personas-section {
    padding: 150px 0;
    background: linear-gradient(to bottom, #F6BA65, #e5a854);
}

.personas-title {
    color: var(--dark-green) !important;
}

.personas-subtitle {
    text-align: center;
    color: var(--dark-green);
    font-size: clamp(16px, 2vw, 20px);
    margin-top: -60px;
    margin-bottom: 80px;
    opacity: 0.8;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Preview Cards for Main Page */
.persona-preview-card {
    background: var(--dark-green);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(18, 24, 17, 0.3);
    display: block;
}

.persona-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 24, 17, 0.4);
}

.persona-preview-card:hover .persona-preview-link {
    color: var(--light-orange);
}

.persona-preview-card:hover .persona-preview-image img {
    transform: scale(1.05);
}

.persona-preview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.persona-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}

.persona-preview-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3a2e 0%, #1a2219 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: var(--light-orange);
}

.persona-preview-content {
    padding: 25px;
}

.persona-preview-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.persona-preview-tagline {
    display: block;
    color: var(--light-orange);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
}

.persona-preview-role {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.persona-preview-link {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Personas Responsive */
@media (max-width: 1024px) {
    .personas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .persona-preview-image {
        height: 180px;
    }
}

@media (max-width: 800px) {
    .personas-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .personas-section {
        padding: 100px 0;
    }

    .personas-subtitle {
        margin-top: -40px;
        margin-bottom: 50px;
    }

    .persona-preview-image {
        height: 250px;
    }
}

/* ===== PERSONA FULL PAGE STYLES ===== */
.persona-page {
    min-height: 100vh;
    background: var(--dark-green);
    padding-top: 100px;
}

.persona-hero {
    padding: 60px 0;
    background: linear-gradient(to bottom, #F6BA65, #e5a854);
}

.persona-hero-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    align-items: center;
}

.persona-hero-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--dark-green);
    box-shadow: 0 10px 30px rgba(18, 24, 17, 0.3);
}

.persona-hero-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 700;
    color: var(--light-orange);
    border: 5px solid var(--dark-green);
}

.persona-hero-info h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.persona-hero-tagline {
    font-size: 24px;
    color: var(--dark-green);
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.persona-hero-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.persona-hero-details li {
    color: var(--dark-green);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.persona-hero-details li::before {
    content: "•";
    color: var(--dark-green);
    font-weight: bold;
}

.persona-main {
    padding: 80px 0;
}

.persona-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.persona-bio-section h2,
.persona-personality-section h2 {
    color: var(--light-orange);
    font-size: 28px;
    margin-bottom: 20px;
}

.persona-bio-section p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.persona-quote-large {
    background: rgba(246, 186, 101, 0.1);
    border-left: 4px solid var(--light-orange);
    padding: 30px 40px;
    border-radius: 0 16px 16px 0;
    margin: 40px 0;
}

.persona-quote-large p {
    color: var(--text-light);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.persona-quote-large .quote-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

.persona-personality-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(246, 186, 101, 0.2);
    height: fit-content;
}

.personality-traits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trait {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trait-label-left,
.trait-label-right {
    font-size: 12px;
    color: var(--text-dim);
    width: 80px;
}

.trait-label-left {
    text-align: right;
}

.trait-label-right {
    text-align: left;
}

.trait-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.trait-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(246, 186, 101, 0.3), var(--light-orange));
    border-radius: 5px;
    transition: width 0.8s ease;
}

.trait-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--dark-green);
    border: 2px solid var(--light-orange);
    border-radius: 50%;
}

.persona-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.persona-back-link:hover {
    color: var(--light-orange);
}

/* Persona Page Responsive */
@media (max-width: 900px) {
    .persona-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .persona-hero-image img,
    .persona-hero-placeholder {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .persona-hero-details {
        justify-content: center;
    }

    .persona-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .persona-hero-details {
        flex-direction: column;
        align-items: center;
    }

    .trait-label-left,
    .trait-label-right {
        width: 60px;
        font-size: 10px;
    }
}

/* ===== SPECS SECTION ===== */
.specs-section {
    padding: 150px 0;
    background: var(--dark-green);
}

.specs-section .section-title {
    color: var(--light-orange);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.spec-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--light-orange);
    border-bottom: 2px solid rgba(246, 186, 101, 0.3);
    padding-bottom: 15px;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.spec-label {
    color: var(--text-dim);
    font-size: 14px;
}

.spec-value {
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #1a2219 0%, #0d100c 100%);
}

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

.cta-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.6;
}

.pricing {
    margin-bottom: 40px;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 60px;
    border-radius: 20px;
    border: 2px solid rgba(246, 186, 101, 0.3);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--light-orange);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 20px 50px;
    font-size: 18px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.mini-feature .icon {
    color: var(--light-orange);
    font-weight: bold;
    font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0d09;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: var(--light-orange);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--light-orange);
}

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(246, 186, 101, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-dim);
    font-size: 18px;
    text-align: center;
    padding: 40px;
}

.image-placeholder.large {
    min-height: 600px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .feature-content-wrapper,
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-grid,
    .design-details {
        grid-template-columns: 1fr;
    }
}

/* When viewport gets too small for side-by-side hero layout */
@media (max-width: 900px) {
    /* Stack hero elements vertically */
    .hero-background {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px;
    }

    .hero-image-left {
        position: relative;
        bottom: auto;
        left: auto;
        width: 65%;
        max-width: 400px;
        min-width: 250px;
        order: 2;
    }

    .hero-logo-right {
        position: relative;
        top: auto;
        right: auto;
        order: 1;
        margin-bottom: 20px;
    }

    .sun-animation {
        width: 130px;
        height: 130px;
    }

    .hero-content {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(18, 24, 17, 0.98);
        width: 100%;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        display: flex;
    }

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

    .hamburger {
        display: flex;
    }

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

    .highlights-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        bottom: 60px;
        padding: 0 20px;
    }

    /* Mobile Highlights */
    .highlight-item {
        flex-direction: column;
    }

    .highlight-image {
        flex: 0 0 auto;
        min-width: 100%;
        min-height: 250px;
        max-width: 100%;
    }

    /* Mobile Feature Sections */
    .feature-large {
        padding: 80px 0;
    }

    /* Mobile Scroll Panels */
    .scroll-panel {
        min-height: auto;
        padding: 40px 0;
    }

    /* Mobile Design Section */
    .design-showcase {
        gap: 30px;
    }

    /* Mobile Specs */
    .specs-section {
        padding: 80px 0;
    }

    .specs-grid {
        gap: 40px;
    }
}

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

    .section-title {
        font-size: 32px;
    }

    .price-amount {
        font-size: 48px;
    }

    .container {
        padding: 0 15px;
    }

    .highlight-content {
        padding: 30px 20px;
    }

    .hero-image-left {
        max-width: 80%;
    }

    .sun-animation {
        width: 100px;
        height: 100px;
    }

    .sun-animation::before {
        width: 140px;
        height: 140px;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-background {
        flex-direction: row;
        padding: 100px 40px 150px;
        justify-content: space-around;
    }

    .hero-image-left {
        max-width: 40%;
        order: 1;
        margin-bottom: 0;
    }

    .hero-logo-right {
        order: 2;
        margin-bottom: 0;
    }

    .hero-content {
        bottom: 40px;
        padding: 0 20px;
    }

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

    .hero-description {
        font-size: 16px;
    }
}