/* CSS Reset & Variables */
:root {
    /* Colors */
    --clr-navy-900: #0F172A;
    /* Main Background */
    --clr-navy-800: #1E293B;
    /* Secondary Background */
    --clr-navy-700: #334155;
    /* Borders / Cards */

    --clr-accent: #EAB308;
    /* Gold/Amber */
    --clr-accent-hover: #CA8A04;

    --clr-green: #10B981;
    /* Success / Economy */
    --clr-red: #EF4444;
    /* Danger / Error */

    --clr-text-main: #F8FAFC;
    /* Primary text */
    --clr-text-muted: #94A3B8;
    /* Secondary text */

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --section-pad: 5rem 0;

    /* Effects */
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(234, 179, 8, 0.3);
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-navy-900);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #EAB308, #FDE047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--clr-accent);
}

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

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

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad);
}

.dark-bg {
    background-color: var(--clr-navy-800);
}

.bg-light {
    background-color: #0B1120;
    /* Even darker for contrast */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-navy-900);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(234, 179, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--clr-text-main);
}

.logo-sub {
    color: var(--clr-accent);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--clr-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--clr-accent);
}

.nav-menu .btn-primary {
    color: #000000;
}

.menu-toggle {
    display: none;
    font-size: 1.75rem;
    color: var(--clr-text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(234, 179, 8, 0.1);
    color: var(--clr-accent);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    z-index: 10;
}

.hero-image-inner {
    position: relative;
    width: 100%;
    animation: floating 6s ease-in-out infinite;
}

.floating-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(234, 179, 8, 0.2);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--clr-green);
    font-size: 1.25rem;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.economy-card {
    position: absolute;
    bottom: -15px;
    left: -30px;
    max-width: 290px;
    padding: 1.25rem 1.5rem;
    z-index: 20;
    transition: var(--transition);
}

.economy-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--clr-text-muted);
}

.economy-header i {
    font-size: 1.25rem;
}

.economy-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.economy-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
}

/* Problem Section */
.section-header {
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.125rem;
}

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

.compare-card {
    background-color: var(--clr-navy-800);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-card.danger {
    opacity: 0.8;
}

.compare-card.success.glass-effect {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--clr-accent);
    color: var(--clr-navy-900);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.danger .card-icon {
    color: var(--clr-red);
}

.success .card-icon {
    color: var(--clr-accent);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.danger .feature-list i {
    color: var(--clr-red);
    margin-top: 4px;
}

.success .feature-list i {
    color: var(--clr-green);
    margin-top: 4px;
}

/* Real Case Dashboard Frame Styles */
.real-case-wrapper {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.case-dashboard-frame {
    background: #1e293b;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.frame-header {
    background: #0f172a;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.frame-dots {
    display: flex;
    gap: 8px;
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.frame-dots span:nth-child(1) { background-color: #ef4444; }
.frame-dots span:nth-child(2) { background-color: #eab308; }
.frame-dots span:nth-child(3) { background-color: #10b981; }

.frame-title {
    margin-left: 2rem;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.frame-body {
    background: #ffffff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-screenshot {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.case-stats-overlay {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.badge-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.stat-badge.danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.stat-badge.danger .badge-val {
    color: #fca5a5;
}

.stat-badge.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.stat-badge.success .badge-val {
    color: #6ee7b7;
}

.stat-badge.accent {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.25);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.15);
}

.stat-badge.accent .badge-val {
    color: #fef08a;
}

/* Scenarios Image Section */
.scenarios-image-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--clr-navy-800);
    transition: all 0.4s ease;
}

.scenarios-image-container:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.scenarios-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenarios-image-container:hover .scenarios-img {
    transform: scale(1.01);
}

/* Deliverables Section & Image Stack */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 480px;
    width: 100%;
}

.image-stack-item {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    overflow: hidden;
}

.image-stack-item img {
    width: 100%;
    display: block;
    height: auto;
}

.image-stack-item.main {
    top: 0;
    left: 0;
    width: 75%;
    z-index: 2;
}

.image-stack-item.overlay {
    bottom: 20px;
    right: 0;
    width: 60%;
    z-index: 3;
    transform: translateY(10px);
}

.image-stack-item:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 10;
    border-color: var(--clr-accent);
}

.deliverables-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.deliverables-list li {
    display: flex;
    gap: 1.25rem;
}

.deliv-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deliv-icon i {
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.deliv-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.deliv-text p {
    font-size: 0.925rem;
    color: var(--clr-text-muted);
}

/* Real Estate Section */
.real-estate-section {
    background-color: var(--clr-navy-900);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.property-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 3/4;
    cursor: pointer;
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover img {
    transform: scale(1.08);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    transition: var(--transition);
}

.property-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag.highlight {
    background: var(--clr-accent);
    color: var(--clr-navy-900);
    border-color: transparent;
}

.property-info {
    transform: translateY(10px);
    transition: var(--transition);
}

.property-card:hover .property-info {
    transform: translateY(0);
}

.property-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.property-location {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.property-location i {
    color: var(--clr-accent);
}

.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
}

.property-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-main);
    font-size: 0.85rem;
    font-weight: 500;
}

.property-features i {
    color: var(--clr-accent);
    font-size: 1.1rem;
}

/* Metodologia Split Layout */
.metodologia-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.metodologia-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s ease;
}

.metodologia-image:hover img {
    transform: scale(1.02);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.steps-grid.vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.steps-grid.vertical::before {
    display: none;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (max-width: 992px) {
    .steps-grid::before {
        display: none;
    }
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    background-color: var(--clr-navy-900);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-grid.vertical .step-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    gap: 1.5rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--clr-navy-800);
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.2);
}

.steps-grid.vertical .step-number {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
}

.steps-grid.vertical .step-content {
    flex: 1;
}

.step-item h3 {
    margin-bottom: 1rem;
}

.steps-grid.vertical .step-item h3 {
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--clr-navy-900);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    font-size: 1.25rem;
    transition: var(--transition);
    color: var(--clr-text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--clr-text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--clr-accent);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* arbitrary large value */
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8)), url('images/cta_background_office_1778186060451.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.cta-section p {
    color: var(--clr-text-main);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #05080F;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info p {
    color: var(--clr-text-muted);
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--clr-accent);
    font-size: 1.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (min-width: 993px) and (max-width: 1200px) {
    .hero-container {
        gap: 2.5rem;
        grid-template-columns: 1.1fr 0.9fr;
    }
    .economy-card {
        left: -15px;
        bottom: -15px;
        max-width: 260px;
        padding: 1rem 1.25rem;
    }
    .economy-value {
        font-size: 1.6rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .compare-card.success.glass-effect {
        transform: translateY(0);
    }

    .case-stats-overlay {
        flex-direction: column;
        gap: 1rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .economy-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 2rem auto 0;
        max-width: 100%;
        text-align: left;
    }

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

    .image-stack {
        height: 360px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 3rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--clr-navy-900);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
    }

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

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-menu ul li a {
        font-size: 1.25rem;
    }

    .hero {
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-lg {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .economy-value {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .compare-card {
        padding: 2rem 1.5rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .scenarios-image-container {
        border-radius: var(--radius-md);
    }

    .step-item {
        padding: 1.5rem;
    }

    .frame-body {
        padding: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-info p {
        margin: 1rem auto;
    }

    .footer-contact ul li {
        justify-content: center;
    }
}