/* Equity Roll-Up Strategy Styles */

/* Scoped Wrapper to avoid conflicts */
.skyland-equity-rollup-wrapper {
    font-family: 'Inter', sans-serif;
    color: #1a202c;
    line-height: 1.6;
}

/* Hero Section */
.skyland-equity-rollup-wrapper .hero {
    position: relative;
    display: flex;
    /* Flexbox for centering */
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.skyland-equity-rollup-wrapper .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.skyland-equity-rollup-wrapper .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.skyland-equity-rollup-wrapper .hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Utilities */
.section-padding {
    padding: 4rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.bg-white {
    background: #ffffff;
}

.bg-light {
    background: #f8fafc;
}

.section-title {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #64748b;
}

.divider-gold {
    height: 3px;
    width: 60px;
    background: #d4af37;
    margin: 1rem auto;
}

/* Calculator Styles */
.calculator-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile default */
}

@media (min-width: 900px) {
    .calculator-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Inputs Column */
.calculator-inputs {
    padding: 2rem;
    background: #ffffff;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.input-value-display {
    color: #d4af37;
    /* Gold */
    font-weight: 700;
}

.input-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    margin-top: 0.5rem;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0f172a;
    /* Dark Blue */
    cursor: pointer;
    transition: background .15s ease-in-out;
}

input[type=range]::-webkit-slider-thumb:hover {
    background: #d4af37;
    /* Gold on hover */
}

input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #0f172a;
    cursor: pointer;
    transition: background .15s ease-in-out;
}

input[type=range]::-moz-range-thumb:hover {
    background: #d4af37;
}

/* Results Column */
.calculator-results {
    background: #0f172a;
    /* Dark Blue */
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.results-header h2 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: rgba(212, 175, 55, 0.1);
    /* Gold tint */
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    border-bottom: none;
}

.result-label {
    color: #cbd5e1;
    font-weight: 500;
}

.result-item.highlight .result-label {
    color: white;
    font-weight: 600;
}

.result-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.result-item.highlight .result-value {
    color: #d4af37;
    font-size: 1.5rem;
}

/* Strategy Steps */
.strategy-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.strategy-step-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 1.25rem;
}

.strategy-step-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Why It Works Grid */
.why-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-content h4 {
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-weight: 600;
}

.benefit-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}