/* ========================================
   RACKS - Premium Dark Landing Page Styles
   ======================================== */

/* CSS VARIABLES */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gray: #2b2b2b;
    --color-gray-light: #3a3a3a;
    --color-white: #ffffff;
    --color-white-off: #f5f5f5;
    --color-red: #e63946;
    --color-red-dark: #c62a35;
    --color-gold: #ffd60a;
    --color-gold-dark: #e6c200;
    --color-orange: #ff9500;
    --color-orange-dark: #e68600;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Oswald', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;

    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.8);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
    max-width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-medium);
}

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

.logo-large {
    flex: 0 0 auto;
    order: 2;
}

.logo-large a {
    display: block;
}

.logo-large img {
    height: 80px;
    width: auto;
    transition: all var(--transition-normal);
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.5);
}

.logo-large img:hover {
    transform: scale(1.05);
}

.nav {
    flex: 1;
}

.nav:first-child {
    order: 1;
    text-align: left;
}

.nav:last-child {
    order: 3;
    text-align: right;
}

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

.nav:first-child .nav-menu {
    justify-content: flex-start;
}

.nav:last-child .nav-menu {
    justify-content: flex-end;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-orange);
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-white-off);
    letter-spacing: 0.5px;
}

.hero-subtitle-large {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--color-orange);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border-radius: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.4);
    border: 1px solid var(--color-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.6);
}

.btn-secondary {
    background-color: var(--color-gray);
    color: var(--color-white);
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray-light);
}

.btn-tertiary:hover {
    background-color: var(--color-gray);
    border-color: var(--color-white);
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
}

/* SECTION STYLES */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-white-off);
    font-weight: 300;
}

.section-subtitle.danger {
    color: var(--color-red);
}

/* CALCULATOR SECTION */
.calculator-section {
    background-color: var(--color-dark);
    padding: 8rem 0;
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-gray);
    padding: 3rem;
    box-shadow: var(--shadow-large);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--color-gray-light);
    margin-bottom: 3rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    width: 16.66%;
    transition: width var(--transition-slow);
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-help {
    color: var(--color-white-off);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* RADIO CARDS */
.radio-group,
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.radio-card,
.checkbox-card {
    position: relative;
    cursor: pointer;
}

.radio-card input,
.checkbox-card input {
    position: absolute;
    opacity: 0;
}

.radio-label,
.checkbox-label {
    display: block;
    padding: 1.5rem;
    background-color: var(--color-gray-light);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.radio-card:hover .radio-label,
.checkbox-card:hover .checkbox-label {
    background-color: var(--color-dark);
    border-color: var(--color-gold);
}

.radio-card input:checked~.radio-label,
.checkbox-card input:checked~.checkbox-label {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.3);
}

/* FORM INPUTS */
.input-field {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--color-gray-light);
    border: 2px solid var(--color-gray-light);
    color: var(--color-white);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-fast);
}

/* Hide number input spinners for cleaner UI */
.input-field::-webkit-outer-spin-button,
.input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-field[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.input-field:focus {
    outline: none;
    border-color: var(--color-orange);
    background-color: var(--color-dark);
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.2);
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-prefix-select {
    width: 110px;
    padding: 1.2rem 0.8rem;
    background-color: var(--color-gray-light);
    border: 2px solid var(--color-gray-light);
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.phone-prefix-select:focus {
    outline: none;
    border-color: var(--color-orange);
    background-color: var(--color-dark);
}

.phone-input {
    flex: 1;
}

.input-with-unit {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-unit {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white-off);
    font-weight: 600;
    pointer-events: none;
}

/* SLIDER */
.slider-container {
    margin-bottom: 2rem;
}

.slider {
    width: 100%;
    height: 8px;
    background: var(--color-gray-light);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--color-orange);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.5);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--color-orange);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 149, 0, 0.5);
}

.slider-value {
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-top: 1.5rem;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(255, 149, 0, 0.3);
}

/* HELP TOOLTIP */
.help-tooltip {
    margin-bottom: 2rem;
}

.help-button {
    background-color: transparent;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-button:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.8rem;
}

.help-button:hover .help-icon {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.help-content {
    display: none;
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: var(--color-gray-light);
    border-left: 3px solid var(--color-orange);
    animation: fadeIn 0.3s ease;
}

.help-content.active {
    display: block;
}

.help-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-transform: none;
}

.help-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.help-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-white-off);
}

.help-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-orange);
}

.help-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--color-dark);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-white-off);
}

/* OPTIONAL FIELDS */
.optional-fields {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-light);
}

.toggle-optional {
    background: none;
    border: none;
    color: var(--color-orange);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    text-decoration: underline;
}

.optional-content {
    display: none;
}

.optional-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* STEP NAVIGATION */
.step-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-navigation .btn {
    flex: 1;
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 2001;
    background-color: var(--color-gray);
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-large);
    animation: slideInUp 0.4s ease;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-subtitle {
    color: var(--color-white-off);
    margin-bottom: 2rem;
}

.checkbox-label-inline {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label-inline input {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label-inline a {
    color: var(--color-orange);
    text-decoration: underline;
}

/* RESULTS SECTION */
.results-section {
    background-color: var(--color-black);
    padding: 8rem 0;
}

.results-section.hidden {
    display: none;
}

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

.result-card {
    background-color: var(--color-dark);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
}

.result-card.highlight {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    transform: scale(1.05);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.result-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--color-white-off);
}

.result-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-red);
}

.result-card.highlight .result-value {
    color: var(--color-white);
}

/* EMOTIONAL LOSS STYLING */
.loss-header {
    margin-bottom: 2rem;
}

.loss-title {
    color: var(--color-red) !important;
}

.flame-icon {
    animation: flameFlicker 0.5s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes flameFlicker {
    0% {
        transform: scale(1) rotate(-3deg);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.1) rotate(3deg);
        opacity: 1;
    }
}

/* Money Drain Bar */
.loss-drain-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.drain-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-white-off);
    margin-bottom: 0.75rem;
}

.drain-icon {
    animation: moneyFly 1s ease-in-out infinite;
}

@keyframes moneyFly {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.drain-bar {
    height: 8px;
    background-color: var(--color-gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.drain-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff4444, #ff0000, #cc0000);
    border-radius: 4px;
    animation: drainPulse 2s ease-in-out infinite;
}

@keyframes drainPulse {

    0%,
    100% {
        width: 60%;
        box-shadow: 0 0 10px #ff0000;
    }

    50% {
        width: 90%;
        box-shadow: 0 0 20px #ff0000, 0 0 30px #ff4444;
    }
}

/* Loss Card Variations */
.loss-card {
    position: relative;
    overflow: hidden;
}

.loss-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.loss-value {
    color: var(--color-red);
}

.loss-pain {
    display: block;
    font-size: 0.75rem;
    color: var(--color-white-off);
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Main yearly card - most impactful */
.loss-card-main {
    animation: alarmPulse 1.5s ease-in-out infinite;
}

.loss-value-main {
    font-size: 3rem !important;
    color: var(--color-white) !important;
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
}

@keyframes alarmPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 149, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 149, 0, 0.6), 0 0 60px rgba(255, 149, 0, 0.3);
    }
}

/* Severe loss (5 years) */
.loss-card-severe {
    border: 2px solid rgba(255, 68, 68, 0.5);
}

.loss-value-severe {
    color: #ff4444 !important;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.4);
}

/* Critical loss (10 years) */
.loss-card-critical {
    border: 2px solid rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, var(--color-gray-light) 100%);
}

.loss-value-critical {
    color: #ff0000 !important;
    font-size: 2.8rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    animation: criticalBlink 1s ease-in-out infinite;
}

@keyframes criticalBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Loss comparison text */
.loss-comparison {
    display: block;
    font-size: 0.75rem;
    color: var(--color-orange);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Pain Statement */
.pain-statement {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
}

.pain-text {
    font-size: 1.2rem;
    color: var(--color-white);
    margin: 0;
}

.pain-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.pain-text strong {
    color: var(--color-red);
    font-size: 1.4rem;
}

/* RECOVERY SECTION */
.recovery-section {
    margin: 5rem 0;
}

.recovery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.recovery-card {
    background-color: var(--color-dark);
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--color-orange);
    box-shadow: 0 4px 24px rgba(255, 149, 0, 0.3);
}

.recovery-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.recovery-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-white-off);
}

.recovery-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-orange);
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.4);
}

/* COMPARISON */
.comparison-section {
    margin: 5rem 0;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.comparison-bars {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    margin-bottom: 2rem;
}

.comparison-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-bar {
    height: 50px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.comparison-bar.loss {
    background-color: var(--color-red);
}

.comparison-bar.gain {
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.4);
}

.comparison-value {
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 120px;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 2rem;
    background-color: var(--color-dark);
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-white-off);
    margin-bottom: 2rem;
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--color-dark);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-gray);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-cta {
    color: var(--color-orange);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-title {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
}

.service-description {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-white-off);
    line-height: 1.6;
}

.service-price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
    font-family: var(--font-display);
}

/* HOW IT WORKS */
.how-section {
    background-color: var(--color-black);
    padding: 8rem 0;
}

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

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

.how-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-orange);
    font-family: var(--font-display);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.how-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.how-description {
    color: var(--color-white-off);
}

/* CONTACT SECTION */
.contact-section {
    background-color: var(--color-dark);
    padding: 8rem 0;
}

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

.contact-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 1.3rem;
    color: var(--color-white-off);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ========================================
   NEW CONTACT SECTION (Split Layout)
   ======================================== */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-info {
    background-color: var(--color-black);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white-off);
    margin-bottom: 1.5rem;
}

.contact-main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-white-off);
    margin-bottom: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
    margin-bottom: 3rem;
}

.why-choose-us h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-white-off);
}

.why-us-item .check-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-item .check-icon::before {
    content: '✓';
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Next Steps Section */
.next-steps {
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
}

.next-steps h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: none;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: -0.75rem;
    width: 1px;
    height: 40px;
    background-color: var(--color-gray-light);
    transform: rotate(15deg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-gray);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.step-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.step-item p {
    font-size: 0.8rem;
    color: var(--color-white-off);
    line-height: 1.5;
}

/* Contact Form Wrapper (White Column) */
.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-wrapper .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    text-transform: none;
}

.contact-form-wrapper .form-title-icon {
    display: inline-block;
    margin-left: 0.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.contact-form label .required {
    color: var(--color-red);
}

.contact-form .input-field-light {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .input-field-light:focus {
    outline: none;
    border-color: var(--color-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.contact-form .input-field-light::placeholder {
    color: #999;
}

.contact-form select.input-field-light {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Legal Checkboxes */
.legal-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.legal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.legal-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    cursor: pointer;
    accent-color: var(--color-black);
    flex-shrink: 0;
}

.legal-checkbox .legal-text {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #666;
}

.legal-checkbox .legal-text a {
    color: var(--color-black);
    text-decoration: underline;
}

.legal-checkbox .legal-text a:hover {
    color: var(--color-orange);
}

/* Submit Button */
.contact-form .btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1rem;
}

.contact-form .btn-submit:hover {
    background-color: var(--color-gray);
    transform: translateY(-2px);
}

/* ========================================
   NEW FOOTER
   ======================================== */
.footer-new {
    background-color: var(--color-black);
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
}

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

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

.footer-col ul li a {
    color: var(--color-white-off);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-orange);
}

/* Solutions Column - Two Sub-columns */
.footer-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
}

.footer-logo-section img {
    max-width: 250px;
    height: auto;
}

.footer-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-gray);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--color-gray-light);
}

.footer-cta-btn:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray);
    font-size: 0.85rem;
    color: var(--color-white-off);
}

.footer-bottom-new a {
    color: var(--color-white-off);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-new a:hover {
    color: var(--color-orange);
}

.footer-bottom-new .separator {
    color: var(--color-gray-light);
}

/* ========================================
   RESPONSIVE - New Contact & Footer
   ======================================== */
@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 4rem 2rem;
    }

    .contact-form-wrapper {
        padding: 3rem 2rem;
    }

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

    .footer-logo-section {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .step-item:not(:last-child)::after {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-solutions-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-new {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* OLD FOOTER (keeping for backwards compatibility) */
.footer {
    background-color: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-gray);
}

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--color-white-off);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--color-white-off);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
    color: var(--color-white-off);
    font-size: 0.9rem;
}

/* COST CALCULATOR (Always Visible) */
.cost-calculator {
    background-color: var(--color-gray-light);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.cost-calculator .form-row {
    margin-bottom: 1.25rem;
}

.cost-calculator .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 500;
}

.field-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-white-off);
    opacity: 0.7;
}

/* LIVE RESULT BOX (Prominent Formula Display) */
.cost-result-box {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-dark) 100%);
    border: 2px solid var(--color-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.2);
}

.cost-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.formula-label {
    font-size: 0.75rem;
    color: var(--color-white-off);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.formula-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    font-family: var(--font-display);
}

.formula-operator {
    font-size: 1.5rem;
    color: var(--color-orange);
    font-weight: 700;
}

.cost-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.total-label {
    font-size: 1rem;
    color: var(--color-white-off);
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-display);
}

.cost-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    text-align: center;
}

.final-divider {
    font-size: 0.9rem;
    color: var(--color-white-off);
    margin-bottom: 0.5rem;
}

.cost-per-hour {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--color-orange);
    text-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 149, 0, 0.8), 0 0 40px rgba(255, 149, 0, 0.4);
    }
}

/* BREAKDOWN SECTION */
.breakdown-section {
    margin: 5rem 0;
    padding-top: 3rem;
    border-top: 1px solid var(--color-gray);
}

.breakdown-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.breakdown-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breakdown-card {
    flex: 0 1 350px;
    width: 100%;
    max-width: 380px;
    background-color: var(--color-dark);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
}

.breakdown-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

/* Urgency borders */
.breakdown-card.urgency-critical {
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.breakdown-card.urgency-high {
    border-color: var(--color-orange);
    box-shadow: 0 0 15px rgba(255, 149, 0, 0.2);
}

.breakdown-card.urgency-medium {
    border-color: var(--color-gold);
}

.breakdown-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray);
}

.breakdown-icon {
    font-size: 1.5rem;
}

.breakdown-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-display);
}

/* Recovery amount - prominent */
.breakdown-recovery {
    text-align: center;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
    margin: 0 -1.5rem;
    padding: 1rem 1.5rem;
}

.recovery-amount {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-orange);
}

.recovery-period {
    font-size: 1rem;
    color: var(--color-white-off);
    font-weight: 400;
}

/* Loss/Recovery text colors */
.loss-text {
    color: #e74c3c !important;
}

.recovery-text {
    color: #2ecc71 !important;
}

/* Recovery detail section (rate hero + monthly) */
.breakdown-recovery-detail {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-gray);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.recovery-rate-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.recovery-rate-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}

.recovery-rate-label {
    font-size: 0.7rem;
    color: var(--color-white-off);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.recovery-monthly {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-white-off);
}

.recovery-monthly-icon {
    font-size: 1.1rem;
}

.recovery-monthly-text {
    font-weight: 600;
    color: var(--color-orange);
    font-family: var(--font-display);
}

.recovery-monthly-hint {
    font-weight: 400;
    color: var(--color-white-off);
    font-family: var(--font-body, sans-serif);
    font-size: 0.85rem;
}

/* Hours freed in summary */
.summary-hours-freed {
    text-align: center;
    padding: 0.75rem;
    background-color: rgba(46, 204, 113, 0.08);
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.hours-freed-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.hours-freed-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2ecc71;
}

/* Positive highlight */
.summary-highlight-positive {
    background-color: rgba(46, 204, 113, 0.1) !important;
}

.highlight-positive {
    color: #2ecc71 !important;
}

/* Subtle urgency note */
.summary-urgency-subtle {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-white-off);
    opacity: 0.7;
    margin-bottom: 0.75rem;
    font-style: italic;
}

/* Service info */
.breakdown-service {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-gray);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-icon {
    font-size: 1.2rem;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

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

.price-label {
    font-size: 0.8rem;
    color: var(--color-white-off);
}

.price-value {
    font-weight: 600;
    color: var(--color-white);
}

/* ROI Display */
.breakdown-roi {
    text-align: center;
    padding: 1.25rem 0;
}

.roi-multiplier {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}

.breakdown-roi.urgency-critical .roi-value {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    animation: criticalPulse 1s ease-in-out infinite;
}

.breakdown-roi.urgency-high .roi-value {
    color: var(--color-orange);
    text-shadow: 0 0 15px rgba(255, 149, 0, 0.4);
}

.breakdown-roi.urgency-medium .roi-value {
    color: var(--color-gold);
}

.breakdown-roi.urgency-normal .roi-value {
    color: var(--color-white);
}

@keyframes criticalPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.roi-label {
    font-size: 0.75rem;
    color: var(--color-white-off);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-urgency {
    font-size: 0.85rem;
    font-weight: 600;
}

.urgency-critical .roi-urgency {
    color: #ff4444;
}

.urgency-high .roi-urgency {
    color: var(--color-orange);
}

.urgency-medium .roi-urgency {
    color: var(--color-gold);
}

/* Impact bar */
.breakdown-bar-container {
    margin-top: 1rem;
}

.breakdown-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-white-off);
    margin-bottom: 0.4rem;
}

.breakdown-bar {
    height: 6px;
    background-color: var(--color-gray);
    border-radius: 3px;
    overflow: hidden;
}

.breakdown-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-gold) 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Summary Card */
.breakdown-summary-card {
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-dark) 100%);
    border: 3px solid var(--color-orange);
    border-radius: 12px;
    padding: 2rem;
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 2rem auto 0;
    box-shadow: 0 0 40px rgba(255, 149, 0, 0.3);
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-icon {
    font-size: 2rem;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-body {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-label {
    color: var(--color-white-off);
}

.summary-value {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.summary-value.positive {
    color: var(--color-orange);
}

.summary-highlight {
    text-align: center;
    padding: 0.75rem;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 6px;
    margin-top: 0.5rem;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--color-red);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    margin: 1rem 0;
}

/* Long-term Projection Rows */
.summary-projections {
    padding: 0.75rem 0;
}

.summary-projections-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-align: center;
}

.summary-projection-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.summary-projection-row:hover {
    background: rgba(255, 149, 0, 0.08);
}

.projection-period {
    font-size: 0.9rem;
    color: var(--color-white-off);
    font-weight: 500;
}

.projection-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
}

.projection-1y {
    color: #2ecc71;
}

.projection-5y {
    color: #27ae60;
    font-size: 1.1rem;
}

.projection-10y {
    color: #1abc9c;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(26, 188, 156, 0.4);
}

.summary-roi {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 149, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.summary-roi-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-white-off);
    margin-bottom: 0.5rem;
}

.summary-roi-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--color-orange);
    text-shadow: 0 0 30px rgba(255, 149, 0, 0.5);
}

.summary-roi.urgency-critical .summary-roi-value {
    color: #ff4444;
    animation: criticalPulse 1s ease-in-out infinite;
}

.summary-payback {
    text-align: center;
    font-size: 1rem;
    color: var(--color-white);
}

.summary-payback strong {
    color: var(--color-orange);
    font-size: 1.1rem;
}

.summary-cta {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 149, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 149, 0, 0.7);
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .header-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Header NOT sticky on mobile */
    .header {
        position: relative;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        font-size: 0.75rem;
        justify-content: center;
    }

    .logo {
        margin-bottom: 0.25rem;
    }

    .logo img {
        height: 28px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .calculator-wrapper {
        padding: 2rem 1.5rem;
    }

    .radio-group,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

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

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

    .step-navigation {
        flex-direction: column;
    }

    section {
        padding: 4rem 0;
    }
}

/* UTILITY CLASSES */
.hidden {
    display: none !important;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

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

/* ========================================
   DIVERGENT COMPARISON CHART
   ======================================== */

.divergent-comparison-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: var(--color-dark);
    border-radius: 0;
}

.divergent-chart {
    margin: 2rem 0;
}

.divergent-bar-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-height: 200px;
}

.divergent-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 45%;
}

.loss-side {
    align-items: flex-end;
}

.recovery-side {
    align-items: flex-start;
}

.divergent-bar-wrapper {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.loss-side .divergent-bar-wrapper {
    justify-content: flex-end;
}

.recovery-side .divergent-bar-wrapper {
    justify-content: flex-start;
}

.divergent-bar {
    height: 60px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.loss-bar {
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
    border-radius: 4px 0 0 4px;
}

.recovery-bar {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5);
    border-radius: 0 4px 4px 0;
}

.divergent-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
}

.center-line {
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    border-radius: 2px;
}

.center-label {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.divergent-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

.loss-side .divergent-label {
    align-items: flex-end;
    text-align: right;
}

.recovery-side .divergent-label {
    align-items: flex-start;
    text-align: left;
}

.divergent-icon {
    font-size: 1.5rem;
}

.divergent-text {
    font-size: 0.9rem;
    color: var(--color-white-off);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.divergent-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.loss-text {
    color: var(--color-red);
}

.recovery-text {
    color: #22c55e;
}

.divergent-caption {
    text-align: center;
    color: var(--color-white-off);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

/* ========================================
   URGENCY BLOCK
   ======================================== */

.urgency-block {
    margin: 4rem auto;
    max-width: 800px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15) 0%, rgba(230, 57, 70, 0.05) 100%);
    border: 2px solid var(--color-red);
    border-radius: 0;
    animation: urgencyGlow 2s infinite;
}

@keyframes urgencyGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(230, 57, 70, 0.6);
    }
}

.urgency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.urgency-block .urgency-icon {
    font-size: 2.5rem;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.urgency-title {
    font-size: 2rem;
    color: var(--color-red);
    margin: 0;
    text-transform: uppercase;
}

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

.urgency-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-white-off);
    margin-bottom: 1.5rem;
}

.urgency-text strong {
    color: var(--color-red);
}

.urgency-competitors {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.competitor-icon {
    margin-right: 0.5rem;
}

.urgency-competitors strong {
    color: var(--color-orange);
}

.urgency-final {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 57, 70, 0.3);
}

.urgency-final p {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: var(--color-white);
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: var(--color-red);
    text-decoration-thickness: 3px;
    color: var(--color-white);
    font-weight: 600;
    opacity: 0.85;
}

.urgency-bold {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--color-red) !important;
}

/* Psychological alarm keywords */
.alarm-word {
    color: var(--color-orange);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(255, 149, 0, 0.4);
}

.alarm-critical {
    color: var(--color-red) !important;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(230, 57, 70, 0.5);
    animation: alarmPulse 2.5s ease-in-out infinite;
}

@keyframes alarmPulse {

    0%,
    100% {
        text-shadow: 0 0 12px rgba(230, 57, 70, 0.3);
    }

    50% {
        text-shadow: 0 0 25px rgba(230, 57, 70, 0.7), 0 0 50px rgba(230, 57, 70, 0.3);
    }
}

/* ========================================
   PULSE BUTTON
   ======================================== */

.btn-pulse {
    animation: pulse 2s infinite;
    position: relative;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 149, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 149, 0, 0);
    }
}

.final-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

/* ========================================
   URGENCY OPTIONS (Qualification Step)
   ======================================== */

.urgency-options .radio-card.urgency-high .radio-label {
    border-color: var(--color-red);
}

.urgency-options .radio-card.urgency-high input:checked~.radio-label {
    background-color: var(--color-red);
    border-color: var(--color-red);
}

.urgency-options .radio-card.urgency-medium .radio-label {
    border-color: var(--color-orange);
}

.urgency-options .radio-card.urgency-medium input:checked~.radio-label {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

/* ========================================
   RESPONSIVE - DIVERGENT CHART
   ======================================== */

@media (max-width: 768px) {
    .divergent-bar-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .divergent-side {
        max-width: 100%;
        width: 100%;
    }

    .loss-side,
    .recovery-side {
        align-items: center;
    }

    .divergent-bar-wrapper {
        height: 50px;
        justify-content: center !important;
    }

    .divergent-bar {
        height: 40px;
        max-width: 80%;
    }

    .loss-bar,
    .recovery-bar {
        border-radius: 4px;
    }

    .divergent-center {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .center-line {
        height: 4px;
        width: 80%;
    }

    .divergent-label {
        align-items: center !important;
        text-align: center !important;
    }

    .divergent-value {
        font-size: 1.5rem;
    }

    .urgency-block {
        padding: 2rem 1.5rem;
    }

    .urgency-title {
        font-size: 1.5rem;
    }

    .urgency-text {
        font-size: 1rem;
    }

    .urgency-final p {
        font-size: 1.1rem;
    }

    .urgency-bold {
        font-size: 1.2rem !important;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (< 480px)
   ======================================== */
@media (max-width: 480px) {

    /* Hero Section */
    .hero-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .hero-subtitle-large {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    /* Buttons - Touch Friendly */
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-primary {
        width: 90%;
        max-width: 300px;
    }

    /* Calculator */
    .calculator-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

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

    .step-title {
        font-size: 1.2rem;
    }

    .input-field,
    .input-field-light {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 48px;
    }

    select.input-field-light {
        font-size: 16px;
        min-height: 48px;
    }

    /* Radio/Checkbox - Touch Targets */
    .radio-label,
    .checkbox-label {
        min-height: 48px;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Results Section */
    .result-card {
        padding: 1.5rem 1rem;
    }

    .lost-money {
        font-size: 2rem;
    }

    .summary-card {
        padding: 1.5rem 1rem;
    }

    /* Divergent Chart */
    .divergent-value {
        font-size: 1.3rem;
    }

    .divergent-description {
        font-size: 0.85rem;
    }

    /* Urgency Block */
    .urgency-block {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem;
    }

    .urgency-title {
        font-size: 1.3rem;
    }

    .urgency-text {
        font-size: 0.95rem;
    }

    /* Navigation */
    .header-container {
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.75rem;
    }

    .logo img {
        height: 25px;
    }

    /* Footer */
    .footer-bottom-new {
        font-size: 0.75rem;
        padding: 1rem 0.5rem;
    }

    .footer-bottom-new a {
        padding: 0.5rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Qualification Step */
    .qualification-group {
        margin-bottom: 1.5rem;
    }

    .qualification-label {
        font-size: 1rem;
    }
}