/* ==========================================================================
   FONTS DEFINITIONS (Local Costessa Fonts)
   ========================================================================== */
@font-face {
    font-family: 'Eco-friendlyMarket';
    src: url('fonts/EcofriendlyMarket.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Commons';
    src: url('fonts/TT-Commons-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist';
    src: url('fonts/4cf2300e9c8272f7-s.p.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist Mono';
    src: url('fonts/93f479601ee12b01-s.p.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #091E36;
    /* Deep Ocean Navy */
    --color-primary-light: #16365C;
    /* Lighter Navy */
    --color-primary-dark: #051221;
    /* Dark Abyss Navy */
    --color-gold: #C5A880;
    /* Champagne Gold */
    --color-gold-light: #E5D5C0;
    /* Light Gold Accent */
    --color-gold-dark: #A58458;
    /* Deep Metallic Gold */
    --color-bg-sand: #FAF8F5;
    /* Warm Soft Sand */
    --color-text-dark: #1E293B;
    /* Dark Slate Body */
    --color-text-light: #F8FAFC;
    /* Soft White Text */
    --color-text-muted: #64748B;
    /* Muted Slate Gray */
    --color-green-yield: #10B981;
    /* Emerald Green for ROI */
    --color-white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Eco-friendlyMarket', serif;
    --font-body: 'TT Commons', 'Geist', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(9, 30, 54, 0.08), 0 4px 6px -2px rgba(9, 30, 54, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(9, 30, 54, 0.15), 0 10px 10px -5px rgba(9, 30, 54, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-primary-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-sand);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 0.8rem;
}

p {
    font-weight: 300;
    font-size: 1.05rem;
}

em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
}

/* ==========================================================================
   REUSABLE COMPONENTS (BADGES, BUTTONS, CARDS)
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

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

.badge {
    display: inline-block;
    align-self: flex-start;
    text-align: center;
    padding: 0.4rem 1.2rem;
    background: rgba(197, 168, 128, 0.15);
    color: var(--color-gold-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.badge.font-gold {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    color: var(--color-text-muted);
    font-size: 1.15rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-gold);
    border: 1px solid var(--color-gold-dark);
}

.btn-dark:hover {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background-color: var(--color-primary);
    color: #FFFFFF !important;
    border: 1px solid var(--color-gold-dark);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background-color: var(--color-primary-light);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Glassmorphism Card */
.card-glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}

/* Premium Dark-Gold Card */
.card-gold {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: 1px solid var(--color-gold-dark);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(197, 168, 128, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 30, 54, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--color-white);
}

.logo-with-svg {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    height: 40px;
    width: auto;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.logo-with-svg:hover .logo-svg {
    color: var(--color-gold);
}

.logo-bold {
    font-weight: 800;
}

.logo-light {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    transform: translateY(-4px);
    display: inline-block;
}

.header-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.disclaimer-badge {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.2rem;
}

.header-disclaimer p {
    font-size: 0.75rem;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
}

.cta-header-btn {
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-header-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background-color: var(--color-primary-dark);
    background-image: url('images/costessa_exterior.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 80px;
    /* Offset for sticky header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(9, 30, 54, 0.4) 0%, rgba(5, 18, 33, 0.95) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.8rem;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
    background-color: var(--color-bg-sand);
    position: relative;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.calc-inputs h3 {
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 0.8rem;
    font-weight: 600;
}

.input-group {
    margin-bottom: 2.2rem;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.6rem;
}

.label-val {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.label-val label {
    margin-bottom: 0;
}

.val-display {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-gold-dark);
    background: rgba(197, 168, 128, 0.12);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

/* Custom Select styling */
.custom-select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-white);
    border: 1px solid rgba(9, 30, 54, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary-dark);
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.custom-select:focus {
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

/* Slider Custom Styling */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(9, 30, 54, 0.08);
    border-radius: 10px;
    outline: none;
    margin: 1rem 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-gold-dark);
    border: 2px solid var(--color-white);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(9, 30, 54, 0.2);
    transition: var(--transition-smooth);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background: var(--color-primary);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.disclaimer-math {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    border-top: 1px dashed rgba(9, 30, 54, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Outputs Area styling */
.output-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.output-header h3 {
    color: var(--color-white);
    margin-bottom: 0;
}

.currency-label {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-gold);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
}

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

.output-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.output-card.highlight {
    background: rgba(197, 168, 128, 0.06);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.output-title {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.output-value {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-green {
    color: var(--color-green-yield);
}

/* Simple Visual Chart */
.chart-container {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.chart-bar-wrap {
    margin-bottom: 1.2rem;
}

.chart-bar-wrap:last-child {
    margin-bottom: 0;
}

.chart-label {
    font-size: 0.78rem;
    color: var(--color-gold-light);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-bar-bg {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.chart-bar {
    height: 100%;
    border-radius: 20px;
    width: 0%;
    transition: var(--transition-smooth);
}

.bar-cost {
    background: var(--color-gold-dark);
}

.bar-return {
    background: var(--color-green-yield);
}

.chart-val {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

.calc-cta-box {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.8rem;
    text-align: center;
}

.calc-cta-box p {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ==========================================================================
   BUSINESS MODEL SECTION (FEATURES)
   ========================================================================== */
.investment-model {
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-sand);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    border: 1px solid rgba(9, 30, 54, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.feature-icon {
    margin: 0 auto 1.2rem auto;
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   SOCIAL PROOF SECTION (TORRE 1)
   ========================================================================== */
.social-proof-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proof-content h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.proof-content p {
    font-size: 1.1rem;
    color: var(--color-gold-light);
    margin-bottom: 2rem;
    text-align: center;
}


.proof-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.proof-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.proof-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.proof-list li strong {
    color: var(--color-white);
}

.proof-images {
    position: relative;
    height: 480px;
}

.image-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-lg);
}

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

.main-img {
    position: absolute;
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.sub-img {
    position: absolute;
    width: 65%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* ==========================================================================
   LEAD CAPTURE SECTION (THE TRAP)
   ========================================================================== */
.lead-form-section {
    background-image: linear-gradient(180deg, var(--color-bg-sand) 0%, #ECE8DF 100%);
    position: relative;
}

.lead-card {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.lead-header h2 {
    margin-bottom: 0.8rem;
}

.lead-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.roi-lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-group input {
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-white);
    border: 1px solid rgba(9, 30, 54, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--color-primary-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.form-security-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

/* Spinner and states */
.btn-text {
    transition: var(--transition-smooth);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(9, 30, 54, 0.3);
    border-top: 3px solid var(--color-primary-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success State styling */
.form-success-message {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.6s ease forwards;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-green-yield);
    color: var(--color-white);
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.form-success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.form-success-message p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

.success-callout {
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid var(--color-gold);
    color: var(--color-primary-dark) !important;
    font-weight: 500;
    padding: 1.2rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.footer-contact {
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: var(--color-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST ADAPTATIONS)
   ========================================================================== */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo-with-svg {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .main-header .logo-with-svg {
        transform: translateX(2px);
        /* Ajuste visual 'a ojo' solo para la cabecera móvil */
    }

    .footer-info {
        margin: 0 auto;
    }

    .cta-header-btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        height: auto;
        padding: 220px 1rem 80px 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .proof-images {
        height: 380px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section-container {
        padding: 4rem 1rem;
    }

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

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

    .card-glass,
    .card-gold {
        padding: 1.5rem;
    }
}

/* Condo Spec Card inside Calculator */
.condo-spec-card {
    background: rgba(9, 30, 54, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.condo-spec-header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.condo-blueprint {
    width: 60px;
    height: 60px;
    background: var(--color-primary-dark);
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.condo-blueprint svg {
    width: 100%;
    height: 100%;
    color: var(--color-gold);
}

.condo-spec-summary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.condo-spec-summary h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0;
}

.spec-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-primary-dark);
    color: var(--color-gold);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.condo-spec-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 0.75rem;
}

.spec-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.spec-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    letter-spacing: 0.05em;
}

.spec-detail-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.35;
}

/* ==========================================================================
   LANGUAGE SELECTOR & BILINGUAL TOGGLE
   ========================================================================== */
body.lang-es .lang-en {
    display: none !important;
}

body:not(.lang-en) .lang-en {
    display: none !important;
}

body.lang-en .lang-es {
    display: none !important;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px;
    border-radius: 30px;
    margin: 0 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
}

.lang-btn.active {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    box-shadow: 0 2px 8px rgba(197, 168, 128, 0.3);
}

.lang-btn:hover:not(.active) {
    color: var(--color-white);
}

.lang-divider {
    display: none;
}

/* ==========================================================================
   CONFIDENTIAL EXPANSION SECTION (PHASE 3)
   ========================================================================== */
.expansion-teaser {
    background-color: #05101E;
    position: relative;
    overflow: hidden;
}

.expansion-card.card-dark {
    background: linear-gradient(135deg, #091E36 0%, #030a12 100%);
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(197, 168, 128, 0.1);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    color: var(--color-white);
    position: relative;
}

.expansion-card.card-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.expansion-header h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.confidential-box {
    background: rgba(197, 168, 128, 0.08);
    border-left: 3px solid var(--color-gold);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--color-gold-light);
}

.expansion-cta {
    margin-top: 2rem;
}

/* ==========================================================================
   SENSORY TOUR EXPERIENCE SECTION
   ========================================================================== */
.sensory-tour-section {
    background-color: var(--color-background);
    position: relative;
}

.sensory-grid {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
    z-index: 1;
}

/* Dynamic Background Layers */
.sensory-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.sensory-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.sensory-bg-layer.active {
    opacity: 0.12;
}

.sensory-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sensory-content .badge {
    align-self: center;
}



.sensory-subtitle-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.sensory-steps {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.sensory-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.sensory-step:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateX(5px);
}

.step-icon {
    width: 45px;
    height: 45px;
    background: rgba(197, 168, 128, 0.12);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.05);
    transition: var(--transition-smooth);
}

.step-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.sensory-step:hover .step-icon {
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

.step-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-primary-dark);
}

.step-text p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.sensory-cta-card {
    background: linear-gradient(135deg, rgba(9, 30, 54, 0.96) 0%, rgba(3, 10, 18, 0.98) 100%);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.sensory-cta-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    bottom: -40px;
    right: -40px;
    pointer-events: none;
}

.cta-card-content h3 {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.cta-card-content p {
    color: var(--color-gold-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-actions .btn {
    width: 100%;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (CHAT DE NEGOCIOS)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-white);
    border: 1px solid rgba(9, 30, 54, 0.1);
    padding: 6px 6px 6px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 15px rgba(197, 168, 128, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    letter-spacing: 0.02em;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    background: var(--color-primary-dark);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(9, 30, 54, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    display: block;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(9, 30, 54, 0.2), 0 0 20px rgba(197, 168, 128, 0.15);
    border-color: var(--color-gold);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(360deg);
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADDITIONS & OVERRIDES
   ========================================================================== */
@media (max-width: 900px) {
    .sensory-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sensory-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .expansion-card.card-dark {
        padding: 2.2rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 2px;
        background: var(--color-white);
        border: none;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
        gap: 0;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 36px;
        height: 36px;
        box-shadow: none;
    }

    .whatsapp-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================================================
   APPLE-STYLE SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
        transform 1s cubic-bezier(0.25, 1, 0.5, 1),
        filter 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.60s;
}

/* ==========================================================================
   RESPONSIVE HAMBURGER NAVIGATION
   ========================================================================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: var(--transition-smooth);
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hamburger open states */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-gold);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-gold);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 30, 54, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-overlay.active .nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-links li:nth-child(1) {
    transition-delay: 0.10s;
}

.nav-overlay.active .nav-links li:nth-child(2) {
    transition-delay: 0.18s;
}

.nav-overlay.active .nav-links li:nth-child(3) {
    transition-delay: 0.26s;
}

.nav-overlay.active .nav-links li:nth-child(4) {
    transition-delay: 0.34s;
}

.nav-overlay.active .nav-links li:nth-child(5) {
    transition-delay: 0.42s;
}

.nav-overlay.active .nav-links li:nth-child(6) {
    transition-delay: 0.50s;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-gold);
    letter-spacing: 0.18em;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0.8rem 1.2rem !important;
        gap: 0 !important;
    }

    .logo-with-svg {
        width: auto !important;
        justify-content: flex-start !important;
    }

    .header-disclaimer {
        display: none !important;
    }

    .cta-header-btn {
        display: none !important;
    }

    .hero-section {
        padding-top: 110px !important;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0.8rem 1.0rem !important;
    }

    .logo-light {
        display: inline-block !important;
        font-size: 1.05rem !important;
        transform: translateY(-2px) !important;
        letter-spacing: 0.12em !important;
    }

    .logo-svg {
        height: 28px !important;
    }

    .logo-with-svg {
        gap: 0.4rem !important;
    }

    .header-right {
        gap: 0.6rem !important;
    }

    .lang-switcher {
        padding: 1px !important;
        margin: 0 0.35rem !important;
    }

    .lang-btn {
        padding: 4px 10px !important;
        font-size: 0.68rem !important;
    }

    .nav-links {
        gap: 1.0rem !important;
    }

    .nav-links a {
        font-size: 1.25rem !important;
    }
}

/* ==========================================================================
   VIDEO SHOWCASE SECTION (Avances de Obra)
   ========================================================================== */
/* ==========================================================================
   GALLERY SHOWCASE SECTION (replaces YouTube embed)
   ========================================================================== */

.gallery-showcase-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 460px;
    overflow: hidden;
    background: var(--color-primary-dark);
}

.gallery-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease;
    transform: scale(1.05);
    will-change: opacity, transform;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(9, 30, 54, 0.82) 0%,
            rgba(9, 30, 54, 0.55) 50%,
            rgba(9, 30, 54, 0.78) 100%);
    z-index: 2;
}

.gallery-content {
    position: absolute;
    inset: 0;
    padding: 4rem;
    padding-bottom: 5rem;
    /* space for dots */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    /* full-section gradient for readability */
    background: linear-gradient(to top,
            rgba(9, 30, 54, 0.88) 0%,
            rgba(9, 30, 54, 0.35) 50%,
            rgba(9, 30, 54, 0.55) 100%);
}

.gallery-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--color-gold);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.gallery-title {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    margin: 0;
    letter-spacing: 0.01em;
}

.gallery-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border: 1.5px solid rgba(197, 168, 128, 0.5);
    border-radius: 30px;
    background: rgba(197, 168, 128, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.gallery-yt-link:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.35);
}

.gallery-yt-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Navigation Dots */
.gallery-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 15;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

/* Arrow Controls */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(197, 168, 128, 0.4);
    color: var(--color-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-arrow:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-gold);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
}

.gallery-arrow-prev {
    left: 1.5rem;
}

.gallery-arrow-next {
    right: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-showcase-section {
        height: 60vw;
        min-height: 320px;
    }

    .gallery-content {
        padding: 2.5rem 2rem 4rem;
    }

    .gallery-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .gallery-showcase-section {
        height: 70vw;
        min-height: 280px;
    }

    .gallery-content {
        padding: 2rem 1.5rem;
        gap: 0.75rem;
    }

    .gallery-badge,
    .gallery-title,
    .gallery-subtitle {
        max-width: 260px;
    }

    .gallery-title {
        font-size: 1.35rem;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
    }

    .gallery-yt-link {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-arrow-prev {
        left: 0.75rem;
    }

    .gallery-arrow-next {
        right: 0.75rem;
    }
}

/* ==========================================================================
   INVESTOR PITCH SECTION
   ========================================================================== */

.investor-pitch-section {
    background: linear-gradient(180deg,
            var(--color-primary-dark) 0%,
            rgba(9, 30, 54, 0.92) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.investor-pitch-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(197, 168, 128, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.investor-pitch-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.investor-pitch-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 20px;
}

.investor-pitch-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.investor-pitch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.investor-pitch-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.investor-pitch-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.investor-pitch-text strong {
    color: var(--color-gold);
    font-weight: 700;
}

.investor-pitch-stats {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.pitch-stat {
    display: block;
    padding: 1.4rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pitch-stat:hover {
    background: rgba(197, 168, 128, 0.07);
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateX(4px);
}

.pitch-stat-icon {
    display: none;
}

.pitch-stat div {
    flex: 1;
}

.pitch-stat strong {
    display: block;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.pitch-stat p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.investor-pitch-cta {
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.investor-pitch-cta-text {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Responsive - Investor Pitch */
@media (max-width: 860px) {
    .investor-pitch-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .investor-pitch-section {
        padding: 4rem 0;
    }
}

@media (max-width: 600px) {
    .investor-pitch-title {
        font-size: 1.5rem;
    }

    .investor-pitch-cta {
        gap: 1.25rem;
    }

    .pitch-stat {
        padding: 1.1rem 1.2rem;
    }

    @media (max-width: 900px) {
        .footer-info .logo-with-svg {
            justify-content: center !important;
        }
    }
}