/* COULDY COMPANY - DARK MODE CORE STYLES */

:root {
    --color-primary: #F5A623;
    --color-primary-hover: #ffffff;
    /* White hover for high contrast/luxury */
    --color-primary-dim: rgba(245, 166, 35, 0.1);

    --color-dark: #ffffff;
    --color-dark-secondary: #a0a0a0;

    --color-bg-body: #050505;
    --color-bg-card: #0a0a0a;
    --color-bg-card-hover: #101010;

    --color-border: #222222;
    --color-border-glow: #F5A623;

    /* Spotlight / Glow Effects */
    --glow-color: rgba(245, 166, 35, 0.5);
    --spotlight-size: 400px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1240px;
    /* Slightly wider */
    --spacing-section: 100px;

    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(245, 166, 35, 0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-bg-body);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* UTILITIES */
.text-gradient {
    background: linear-gradient(135deg, #FFF 10%, var(--color-primary) 50%, #d48c1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
    display: inline-block;
}

.highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    font-weight: 600;
}

/* SECTION HEADER PREMIUM STYLE */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--color-dark-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.section-header p strong {
    color: #fff;
    font-weight: 600;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.5;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.section-header:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(135deg, #F5A623 0%, #D48806 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
    overflow: hidden;
    display: inline-block;
}

.btn-primary:hover,
.btn-primary.mobile-active {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.5);
    filter: brightness(1.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg) translateX(-150%);
    transition: none;
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-primary.mobile-active::after {
    transform: skewX(-20deg) translateX(150%);
    transition: transform 0.75s;
}

.btn-secondary {
    background-color: #222;
    color: var(--color-dark);
    border: 1px solid #333;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #000;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 1) HEADER */
/* 1) HEADER - IOS FLOATING STYLE */
#header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background-color: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-hidden {
    transform: translate(-50%, -200%) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--color-primary);
    white-space: nowrap;
}

.desktop-nav ul {
    display: flex;
    gap: 45px;
    /* Increased for better spacing */
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #eee;
    /* Lighten for better visibility on glass */
    white-space: nowrap;
    /* Prevent breaking */
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--color-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FIX: Compact Button for Header */
.header-cta .btn {
    padding: 10px 25px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
    min-width: auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-bg-card);
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    text-align: center;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu li {
    margin: 15px 0;
}

/* 2) HERO SECTION */
.hero-section {
    padding-top: 140px;
    padding-bottom: var(--spacing-section);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #000000;
}

#hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    /* More visible on dark */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(245, 166, 35, 0.15);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-text);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #ddd;
}

.hero-benefits img {
    width: 20px;
    height: 20px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(350deg);
    /* Make checkmark whiteish/yellow */
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.security-text {
    font-size: 0.85rem;
    color: #666;
}

/* 3D LAPTOP CONTAINER */
.hero-image-container {
    position: relative;
    width: 600px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin-right: -50px;
    /* Slight offset */
}

#laptop-3d-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

#laptop-3d-container canvas {
    outline: none;
    cursor: grab;
}

#laptop-3d-container canvas:active {
    cursor: grabbing;
}

.solar-graphic {
    display: none;
    /* Hide for now, 3D will take over */
}

/* 3) VIDEO SECTION REMOVED */


/* 4) ABOUT SECTION */
.about-section {
    background-color: var(--color-bg-body);
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-gray-text);
    font-size: 1.1rem;
}

/* 4) ABOUT SECTION w/ SPOTLIGHT CARDS */
.about-section {
    position: relative;
    padding: var(--spacing-section) 0;
    overflow: hidden;
}

/* Background "Glow" Blob */
.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* SPOTLIGHT CARD BASE */
.pilar-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* For spotlight JS */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Spotlight Glow Effect (Overlay) */
.pilar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    /* The border width */
    background: radial-gradient(var(--spotlight-size) circle at var(--mouse-x) var(--mouse-y),
            rgba(245, 166, 35, 0.8),
            transparent 40%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    opacity: 0;
    /* Hidden by default, script will toggle or CSS hover */
    transition: opacity 0.5s ease;
}

/* Inner highlight glow */
.pilar-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.03),
            transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pilar-card:hover,
.pilar-card.mobile-active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.pilar-card:hover::before,
.pilar-card:hover::after,
.pilar-card.mobile-active::before,
.pilar-card.mobile-active::after {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Harmonic gradient background */
    background: radial-gradient(circle at 30% 30%, rgba(245, 166, 35, 0.15), rgba(20, 20, 20, 1));
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(245, 166, 35, 0.05);
}

.icon-box svg {
    filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.4));
    transition: transform 0.3s ease;
}

.pilar-card:hover .icon-box,
.pilar-card.mobile-active .icon-box {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.6);
    transform: scale(1.1) translateY(-5px);
}

.pilar-card:hover .icon-box svg,
.pilar-card.mobile-active .icon-box svg {
    filter: drop-shadow(0 0 0 transparent);
    transform: scale(1.1);
}

.pilar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.pilar-card p {
    font-size: 1rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
}

/* 5) BUILD SECTION PREMIUM */
.build-section {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow: hidden;
}

.build-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.build-block::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), transparent 50%, rgba(245, 166, 35, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.build-block.reverse {
    flex-direction: row-reverse;
}

.build-content {
    flex: 1;
}

.build-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* CSS 3D ABSTRACT ART */
.visual-art {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.build-block:hover .visual-art,
.build-block.mobile-active .visual-art {
    transform: rotateY(5deg) rotateX(5deg);
}

.visual-art-1 {
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.4), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(100, 50, 255, 0.2), transparent 40%),
        linear-gradient(135deg, #101010 0%, #202020 100%);
}

.visual-art-2 {
    background:
        radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.2), transparent 60%),
        linear-gradient(45deg, #050505 0%, #1a1a1a 100%);
    position: relative;
}

.visual-art-2::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.2);
}

.visual-art-3 {
    background:
        conic-gradient(from 180deg at 50% 50%, #101010 0%, #222 50%, #101010 100%);
    position: relative;
}

.visual-art-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.3), transparent 70%);
}

.build-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.build-list {
    list-style: none;
    margin-bottom: 30px;
}

.build-list li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.build-list li svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(245, 166, 35, 0.5));
}

.build-benefit {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1), transparent);
    padding: 15px 20px;
    border-left: 3px solid var(--color-primary);
    margin: 25px 0 35px;
    font-size: 1rem;
    color: #fff;
    border-radius: 0 8px 8px 0;
}

/* 6) IMPACT SECTION */
.impact-section {
    background-color: #000;
    padding: var(--spacing-section) 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.impact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.impact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.impact-text p {
    color: #999;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.bw-filter {
    filter: grayscale(100%) contrast(1.2);
    border-radius: var(--radius-md);
    opacity: 0.8;
}

/* 7) RESULTS SECTION */
.results-section {
    padding: var(--spacing-section) 0;
    position: relative;
    background-color: #080808;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background-color: var(--color-bg-card);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Spotlight vars */
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(245, 166, 35, 0.3);
}

.result-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon-box {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.result-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 10px;
    opacity: 0.8;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.result-metric {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    display: inline-block;
}

.result-desc {
    font-size: 0.95rem;
    color: var(--color-dark-secondary);
    line-height: 1.6;
}

/* 8) DELIVERY SECTION */
.delivery-section {
    padding: var(--spacing-section) 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.delivery-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.delivery-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.1);
}

.delivery-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.delivery-card h3 {
    color: white;
}

.delivery-card p {
    color: var(--color-gray-text);
}

.center-btn-wrapper {
    text-align: center;
}

/* 9) TEAM SECTION */
.team-section {
    background-color: #080808;
    padding: var(--spacing-section) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 2px solid var(--color-primary);
    filter: grayscale(100%);
    transition: 0.3s;
}

.team-member:hover img {
    filter: grayscale(0%);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.team-member h4 {
    margin-bottom: 5px;
    color: white;
}

.team-member .role {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-member p {
    color: var(--color-gray-text);
}

/* 10) PLANS SECTION */
.plans-section {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow: hidden;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.plan-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 350px;
    text-align: center;
    position: relative;
}

.plan-card.featured {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.1);
    transform: scale(1.05);
    z-index: 3;
    background: #151515;
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #000;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-card h3 {
    margin-bottom: 10px;
    color: white;
}

.plan-target {
    color: var(--color-gray-text);
    margin-bottom: 30px;
    min-height: 45px;
}

.plan-list {
    text-align: left;
    margin-bottom: 30px;
}

.plan-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.investment-placeholder {
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* 11) COMMITMENT SECTION */
.commitment-section {
    padding: var(--spacing-section) 0;
    background-color: #000;
    color: white;
    border-top: 1px solid #222;
}

.commitment-box {
    border: 2px solid var(--color-primary);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(245, 166, 35, 0.03);
}

.commitment-box h2 {
    color: white;
}

.commitment-box p {
    color: #ccc;
    margin-bottom: 20px;
}

/* 12) BONUS SECTION */
.bonus-section {
    padding: var(--spacing-section) 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.bonus-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 25px;
    border-radius: var(--radius-md);
}

.bonus-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.bonus-item p {
    color: #ccc;
}

/* 13) BLOG SECTION */
.blog-section {
    background-color: var(--color-bg-body);
    padding: var(--spacing-section) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.blog-thumb {
    height: 180px;
    background-color: #222;
}

.blog-content {
    padding: 20px;
}

.blog-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: white;
}

.blog-content p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* 14) FAQ SECTION */
.faq-section {
    padding: var(--spacing-section) 0;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    color: var(--color-gray-text);
    display: none;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-header:hover {
    color: var(--color-primary);
}

.accordion-item.active .accordion-body {
    display: block;
}

/* 15) CTA & FOOTER */
.cta-final-section {
    background-color: #000;
    padding: var(--spacing-section) 0;
    color: white;
    text-align: center;
    border-top: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: "";
    /* Glow effect */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.cta-final-section h2 {
    color: white;
}

.main-footer {
    background-color: #050505;
    color: #666;
    padding: 50px 0 20px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-links a {
    margin: 0 15px;
    font-size: 0.9rem;
    color: #888;
}

.footer-links a:hover {
    color: white;
}

.footer-social a {
    color: #888;
    margin-left: 15px;
    font-weight: bold;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-container {
        display: none;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-actions {
        align-items: center;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 400px;
    }

    .build-block,
    .build-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .build-list li {
        display: inline-block;
        margin-right: 15px;
    }

    .impact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta .btn {
        display: none;
    }

    .pillars-grid,
    .results-grid,
    .delivery-grid,
    .team-grid,
    .bonus-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 100px;
    }
}

/* 
   ==========================================================================
   EMERGENCY OVERRIDE - HERO SECTION PREMIUM STYLES (v12.0)
   ==========================================================================
*/

.hero-section {
    padding-top: 180px !important;
    padding-bottom: var(--spacing-section);
    background: radial-gradient(circle at 10% 20%, #1a1a1a 0%, #000000 100%) !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* More space for text */
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background: rgba(245, 166, 35, 0.1) !important;
    border: 1px solid rgba(245, 166, 35, 0.5) !important;
    color: var(--color-primary) !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    padding: 8px 20px !important;
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.2);
}

.hero-text h1 {
    font-size: 4.2rem !important;
    /* HUGE */
    line-height: 1.05 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    margin-bottom: 30px !important;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #FFFFFF 20%, #F5A623 60%, #D48806 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: relative;
    display: inline-block;
}

/* Glass Pills for Benefits */
.hero-benefits {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
}

.hero-benefits li {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.hero-benefits li:hover {
    background: rgba(245, 166, 35, 0.15) !important;
    border-color: var(--color-primary) !important;
    transform: translateY(-3px);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) {
    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
        background: #FFD68A;
        color: #000;
    }
}

.back-to-top:active {
    transform: scale(0.95);
    background: var(--color-primary);
    color: #000;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}