.corporate-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: url('../img/slider-02.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.corporate-hero .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.corporate-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.corporate-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.key-facts .fact-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 10px;
    min-width: 180px;
    backdrop-filter: blur(6px);
}

.fact-label {
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.75;
    display: block;
}

.fact-value {
    margin: 4px 0 0;
    font-weight: 600;
    font-size: 20px;
}

/* Images */
.image-pair-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    flex-wrap: nowrap;
}

/* Image styling */
.pair-img {
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Center badge */
.center-badge {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    z-index: 5;
    background: #ffffff;
    color: #1e293b;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

/* Tablet */
@media (min-width: 768px) {

    .center-badge {
        bottom: -20px;
        font-size: 14px;
    }
}

/* Desktop */
@media (min-width: 1200px) {

    .center-badge {
        bottom: -22px;
        font-size: 14px;
    }
}

/* Small mobile fix */
@media (max-width: 380px) {
    .pair-img {
        height: 140px;
    }

    .center-badge {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Corporate Overview Styles */
.corporate-overview-section {
    padding: 6rem 0;
    background-color: #fff;
}

.corporate-overview-section .lead-text {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.corporate-overview-section .cta-button svg {
    width: 20px;
    height: 20px;
}

.bg-light {
    background-color: #f8fafc;
}

.section-padding {
    padding: 6rem 0;
}

/* Horizontal Timeline Styles */
.timeline-wrapper-horizontal {
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;
}

.timeline-line-horizontal {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 0;
    border-radius: 4px;
}

/* Gradient line overlay */
.timeline-line-horizontal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #095763 0%, #095763 75%, #e5e7eb 100%);
    border-radius: 4px;
    opacity: 0.3;
}

.timeline-item-horizontal {
    text-align: center;
    position: relative;
    padding-top: 30px;
}

.timeline-dot-horizontal {
    width: 20px;
    height: 20px;
    background: #095763;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(9, 87, 99, 0.2);
    position: absolute;
    top: 26px;
    /* Aligns with the line */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-date-badge-horizontal {
    display: inline-block;
    background: #095763;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 25px;
    /* Spacing between badge and dot/line */
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
}

.timeline-box-horizontal {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
    margin-top: 20px;
    height: 100%;
}

.timeline-box-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(9, 87, 99, 0.1);
}

.timeline-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #095763;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .timeline-wrapper-horizontal {
        padding-top: 0;
    }

    .timeline-line-horizontal {
        display: none;
        width: 4px;
        height: 100%;
        left: 20px;
        top: 0;
        right: auto;
    }

    .timeline-line-horizontal {
        display: block;
        width: 2px;
        height: 100%;
        left: 20px;
        top: 0;
        right: auto;
        background: #e5e7eb;
    }

    .timeline-line-horizontal::after {
        background: linear-gradient(180deg, #095763 0%, rgba(9, 87, 99, 0.1) 100%);
    }

    .timeline-item-horizontal {
        text-align: left;
        padding-left: 60px;
        padding-top: 10px;
        margin-bottom: 30px;
    }

    .timeline-dot-horizontal {
        left: 27px;
        top: 15px;
        transform: none;
    }

    .timeline-date-badge-horizontal {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 10px;
    }

    .timeline-box-horizontal {
        margin-top: 10px;
    }
}

/* Product Portfolio Styles */
.product-portfolio-section {
    background: #ffffff;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.15);
}

/* Image area */
.product-image {
    height: 180px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Dark placeholder (like first card in image) */
.product-image.dark-bg {
    background: linear-gradient(180deg, #0e0e0e, #1c1c1c);
}

/* Panel texture style */
.product-image.panel-bg {
    background-image: url("https://images.unsplash.com/photo-1613665813446-82a78c468a1d");
}

/* Tag badge */
.badge-top {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ffffff;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-green {
    background: #095763;
    color: #fff;
}

/* Content */
.product-content {
    padding: 28px;
}

.product-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.product-desc {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 12px;
}

.feature-list i {
    color: #095763;
    font-size: 1rem;
    margin-top: 2px;
}

/* Link */
.datasheet-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #095763;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.datasheet-link:hover {
    color: #095763;
    transform: translateX(4px);
}

/* Highlights */
.highlight-wrapper {
    background: linear-gradient(180deg, #09576308, #ffffff);
    border-radius: 18px;
    padding: 40px 30px;
    border: 1px dashed #dbe4ee;
}

/* Individual card */
.highlight-card {
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(9, 87, 99, 0.18);
}

/* Soft accent glow */
.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9,87,99,0.08), transparent 60%);
    opacity: 0;
    transition: 0.3s ease;
}

.highlight-card:hover::before {
    opacity: 1;
}

/* Icon */
.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b6b78, #0b6674);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(15, 138, 157, 0.35);
}

/* Title */
.highlight-card h6 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

/* Description */
.highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .highlight-wrapper {
        padding: 25px 18px;
    }

    .highlight-card {
        padding: 22px 20px;
    }
}



/* Quality & Certifications Styles */
.quality-cert-section {
    background: #f8f9fb;
}

/* LEFT BLOCK */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 14px;
}

.cert-box {
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    font-weight: 600;
    color: #7a8794;
    transition: all 0.3s ease;
}

.cert-box:hover {
    transform: translateY(-3px);
}

.quality-list {
    padding-left: 18px;
}

.quality-list li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.quality-cta {
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
}

/* RIGHT ESG CARD */
.esg-card {
    background: #e9f8ef;
    border-radius: 18px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

.esg-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.esg-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.esg-points .dot {
    width: 12px;
    height: 12px;
    background: #e5b73b;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.esg-points strong {
    display: block;
    font-weight: 600;
}

.esg-points small {
    color: #5f6f67;
}

/* Sustainability & ESG Styles */
.esg-section {
    background-color: #fff;
    position: relative;
}

.esg-card {
    background: #fff;
    border: 1px dashed #eef2f6;
    border-radius: 16px;
    padding: 20px 25px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.esg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.3s ease;
    z-index: -1;
}

.esg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(9, 87, 99, 0.1);
}

.esg-card:hover::before {
    height: 100%;
    opacity: 0.03;
}

.esg-icon {
    border-radius: 50%;
    color: #095763;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.esg-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.esg-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* R&D Roadmap Styles */
.rnd-section {
    background: #f8fafc;
}

.rnd-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.rnd-title {
    color: #095763;
    font-weight: 700;
    font-size: 1.4rem;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.rnd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rnd-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.rnd-list li:last-child {
    margin-bottom: 0;
}

.rnd-list li i {
    color: #e5b73b;
    font-size: 1.4rem;
    background: rgba(229, 183, 59, 0.1);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.rnd-list li span {
    color: #334155;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 5px;
}

@media (max-width: 768px) {
    .rnd-box {
        padding: 25px;
    }
}

/* Leadership & Governance Styles */
.leadership-section {
    background: #fff;
    overflow: hidden;
}

.leadership-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.leadership-list .icon-box {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    /* Light green nuance or keep teal tint */
    background: rgba(9, 87, 99, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #095763;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.leadership-list .text-box h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.leadership-list .text-box p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.cta-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-outline:hover {
    background: #fff;
    color: #095763;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 87, 99, 0.2);
}

.leadership-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leadership-visual .visual-content {
    z-index: 2;
    position: relative;
}

.visual-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #e5b73b, #f59e0b);
    opacity: 0.2;
    filter: blur(40px);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(45deg, #fff, #e5e7eb);
    opacity: 0.1;
}

@media (max-width: 991px) {
    .leadership-visual {
        height: 300px;
        margin-top: 40px;
    }
}

/* Downloads & Technical Library Styles */
.download-section {
    background: #f8fafc;
}

.resource-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #095763;
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: #eef2f6;
    color: #095763;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: #095763;
    color: #fff;
}

.resource-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.resource-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.resource-link {
    color: #095763;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 8px;
    color: #095763;
}

/* FAQ */
.accordion .accordion-item {
    border: 1px solid #e5e5e5;
    padding: 28px 32px;
    margin-bottom: 20px;
}

.accordion-item {
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    text-transform: capitalize;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 100em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
    margin-top: 20px;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    margin-top: 0;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
}

@media screen and (max-width: 991px) {
    .accordion button {
        font-size: 1rem;
    }
}

/* Procurement Support Footer */
.procurement-support-box {
    background: linear-gradient(135deg, #095763 0%, #06404a 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(9, 87, 99, 0.15);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.procurement-support-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern-overlay.png') opacity(0.05);
    pointer-events: none;
}

.procurement-support-box h4 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
}

.procurement-support-box p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.procurement-support-box .cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #fff;
    color: #095763;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.procurement-support-box .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
    color: #095763;
}

/* Wrapper */
.procurement-bg-wrapper {
    position: relative;
    padding: 60px 20px;
}

/* Shared pattern style */
.bg-pattern {
    position: absolute;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
    animation: floatPattern 8s ease-in-out infinite;
}

/* Blue dots – top left */
.bg-pattern-blue {
    top: -40px;
    left: 30px;
    width: 180px;
    animation-delay: 0s;
}

/* Yellow dots – bottom right */
.bg-pattern-yellow {
    bottom: -40px;
    right: 50px;
    width: 200px;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes floatPattern {
    0% {
        transform: translateY(0) translateX(0);
    }

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

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

/* Keep content above background */
.procurement-support-box {
    position: relative;
    z-index: 2;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .bg-pattern {
        width: 120px;
        opacity: 0.12;
    }
}


/* Solar Calculator Promo */
.calculator-promo-section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.calculator-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.calculator-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #1e293b;
}

.calculator-features li i {
    color: #095763;
    font-size: 1.25rem;
    background: rgba(9, 87, 99, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.calculator-visual {
    position: relative;
    padding: 2rem;
}

.calc-card-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid #eef2f6;
    max-width: 450px;
    margin: 0 auto;
}

.mockup-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #095763;
    font-size: 1.1rem;
}

.mock-input {
    height: 12px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 100%;
}

.mock-result-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    width: 100%;
}

.calc-card-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(#095763 10%, transparent 60%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@media (max-width: 992px) {
    .custom-border {
        border-right: 0 !important;
    }
}

/* Calculator */
.solar-calculator-section {
    background: #f6f9fb;
}

.calculator-card {
    overflow: hidden;
}

.calculator-info {
    padding: 40px;
}

.calculator-info h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.calculator-info p {
    opacity: 0.9;
}

.benefits-list {
    padding-left: 18px;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.result-box {
    background: #f8fbfc;
    padding: 20px;
    border: 1px solid #e5eef2;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px dashed #ddd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item strong {
    color: #095763;
}