/* Calculator Page Specific Styles */

/* Calculator Hero Section */
.calculator-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5d4a 50%, #2d7a5f 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.calculator-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge i {
    color: #4ade80;
    font-size: 16px;
}

.hero-title {
    font-family: 'Century Gothic', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #4ade80, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Stats Cards Grid */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 140px;
    justify-content: center;
    gap: 12px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-card-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4ade80;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.stat-card-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.stat-card.calculator-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.1));
    border-color: rgba(74, 222, 128, 0.3);
}

.stat-card.calculator-card .stat-card-icon {
    background: rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Calculator Card */
.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 20px 0;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
}

.step-line {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 10px;
}

/* Form Styles */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.form-label i {
    color: #4ade80;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.required {
    color: #ef4444;
    font-weight: 700;
    margin-left: 4px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.input-prefix {
    position: absolute;
    left: 20px;
    color: #64748b;
    font-weight: 600;
    z-index: 2;
    font-size: 1.1rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    background: white;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
    transform: translateY(-1px);
}

.form-input[type="number"] {
    padding-left: 50px;
}

.form-input::placeholder, .form-select::placeholder {
    color: #64748b;
    opacity: 1;
}

.input-hint {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.4;
    font-style: italic;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.radio-option:hover {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #4ade80;
    background: #4ade80;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.radio-content {
    flex: 1;
}

.radio-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.radio-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

/* Calculate Button */
.calculate-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 222, 128, 0.4);
}

.calculate-btn:active {
    transform: translateY(0);
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    min-height: 100vh;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.results-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.result-card.primary {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.2));
    border-color: rgba(74, 222, 128, 0.3);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #4ade80;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 8px;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Savings Breakdown */
.savings-breakdown {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.savings-breakdown h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breakdown-label {
    min-width: 200px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.breakdown-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 6px;
    transition: width 1s ease;
}

.breakdown-fill.cost {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.breakdown-fill.profit {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.breakdown-value {
    min-width: 120px;
    text-align: right;
    font-weight: 600;
    color: white;
}

/* Comprehensive Results Styles */
.results-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    text-align: center;
}

/* Highlights Section */
.highlights-section {
    margin-bottom: 4rem;
}

.highlights-section h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlight-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
}

.export-section {
    text-align: center;
    margin-top: 2rem;
}

.export-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Financial Section */
.financial-section {
    margin-bottom: 4rem;
}

.financial-section h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.financial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.financial-card h4 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.investment-details, .savings-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investment-item, .savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.investment-item.total {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.investment-label, .savings-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.investment-value, .savings-value {
    font-weight: 700;
    color: #4ade80;
    font-size: 1.1rem;
}

.insights-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.insight-card h5 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.insight-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* System Section */
.system-section {
    margin-bottom: 4rem;
}

.system-section h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.system-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.system-card h4 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.spec-details, .generation-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item, .generation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.spec-label, .generation-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.spec-value, .generation-value {
    font-weight: 700;
    color: #4ade80;
    font-size: 1.1rem;
}

.generation-insight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.generation-insight p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.generation-insight p:last-child {
    margin-bottom: 0;
}

/* Environmental Section */
.environmental-section {
    margin-bottom: 4rem;
}

.environmental-section h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

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

.environmental-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.env-metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.env-value {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
}

.env-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.env-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    margin-bottom: 4rem;
    text-align: center;
}

.cta-section h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Results Actions */
.results-actions {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.consultation-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.consultation-header {
    text-align: center;
    margin-bottom: 40px;
}

.consultation-header h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.consultation-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 12px;
    color: #1e293b;
    font-weight: 500;
}

.feature-item i {
    color: #4ade80;
    font-size: 18px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.consultation-btn {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 41, 59, 0.4);
}

/* Footer styles removed - using main styles.css footer styling for consistency */

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide hero section on mobile devices */
    .calculator-hero {
        display: none;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .calculator-card {
        padding: 30px 20px;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .breakdown-label {
        min-width: auto;
    }
    
    .breakdown-value {
        min-width: auto;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Mobile centering for financial and system grids */
    .financial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .system-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .financial-card,
    .system-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Mobile centering for highlights grid */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .highlight-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Mobile centering for environmental grid */
    .environmental-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .environmental-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Mobile centering for insights section */
    .insights-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .insight-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .stat-card-number {
        font-size: 1.5rem;
    }
    
    .stat-card-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Hero section already hidden on mobile via 768px rule */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
    
    .consultation-header h3 {
        font-size: 1.5rem;
    }
    
    .stats-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
        min-height: 120px;
    }
    
    .stat-card-number {
        font-size: 1.3rem;
    }
    
    .stat-card-label {
        font-size: 0.75rem;
    }
    
    /* Extra small mobile centering adjustments */
    .financial-grid,
    .system-grid,
    .highlights-grid,
    .environmental-grid,
    .insights-section {
        max-width: 350px;
        padding: 0 10px;
    }
    
    .financial-card,
    .system-card,
    .highlight-card,
    .environmental-card,
    .insight-card {
        max-width: 320px;
        padding: 1.5rem;
    }
    
    /* Adjust card padding for very small screens */
    .financial-card h4,
    .system-card h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .investment-item,
    .savings-item,
    .spec-item,
    .generation-item {
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .investment-label,
    .savings-label,
    .spec-label,
    .generation-label {
        font-size: 0.9rem;
    }
    
    .investment-value,
    .savings-value,
    .spec-value,
    .generation-value {
        font-size: 1rem;
    }
}
