/*
Theme Name: Astra Smart Geysers
Theme URI: https://osei.co.za/
Author: Lead Loud Marketing
Author URI: https://leadloudmarketing.com/
Description: Custom WordPress theme for Astra Smart Geysers — solar geyser solutions
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: All Rights Reserved
Text Domain: astra-sg
*/

/* ================================================================
   FONTS — Self-hosted (deduplicated)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Space Grotesk';
    src: url('https://osei.co.za/wp-content/uploads/2026/03/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('https://osei.co.za/wp-content/uploads/2026/03/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('https://osei.co.za/wp-content/uploads/2026/03/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Oooh Baby';
    src: url('https://osei.co.za/wp-content/uploads/2026/03/OoohBaby-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

/* ================================================================
   DESIGN TOKENS
   ================================================================ */

:root {
    --text-dark:       #0A0A0A;
    --grad-left:       #D54231;
    --grad-right:      #ECBE4A;
    --grad-line-left:  #D64632;
    --grad-line-right: #EBBC49;
    --green-accent:    #3FC653;
    --green-bg:        #488C58;
    --green-light:     rgba(76, 199, 109, 0.077);
    --badge-orange-border: #DF7C3C;
    --badge-orange-text:   #DE733B;
    --social-orange:   #D95B36;
    --footer-bg:       #101010;
    --section-light:   #FCFAFA;
    --card-radius:     30px;
    --feature-radius:  20px;
}

/* ================================================================
   GLOBAL RESET
   ================================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================================
   NAVBAR
   ================================================================ */

.astra-nav-wrap {
    --gradient-start: #D54231;
    --gradient-end:   #ECBE4A;
    --active-color:   #DA5F37;
    --default-color:  #0A0A0A;
    --underline-h:    4px;

    width: 100%;
    background: #fff;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                 Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.astra-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 80px;
}

.astra-nav-collapse {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.astra-nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.astra-nav-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.astra-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.astra-nav-menu li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #0A0A0A;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.astra-nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: var(--underline-h);
    border-radius: 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.astra-nav-menu li a:hover {
    color: var(--active-color);
}
.astra-nav-menu li a:hover::after {
    transform: scaleX(1);
}

.astra-nav-menu li.is-active a,
.astra-nav-menu li.current-menu-item a {
    color: var(--active-color);
    font-weight: 700;
}
.astra-nav-menu li.is-active a::after,
.astra-nav-menu li.current-menu-item a::after {
    transform: scaleX(1);
}

@keyframes underlineSweep {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
.astra-nav-menu li.is-active a::after,
.astra-nav-menu li.current-menu-item a::after {
    animation: underlineSweep 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.astra-nav-cta {
    flex-shrink: 0;
    margin-left: 48px;
}
.astra-nav-cta a {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.astra-nav-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}
.astra-nav-cta a:active {
    transform: translateY(0);
}

/* Hamburger (mobile) */
.astra-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    z-index: 1001;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.astra-nav-toggle:hover {
    border-color: var(--active-color);
    background: rgba(213, 66, 49, 0.04);
}
.astra-nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--default-color);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}
.astra-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.astra-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.astra-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 960px) {
    .astra-nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .astra-nav-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        overflow-y: auto;
    }
    .astra-nav-collapse.is-open {
        transform: translateX(0);
    }

    .astra-nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }
    .astra-nav-menu li {
        text-align: center;
    }
    .astra-nav-menu li a {
        font-size: 17px;
    }

    .astra-nav-cta {
        margin-top: 40px;
        margin-left: 0;
        width: 100%;
        max-width: 220px;
    }
    .astra-nav-cta a {
        display: block;
        text-align: center;
    }

    .astra-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.35s ease;
    }
    .astra-nav-overlay.is-visible {
        display: block;
        opacity: 1;
    }
}

@media (min-width: 961px) {
    .astra-nav-overlay {
        display: none !important;
    }
    .astra-nav-collapse {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-left: auto;
    }
}

/* ================================================================
   HERO
   ================================================================ */

.astra-hero {
    --gradient-red:    #D44132;
    --gradient-orange: #F08016;
    --text-dark:       #0A0A0A;
    --text-gradient-l: #EF382F;
    --text-gradient-r: #ECAE4A;
    --badge-border:    #36A550;

    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f5f1;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.astra-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, var(--gradient-red), var(--gradient-orange));
    mix-blend-mode: multiply;
    opacity: 0.06;
    pointer-events: none;
    z-index: 1;
}

.astra-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.astra-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.astra-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid var(--badge-border);
    border-radius: 30px;
    background: rgba(63, 198, 83, 0.18);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--badge-border);
    margin-bottom: 28px;
}
.astra-hero-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.astra-hero-heading {
    margin-bottom: 20px;
}

.astra-hero-heading .hero-line-main {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 82px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-dark);
}

.astra-hero-heading .hero-line-gradient {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1.05;
    background: linear-gradient(to right, var(--text-gradient-l), var(--text-gradient-r));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.astra-hero-subtitle {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-dark);
    max-width: 520px;
    margin-bottom: 32px;
}

.astra-hero-stats {
    width: 100%;
    max-width: 520px;
    border-top: 1px solid #0A0A0A;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
}

.astra-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.astra-hero-stat .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}
.astra-hero-stat .stat-label {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
}

.astra-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.astra-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.astra-hero-image img.is-loaded {
    opacity: 1;
}

.astra-hero-content .hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.astra-hero-content .hero-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .astra-hero-heading .hero-line-main {
        font-size: 60px;
    }
    .astra-hero-heading .hero-line-gradient {
        font-size: 68px;
    }
    .astra-hero-stat .stat-value {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .astra-hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 36px;
        gap: 32px;
        text-align: center;
    }

    .astra-hero-content {
        align-items: center;
        order: 0;
    }

    .astra-hero-image {
        order: 1;
    }
    .astra-hero-image img {
        max-width: 85%;
    }

    .astra-hero-heading .hero-line-main {
        font-size: 44px;
    }
    .astra-hero-heading .hero-line-gradient {
        font-size: 52px;
    }

    .astra-hero-subtitle {
        max-width: 100%;
    }

    .astra-hero-stat .stat-value {
        font-size: 32px;
    }
    .astra-hero-stat .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .astra-hero-heading .hero-line-main {
        font-size: 34px;
    }
    .astra-hero-heading .hero-line-gradient {
        font-size: 42px;
    }
    .astra-hero-stat .stat-value {
        font-size: 28px;
    }
    .astra-hero-stat .stat-label {
        font-size: 13px;
    }
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */

.astra-why {
    --text-dark:       #0A0A0A;
    --badge-border:    #DF7C3C;
    --badge-text:      #DE733B;
    --card-border:     rgba(224, 124, 61, 0.11);
    --grad-left:       #D64632;
    --grad-right:      #EBBC49;

    width: 100%;
    background: #ffffff;
    padding: 80px 24px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.astra-why-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.astra-why-header {
    text-align: center;
    margin-bottom: 56px;
}

.astra-why-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid var(--badge-border);
    border-radius: 30px;
    background: rgba(223, 124, 60, 0.08);
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--badge-text);
    margin-bottom: 24px;
}

.astra-why-heading {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.astra-why-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    max-width: 620px;
    margin: 0 auto;
}

.astra-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.astra-why-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.astra-why-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(to right, var(--grad-left), var(--grad-right));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    clip-path: inset(0 0 calc(100% - 33px) 0);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.astra-why-icon,
.astra-why-card-title,
.astra-why-card-desc {
    position: relative;
    z-index: 2;
}

.astra-why-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.astra-why-card:hover::before {
    opacity: 1;
}

.astra-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--grad-left), var(--grad-right));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.astra-why-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.astra-why-card-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.astra-why-card-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
}

@media (max-width: 1024px) {
    .astra-why-heading {
        font-size: 36px;
    }
    .astra-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .astra-why-card {
        padding: 24px 28px;
    }
}

@media (max-width: 640px) {
    .astra-why {
        padding: 56px 16px;
    }
    .astra-why-heading {
        font-size: 28px;
    }
    .astra-why-desc {
        font-size: 15px;
    }
    .astra-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .astra-why-card {
        padding: 24px 24px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    .astra-why-card::before {
        opacity: 1;
    }
}

/* ================================================================
   SIMPLE PROCESS
   ================================================================ */

.astra-process {
    --text-dark:       #0A0A0A;
    --badge-border:    #DF7C3C;
    --badge-text:      #DE733B;
    --arrow-color:     #EF4623;

    width: 100%;
    background: #ffffff;
    padding: 80px 24px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.astra-process-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.astra-process-header {
    text-align: center;
    margin-bottom: 56px;
}

.astra-process-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid var(--badge-border);
    border-radius: 30px;
    background: rgba(223, 124, 60, 0.08);
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--badge-text);
    margin-bottom: 24px;
}

.astra-process-heading {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.astra-process-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    max-width: 620px;
    margin: 0 auto;
}

.astra-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.astra-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.astra-process-step img {
    width: auto;
    max-width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
}

.astra-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}
.astra-process-arrow svg {
    width: 56px;
    height: 56px;
}

@media (max-width: 1024px) {
    .astra-process-heading {
        font-size: 36px;
    }
    .astra-process-step img {
        height: 220px;
    }
    .astra-process-arrow {
        width: 44px;
        height: 44px;
    }
    .astra-process-arrow svg {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) {
    .astra-process {
        padding: 56px 16px;
    }
    .astra-process-heading {
        font-size: 28px;
    }
    .astra-process-desc {
        font-size: 15px;
    }
    .astra-process-steps {
        flex-direction: column;
        gap: 0;
    }
    .astra-process-step img {
        height: 200px;
    }
    .astra-process-arrow {
        width: 44px;
        height: 44px;
        transform: rotate(90deg);
        margin: 8px 0;
    }
    .astra-process-arrow svg {
        width: 44px;
        height: 44px;
    }
}

/* ================================================================
   5-STEP FEATURES
   ================================================================ */

.astra-features {
    --text-dark:    #0A0A0A;
    --card-border:  rgba(224, 124, 61, 0.11);
    --grad-left:    #D64632;
    --grad-right:   #EBBC49;

    width: 100%;
    background: #FCFAFA;
    padding: 80px 24px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.astra-features-inner {
    max-width: 1340px;
    margin: 0 auto;
}

.astra-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.astra-features-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.astra-features-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(to right, var(--grad-left), var(--grad-right));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    clip-path: inset(0 0 calc(100% - 23px) 0);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.astra-features-num,
.astra-features-title,
.astra-features-desc {
    position: relative;
    z-index: 2;
}

.astra-features-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.astra-features-card:hover::before {
    opacity: 1;
}

.astra-features-num {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--grad-left), var(--grad-right));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.astra-features-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.astra-features-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
}

@media (max-width: 1100px) {
    .astra-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .astra-features {
        padding: 56px 16px;
    }
    .astra-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .astra-features-card {
        padding: 24px 16px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    .astra-features-card::before {
        opacity: 1;
    }
}

@media (max-width: 420px) {
    .astra-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   SMART INVESTMENT
   ================================================================ */

.astra-invest {
    --text-dark:      #0A0A0A;
    --green-bg:       #488C58;
    --green-light:    rgba(76, 199, 109, 0.077);
    --green-accent:   #3FC653;

    width: 100%;
    background: #ffffff;
    padding: 80px 24px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.astra-invest-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.astra-invest-left {
    position: relative;
}

.astra-invest-img {
    width: 100%;
    border-radius: 24px;
    display: block;
    height: auto;
}

.astra-invest-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green-bg);
    border: 8px solid #ffffff;
    border-radius: 54px;
    padding: 48px 36px;
    max-width: 300px;
    color: #ffffff;
}

.astra-invest-overlay-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}
.astra-invest-overlay-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.astra-invest-overlay-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 10px;
}

.astra-invest-overlay-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.astra-invest-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.astra-invest-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid var(--green-accent);
    border-radius: 30px;
    background: rgba(63, 198, 83, 0.08);
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--green-accent);
    margin-bottom: 24px;
}

.astra-invest-heading {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 47px;
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.astra-invest-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 28px;
    max-width: 540px;
}

.astra-invest-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.astra-invest-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--green-light);
    border-radius: 20px;
    padding: 14px 16px;
}

.astra-invest-benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.astra-invest-benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-accent);
}

.astra-invest-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.astra-invest-benefit-title {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.astra-invest-benefit-desc {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #555555;
}

@media (max-width: 1024px) {
    .astra-invest-inner {
        gap: 40px;
    }
    .astra-invest-heading {
        font-size: 36px;
    }
    .astra-invest-overlay {
        max-width: 260px;
        padding: 36px 28px;
        border-radius: 40px;
        bottom: -16px;
        right: -10px;
    }
    .astra-invest-overlay-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .astra-invest {
        padding: 56px 16px;
    }
    .astra-invest-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .astra-invest-heading {
        font-size: 30px;
    }
    .astra-invest-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: -40px;
        margin-left: 16px;
        margin-right: 16px;
        border-radius: 30px;
    }
    .astra-invest-desc {
        max-width: 100%;
    }
}

/* ================================================================
   SMART CONTROL APP
   ================================================================ */

.astra-smartctrl {
    width: 100%;
    background: linear-gradient(to top right, #F08016 0%, #F08016 50%, rgba(240, 128, 22, 0) 100%);
    padding: 80px 24px;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.astra-smartctrl-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.astra-smartctrl-left {
    display: flex;
    flex-direction: column;
}

.astra-smartctrl-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.11);
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    width: fit-content;
    margin-bottom: 28px;
}

.astra-smartctrl-heading {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
}

.astra-smartctrl-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 36px;
    max-width: 560px;
}

.astra-smartctrl-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.astra-smartctrl-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    cursor: default;
    transition: background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .astra-smartctrl-feature:hover {
        background: rgba(255, 255, 255, 0.45);
    }
}

.astra-smartctrl-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astra-smartctrl-feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.astra-smartctrl-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.astra-smartctrl-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.astra-smartctrl-feature-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
}

.astra-smartctrl-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.astra-smartctrl-phone-label {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 12px;
    text-align: center;
}

.astra-smartctrl-phone {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
    .astra-smartctrl-heading {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .astra-smartctrl {
        padding: 60px 20px;
    }

    .astra-smartctrl-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .astra-smartctrl-right {
        order: -1;
    }

    .astra-smartctrl-phone {
        max-width: 300px;
        height: auto;
    }

    .astra-smartctrl-heading {
        font-size: 34px;
    }

    .astra-smartctrl-desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .astra-smartctrl {
        padding: 48px 16px;
    }

    .astra-smartctrl-heading {
        font-size: 28px;
    }

    .astra-smartctrl-feature {
        padding: 16px 18px;
        gap: 12px;
    }

    .astra-smartctrl-feature-title {
        font-size: 15px;
    }

    .astra-smartctrl-feature-description {
        font-size: 13px;
    }

    .astra-smartctrl-phone {
        max-width: 260px;
        height: auto;
    }
}

/* ================================================================
   CTA BANNER (READY TO SAVE)
   ================================================================ */

.astra-rts {
    width: 100%;
    min-height: 510px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.astra-rts-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://osei.co.za/wp-content/uploads/2026/03/take-control-img-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.astra-rts-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 510px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.astra-rts-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.astra-rts-heading {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 75px;
    font-weight: 700;
    color: #E9AD47;
    line-height: 1.2;
}

.astra-rts-cta a {
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #D54231, #ECBE4A);
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.astra-rts-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.astra-rts-cta a:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .astra-rts-heading {
        font-size: 58px;
    }
}

@media (max-width: 768px) {
    .astra-rts {
        min-height: 628px;
    }

    .astra-rts-bg {
        background-image: url('https://osei.co.za/wp-content/uploads/2026/03/take-control-mbl-img.webp');
        background-position: center bottom;
    }

    .astra-rts-inner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        min-height: 628px;
        padding: 48px 24px;
        gap: 24px;
    }

    .astra-rts-content {
        align-items: center;
    }

    .astra-rts-heading {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .astra-rts {
        min-height: 628px;
    }

    .astra-rts-inner {
        min-height: 628px;
        padding: 40px 20px;
    }

    .astra-rts-heading {
        font-size: 34px;
    }

    .astra-rts-cta a {
        padding: 14px 40px;
        font-size: 16px;
    }
}

/* ================================================================
   FOOTER
   ================================================================ */

.astra-footer {
    width: 100%;
    background: #101010;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    color: #ffffff;
    margin-top: 0 !important;
    padding-top: 48px;
}

.astra-footer-topline {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 4px;
    background: linear-gradient(90deg, #D64632, #EBBC49);
    background-clip: content-box;
}

.astra-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
}

.astra-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.astra-footer-logo {
    max-width: 220px;
    height: auto;
    display: block;
}

.astra-footer-tagline {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.astra-footer-tagline strong {
    color: #ffffff;
    font-weight: 700;
}

.astra-footer-tagline .highlight {
    color: #ffffff;
    font-weight: 700;
}

.astra-footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.astra-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #D95B36;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.astra-footer-socials a:hover {
    opacity: 0.8;
}

.astra-footer-socials a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.astra-footer-links h4,
.astra-footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.astra-footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.astra-footer-links ul li a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease;
}

.astra-footer-links ul li a:hover {
    color: #ffffff;
}

.astra-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.astra-footer-email-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: block;
}

.astra-footer-contact-item a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.25s ease;
}

.astra-footer-contact-item a:hover {
    color: #ffffff;
}

.astra-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.astra-footer-copyright,
.astra-footer-credit {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
}

.astra-footer-credit a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.astra-footer-credit a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .astra-footer-inner {
        gap: 40px;
        padding: 48px 32px 32px;
    }
}

@media (max-width: 768px) {
    .astra-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 48px 24px 32px;
    }

    .astra-footer-brand {
        grid-column: 1 / -1;
    }

    .astra-footer-bottom {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .astra-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 28px;
        text-align: center;
    }

    .astra-footer-brand {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .astra-footer-socials {
        justify-content: center;
    }

    .astra-footer-links ul {
        align-items: center;
    }

    .astra-footer-contact-item {
        justify-content: center;
    }

    .astra-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 20px;
    }
}

/* ================================================================
   CONTACT FORM (for future Contact page)
   ================================================================ */

.astra-cf {
    width: 100%;
    background: #0A0A0A;
    font-family: 'Plus Jakarta Sans', 'Inter', 'Montserrat', sans-serif;
    color: #ffffff;
    padding: 80px 24px;
}

.astra-cf-inner {
    max-width: 640px;
    margin: 0 auto;
}

.astra-cf-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.astra-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.astra-cf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.astra-cf-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}

.astra-cf-group input,
.astra-cf-group select,
.astra-cf-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.astra-cf-group input::placeholder,
.astra-cf-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.astra-cf-group input:focus,
.astra-cf-group select:focus,
.astra-cf-group textarea:focus {
    border-color: #D95B36;
    background: rgba(255, 255, 255, 0.09);
}

.astra-cf-group select {
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.astra-cf-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.astra-cf-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.astra-cf-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(90deg, #D54231, #ECBE4A);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.astra-cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 66, 49, 0.35);
}

.astra-cf-submit:active {
    transform: translateY(0);
}

.astra-cf-submit .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.astra-cf-submit:hover .arrow {
    transform: translateX(4px);
}

.astra-cf-success {
    text-align: center;
    padding: 60px 20px;
}

.astra-cf-success-icon {
    font-size: 52px;
    color: #3FC653;
    margin-bottom: 16px;
}

.astra-cf-success h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
}

.astra-cf-success p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .astra-cf {
        padding: 60px 16px;
    }

    .astra-cf-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   THE ELON SMART — HERO
   ================================================================ */

.elon-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(to top right, rgba(231, 144, 61, 0), rgba(212, 65, 50, 0.08));
}

.elon-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.elon-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 28px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.elon-hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.elon-hero-gradient {
    background: linear-gradient(135deg, var(--grad-left), var(--grad-right));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.elon-hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .elon-hero-heading {
        font-size: 40px;
    }
    .elon-hero-subtitle {
        font-size: 15px;
    }
    .elon-hero-inner {
        padding: 80px 20px 60px;
    }
}

@media (max-width: 480px) {
    .elon-hero-heading {
        font-size: 32px;
    }
}

/* ================================================================
   THE ELON SMART — HOW IT WORKS
   ================================================================ */

.elon-hiw {
    width: 100%;
    padding: 100px 24px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.elon-hiw-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.elon-hiw-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.elon-hiw-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.elon-hiw-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
}

.elon-hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.elon-hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.elon-hiw-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--grad-left), var(--grad-right));
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elon-hiw-step-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    padding-top: 6px;
}

.elon-hiw-step-text strong {
    color: var(--text-dark);
    font-weight: 700;
    font-weight: 600;
}

.elon-hiw-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elon-hiw-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .elon-hiw-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .elon-hiw-content {
        text-align: center;
    }
    .elon-hiw-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .elon-hiw-heading {
        font-size: 30px;
    }
    .elon-hiw-desc {
        max-width: 100%;
    }
    .elon-hiw-step {
        text-align: left;
    }
    .elon-hiw {
        padding: 60px 20px;
    }
    .elon-hiw-image {
        order: -1;
    }
}

/* ================================================================
   THE ELON SMART — KEY FEATURES
   ================================================================ */

.elon-feat {
    width: 100%;
    padding: 100px 24px;
    background: var(--section-light);
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.elon-feat-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.elon-feat-header {
    text-align: center;
    margin-bottom: 60px;
}

.elon-feat-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.elon-feat-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.elon-feat-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.elon-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.elon-feat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .elon-feat-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }
}

.elon-feat-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.elon-feat-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #F08016, #D44132);
    display: flex;
    align-items: center;
    justify-content: center;
}

.elon-feat-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.elon-feat-card-meta {
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.elon-feat-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.elon-feat-card-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(63, 198, 83, 0.12);
    color: #2a9d3e;
    width: fit-content;
}

.elon-feat-card-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .elon-feat-grid {
        grid-template-columns: 1fr;
    }
    .elon-feat-heading {
        font-size: 30px;
    }
    .elon-feat {
        padding: 60px 20px;
    }
}

/* ================================================================
   THE ELON SMART — WARRANTIES
   ================================================================ */

.elon-warr {
    width: 100%;
    padding: 100px 24px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
}

.elon-warr-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.elon-warr-header {
    text-align: center;
    margin-bottom: 60px;
}

.elon-warr-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.elon-warr-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.elon-warr-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

.elon-warr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.elon-warr-card {
    background: var(--section-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #E0E0E0;
}

.elon-warr-card-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.elon-warr-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: #F96F40;
}

.elon-warr-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #F96F40;
    margin-top: 4px;
}

.elon-warr-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.elon-warr-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #0A0A0A;
}

@media (max-width: 768px) {
    .elon-warr-grid {
        grid-template-columns: 1fr;
    }
    .elon-warr-heading {
        font-size: 30px;
    }
    .elon-warr {
        padding: 60px 20px;
    }
    .elon-warr-num {
        font-size: 48px;
    }
}

/* ================================================================
   RESOURCES PAGE — Hero
   ================================================================ */

.res-hero {
    width: 100%;
    padding: 80px 24px 60px;
    background: linear-gradient(to bottom, rgba(231, 144, 61, 0.06), rgba(212, 65, 50, 0.04));
    text-align: center;
}

.res-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.res-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.res-hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #0A0A0A;
    margin-bottom: 16px;
}

.res-hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   RESOURCES PAGE — Filter Tabs
   ================================================================ */

.res-list {
    width: 100%;
    padding: 60px 24px 100px;
    background: #ffffff;
}

.res-list-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.res-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.res-tab {
    display: inline-flex;
    align-items: center;
    padding: 18px 24px;
    border-radius: 50px;
    border: 1px solid #AFAFAF;
    background: #ffffff;
    color: #333;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.res-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #D54231, #ECBE4A);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.res-tab:hover {
    border-color: transparent;
    color: #ffffff;
}
.res-tab:hover::before {
    opacity: 1;
}

.res-tab.is-active {
    border-color: transparent;
    color: #ffffff;
}
.res-tab.is-active::before {
    opacity: 1;
}

/* ================================================================
   RESOURCES PAGE — Resource Rows
   ================================================================ */

.res-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.res-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    background: #ffffff;
    transition: box-shadow 0.2s ease, opacity 0.3s ease;
}

.res-row:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.res-row.is-hidden {
    display: none;
}

.res-row-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0A0A0A;
    flex: 1;
    padding-right: 16px;
}

.res-row-download {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #D54231;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.res-row-download:hover {
    color: #ECBE4A;
}

.res-empty {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #999;
    padding: 60px 0;
}

/* ================================================================
   RESOURCES PAGE — Mobile
   ================================================================ */

@media (max-width: 768px) {
    .res-hero {
        padding: 60px 20px 40px;
    }
    .res-hero-heading {
        font-size: 36px;
    }
    .res-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }
    .res-tab {
        padding: 14px 22px;
        font-size: 12px;
    }
    .res-row {
        padding: 18px 20px;
    }
    .res-row-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .res-hero-heading {
        font-size: 30px;
    }
    .res-hero-subtitle {
        font-size: 14px;
    }
    .res-tabs {
        justify-content: center;
        gap: 10px;
    }
    .res-tab {
        padding: 12px 20px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* ================================================================
   CONTACT PAGE — Hero
   ================================================================ */

.contact-hero {
    width: 100%;
    padding: 80px 24px 60px;
    background: linear-gradient(to bottom, rgba(231, 144, 61, 0.06), rgba(212, 65, 50, 0.04));
    text-align: center;
}


.contact-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(224, 124, 61, 0.11);
    border: 2px solid #DF7C3C;
    color: #DF7C3C;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #0A0A0A;
    margin-bottom: 16px;
}

.contact-hero-accent {
    background: linear-gradient(135deg, #D54231, #ECBE4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #0A0A0A;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   CONTACT PAGE — Body (two-column)
   ================================================================ */

.contact-body {
    width: 100%;
    padding: 80px 24px 100px;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-body-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* --- Left Column: Info --- */

.contact-info-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 12px;
}

.contact-info-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #D54231, #ECBE4A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0A0A0A;
    margin-bottom: 0;
    line-height: 1.3;
}

.contact-info-item br {
    display: none;
}

.contact-info-link {
    font-size: 14px;
    color: #D95B36;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-link:hover {
    text-decoration: underline;
}

.contact-info-text {
    font-size: 14px;
    color: #555;
}

/* --- Business Hours --- */

.contact-hours {
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 28px 24px;
}

.contact-hours-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 20px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-hours-day {
    font-size: 14px;
    font-weight: 500;
    color: #0A0A0A;
}

.contact-hours-time {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* --- Right Column: Form --- */

.contact-form-wrap {
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 40px 36px;
    background: #FAFBFC;
}

.contact-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #0A0A0A;
}

.contact-form-group label .req {
    color: #D54231;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    color: #0A0A0A;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #aaa;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #D95B36;
}

.contact-form-group select {
    color: #777;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(90deg, #D54231, #ECBE4A);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 66, 49, 0.35);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit .arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.contact-form-submit:hover .arrow {
    transform: translateX(4px);
}

.contact-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(63, 198, 83, 0.06);
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.contact-form-privacy svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Success State --- */

.contact-form-success {
    text-align: center;
    padding: 60px 20px;
}

.contact-form-success-icon {
    font-size: 52px;
    color: #3FC653;
    margin-bottom: 16px;
}

.contact-form-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 10px;
}

.contact-form-success p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* ================================================================
   CONTACT PAGE — Mobile
   ================================================================ */

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px 40px;
    }
    .contact-hero-heading {
        font-size: 36px;
    }
    .contact-body-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-body {
        padding: 60px 20px 80px;
    }
    .contact-form-wrap {
        padding: 28px 20px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-heading {
        font-size: 30px;
    }
    .contact-hero-subtitle {
        font-size: 14px;
    }
}
