body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #10203f;
    background-color: #f6f8fb;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(84, 131, 255, 0.35), transparent 34%),
        linear-gradient(135deg, #07152d 0%, #0d2f63 52%, #1967d2 100%);
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
        url("../img/background-1.jpeg") center/cover no-repeat;
    opacity: 0.14;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-slider {
    position: relative;
}

.hero-slides {
    position: relative;
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker {
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.section-kicker.light {
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hero-section h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.06;
    font-weight: 800;
}

.hero-text,
.section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #5c6b88;
}

.hero-text {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.btn-hero-primary,
.btn-hero-secondary,
.cta-primary,
.cta-secondary {
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-stat-card {
    padding: 18px;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1;
}

.hero-stat-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.hero-visual-card--warm {
    background: rgba(255, 213, 153, 0.08);
}

.hero-visual-card--green {
    background: rgba(101, 179, 106, 0.11);
}

.hero-visual-card {
    position: relative;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
}

.hero-visual-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.hero-floating-note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #10203f;
    box-shadow: 0 12px 28px rgba(7, 21, 45, 0.18);
    font-weight: 600;
}

.note-top {
    top: 28px;
    left: -20px;
}

.note-bottom {
    right: -18px;
    bottom: 28px;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.hero-slider-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-2px);
}

.hero-slider-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-slider-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.hero-slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.trust-section {
    padding: 0 0 10px;
    margin-top: -26px;
    position: relative;
    z-index: 2;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: 0 18px 44px rgba(10, 26, 58, 0.08);
}

.trust-bar span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    border-radius: 14px;
    background-color: #f1f5ff;
    color: #11306b;
    font-weight: 700;
}

.story-section,
.why-different-section,
.go-green-section,
.highlights-section,
.workflow-section,
.cta-section {
    padding: 84px 0;
}

.why-different-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(77, 140, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.why-different-section .section-heading {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.why-different-grid {
    margin-top: 8px;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2.5rem;
}

.why-different-grid > div {
    display: flex;
}

.why-different-card {
    width: 100%;
    min-height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #dbe7fb;
    box-shadow: 0 20px 48px rgba(10, 26, 58, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-different-card:hover {
    transform: translateY(-4px);
    border-color: #c5d8fb;
    box-shadow: 0 24px 54px rgba(10, 26, 58, 0.12);
}

.why-different-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, #0d6efd 0%, #2f7cff 100%);
    color: #ffffff;
    font-size: 1.15rem;
    box-shadow: 0 16px 30px rgba(47, 124, 255, 0.22);
}

.why-different-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    line-height: 1.45;
    font-weight: 800;
    color: #10203f;
}

.why-different-card p {
    margin: 0;
    color: #5f6f86;
    line-height: 1.75;
}

.why-different-note {
    max-width: 820px;
    margin: 30px auto 0;
    text-align: center;
    color: #4d5d75;
    font-size: 1.02rem;
    line-height: 1.8;
}

@media only screen and (min-width: 1200px) {
    .why-different-grid {
        --bs-gutter-x: 2.4rem;
        --bs-gutter-y: 3.4rem;
    }
}

.go-green-section {
    position: relative;
    background:
        radial-gradient(circle at top center, rgba(77, 140, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.go-green-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.go-green-section .container {
    position: relative;
    z-index: 1;
}

.go-green-story-card {
    position: relative;
    padding: 36px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ffffff 0%, #f4fbf5 100%);
    border: 1px solid #dcecdf;
    box-shadow: 0 24px 58px rgba(12, 24, 48, 0.08);
    overflow: hidden;
}

.go-green-story-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.14) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.go-green-story-copy__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: rgba(13, 110, 253, 0.1);
    color: #1253c9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.go-green-story-copy h3 {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 2.5vw, 2.75rem);
    line-height: 1.18;
    font-weight: 800;
    color: #10203f;
}

.go-green-story-copy p {
    margin: 0 0 16px;
    color: #566983;
    font-size: 1.03rem;
    line-height: 1.85;
}

.go-green-story-copy p:last-child {
    margin-bottom: 0;
}

.go-green-story-panel {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0d2d63 0%, #1c57b2 100%);
    box-shadow: 0 22px 50px rgba(12, 36, 84, 0.22);
    color: #ffffff;
}

.go-green-story-panel__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.go-green-story-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.go-green-feature {
    min-height: 100%;
    padding: 22px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.go-green-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.go-green-feature__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #dceaff;
    font-size: 18px;
}

.go-green-feature h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.4;
    font-weight: 700;
    color: #ffffff;
}

.go-green-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.problem-visual-section {
    position: relative;
    padding: 88px 0 34px;
    background:
        radial-gradient(circle at top center, rgba(77, 140, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.problem-visual-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.32;
    pointer-events: none;
}

.problem-visual-section .container {
    position: relative;
    z-index: 1;
}

.problem-visual-intro {
    max-width: 860px;
    margin: 0 auto 50px;
    padding: 22px 24px 0;
}

.problem-visual-grid {
    margin-top: 0;
    --bs-gutter-x: 2.3rem;
    --bs-gutter-y: 3.4rem;
    padding-top: 8px;
    padding-bottom: 22px;
}

.problem-visual-grid > div {
    display: flex;
}

.problem-visual-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0d1b46;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 54px rgba(12, 24, 48, 0.12);
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.problem-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%);
    opacity: 0.8;
    pointer-events: none;
}

.problem-visual-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 28px 62px rgba(12, 24, 48, 0.18);
}

.problem-visual-grid > div .problem-visual-card {
    min-height: 340px;
    height: 100%;
}

.problem-visual-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.problem-visual-card:hover img {
    transform: scale(1.06);
}

.problem-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 18, 40, 0.08) 0%, rgba(8, 18, 40, 0.22) 30%, rgba(8, 18, 40, 0.68) 72%, rgba(8, 18, 40, 0.92) 100%);
}

.problem-visual-topline {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 1;
}

.problem-visual-topline span,
.problem-visual-eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.problem-visual-topline span {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.problem-visual-content {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1;
    padding: 18px 18px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(7, 20, 45, 0.08), rgba(7, 20, 45, 0.34));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.problem-visual-eyebrow {
    margin-bottom: 16px;
    padding: 9px 13px;
    background: rgba(13, 110, 253, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.problem-visual-content p {
    margin: 0;
    max-width: 92%;
    color: #ffffff;
    font-size: clamp(1rem, 1.2vw, 1.32rem);
    line-height: 1.42;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.problem-solution-section {
    position: relative;
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f9fbff 12%, #ffffff 100%);
}

.problem-solution-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 48, 107, 0.12), transparent);
}

.problem-solution-section .section-heading {
    margin-bottom: 54px;
}

.solution-grid {
    --bs-gutter-x: 2.3rem;
    --bs-gutter-y: 3.2rem;
    padding-top: 10px;
}

.solution-grid > div {
    display: flex;
}

.solution-card {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 34px 30px 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.96)),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #dbe7fb;
    box-shadow: 0 24px 58px rgba(11, 28, 64, 0.09);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 26%),
        radial-gradient(circle at top right, rgba(77, 140, 255, 0.08), transparent 30%);
    pointer-events: none;
}

.solution-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 88px;
    height: 4px;
    border-bottom-right-radius: 999px;
    border-bottom-left-radius: 999px;
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
    opacity: 0.95;
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: #bfd5fb;
    box-shadow: 0 28px 56px rgba(11, 28, 64, 0.13);
}

.solution-card--accent {
    background: linear-gradient(145deg, #0d2a61 0%, #184fa6 100%);
    border-color: rgba(255, 255, 255, 0.14);
}

.solution-card--accent h3,
.solution-card--accent p,
.solution-card--accent .solution-step {
    color: #ffffff;
}

.solution-card--accent::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 34%);
}

.solution-card--accent::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(182, 211, 255, 0.9));
}

.solution-card--soft {
    background:
        linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
}

.solution-card--wide {
    padding-top: 38px;
    padding-bottom: 32px;
}

.solution-step {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 38px;
    margin-bottom: 22px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.10);
    color: #0d4fb3;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.solution-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    max-width: 94%;
    font-size: 1.52rem;
    line-height: 1.24;
    font-weight: 800;
    color: #10203f;
}

.solution-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5c6b88;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 92%;
}

.solution-bridge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 36px;
    padding: 30px 32px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, #0b2350 0%, #15428d 58%, #1f66d1 100%);
    box-shadow: 0 28px 60px rgba(11, 28, 64, 0.16);
    overflow: hidden;
    position: relative;
}

.solution-bridge::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.solution-bridge-copy,
.solution-bridge-link {
    position: relative;
    z-index: 1;
}

.solution-bridge-copy {
    max-width: 720px;
}

.solution-bridge-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-bridge h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.22;
    font-weight: 800;
}

.solution-bridge p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.8;
}

.solution-bridge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 190px;
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 14px;
    background: #ffffff;
    color: #0d2f63;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(5, 17, 39, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.solution-bridge-link:hover,
.solution-bridge-link:focus {
    color: #0d2f63;
    background: #f4f8ff;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(5, 17, 39, 0.22);
}

@media only screen and (min-width: 992px) {
    .problem-visual-grid > div {
        padding-top: 0;
        margin-top: 0;
    }

    .problem-visual-grid {
        --bs-gutter-y: 4rem;
    }

    .solution-grid {
        --bs-gutter-y: 3.8rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .problem-visual-grid {
        padding-top: 0;
        --bs-gutter-y: 3rem;
    }

    .problem-visual-grid > div {
        padding-top: 0;
    }

    .solution-grid {
        padding-top: 0;
        --bs-gutter-y: 2.8rem;
    }

    .solution-card h3,
    .solution-card p {
        max-width: 100%;
    }

    .go-green-story-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.story-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(12, 24, 48, 0.12);
}

.story-image-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding: 38px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(77, 140, 255, 0.24), transparent 30%),
        radial-gradient(circle at bottom left, rgba(13, 110, 253, 0.16), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #eaf3ff 100%);
    border: 1px solid #d3e2fb;
    box-shadow: 0 30px 70px rgba(12, 24, 48, 0.1);
    overflow: hidden;
}

.story-image-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(220, 235, 255, 0.46));
    border: 1px solid rgba(255, 255, 255, 0.82);
    pointer-events: none;
}

.story-image-card img {
    position: relative;
    z-index: 1;
    max-height: 470px;
    filter: drop-shadow(0 24px 36px rgba(13, 31, 71, 0.16));
}

.story-image-badge,
.story-image-note {
    position: absolute;
    z-index: 2;
}

.story-image-badge {
    top: 26px;
    left: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(12, 39, 88, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 34px rgba(7, 24, 53, 0.16);
    backdrop-filter: blur(10px);
}

.story-image-note {
    right: 28px;
    bottom: 28px;
    max-width: 240px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(206, 223, 250, 0.9);
    box-shadow: 0 20px 40px rgba(11, 28, 64, 0.12);
}

.story-image-note strong {
    display: block;
    margin-bottom: 8px;
    color: #0d2f63;
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
}

.story-image-note span {
    display: block;
    color: #4f6386;
    line-height: 1.6;
    font-size: 0.96rem;
}

.story-copy-shell {
    padding: 24px 0 24px 28px;
}

.story-copy-shell .section-text {
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.story-copy-col .section-title {
    max-width: 640px;
}

.story-copy-shell .section-kicker {
    margin-bottom: 18px;
}

.story-copy-shell .section-title {
    margin-bottom: 18px;
}

.section-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: #10203f;
}

.section-text.centered {
    max-width: 760px;
    margin: 0 auto;
}

.story-points {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.story-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #e3ebf8;
    box-shadow: 0 10px 26px rgba(9, 28, 61, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: landingCardFloatIn 0.75s ease both;
}

.story-point i,
.highlight-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #4d8cff);
    color: #ffffff;
    flex-shrink: 0;
}

.story-point h3,
.highlight-card h3,
.workflow-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
}

.story-point p,
.highlight-card p,
.workflow-card p,
.cta-card p {
    margin: 0;
    color: #5c6b88;
    line-height: 1.7;
}

.highlights-section {
    background-color: #ffffff;
}

.section-heading {
    margin-bottom: 42px;
}

.highlight-card,
.workflow-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background-color: #f8fbff;
    border: 1px solid #e3ebf8;
    box-shadow: 0 14px 34px rgba(12, 24, 48, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
    animation: landingCardFloatIn 0.75s ease both;
}

.highlight-icon {
    margin-bottom: 18px;
}

.story-point:hover,
.highlight-card:hover,
.workflow-card:hover {
    transform: translateY(-6px);
    border-color: #c9dafb;
    box-shadow: 0 22px 44px rgba(12, 24, 48, 0.11);
}

.story-points .story-point:nth-child(2),
.highlights-section .row > div:nth-child(2) .highlight-card,
.workflow-section .row > div:nth-child(2) .workflow-card {
    animation-delay: 0.1s;
}

.story-points .story-point:nth-child(3),
.highlights-section .row > div:nth-child(3) .highlight-card,
.workflow-section .row > div:nth-child(3) .workflow-card {
    animation-delay: 0.18s;
}

.highlights-section .row > div:nth-child(4) .highlight-card {
    animation-delay: 0.26s;
}

.highlights-section .row > div:nth-child(5) .highlight-card,
.highlights-section .row > div:nth-child(9) .highlight-card {
    animation-delay: 0.34s;
}

.highlights-section .row > div:nth-child(6) .highlight-card,
.highlights-section .row > div:nth-child(10) .highlight-card {
    animation-delay: 0.42s;
}

.highlights-section .row > div:nth-child(7) .highlight-card,
.highlights-section .row > div:nth-child(11) .highlight-card {
    animation-delay: 0.5s;
}

.highlights-section .row > div:nth-child(8) .highlight-card {
    animation-delay: 0.58s;
}

@keyframes landingCardFloatIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-point,
    .highlight-card,
    .workflow-card {
        animation: none;
        transition: none;
    }
}

.products-section {
    padding: 84px 0;
    background: linear-gradient(180deg, #f5f8fd 0%, #eef4ff 100%);
}

.products-wrapper {
    max-width: 1080px;
}

.products-label {
    font-size: 18px;
    font-weight: 700;
    color: #0d1b46;
    margin: 0;
}

.products-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 34px;
}

.products-select {
    max-width: 360px;
    height: 46px;
    border-radius: 10px;
}

.products-grid {
    margin-left: -12px;
    margin-right: -12px;
}

.product-col {
    padding-left: 12px;
    padding-right: 12px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.product-image-wrap {
    padding: 20px 20px 0;
}

.product-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 12px;
}

.product-content {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.product-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
}

.product-title a {
    color: #0d1b46;
    text-decoration: none;
    font-weight: 700;
}

.product-title a:hover {
    color: #0d6efd;
}

.product-card-button {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: auto;
}

.product-card-button:hover {
    background-color: #0b5ed7 !important;
}

.products-link-button {
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.products-link-button:hover {
    background-color: #0b5ed7 !important;
}

.products-empty {
    margin: 24px 0 0;
    text-align: center;
    color: #52627a;
    font-size: 18px;
}

.products-footer {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.testimonials-section {
    position: relative;
    padding: 92px 0 82px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.testimonials-grid {
    --bs-gutter-x: 1.8rem;
    --bs-gutter-y: 1.8rem;
}

.testimonials-grid > div {
    display: flex;
}

.testimonial-card {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce7fb;
    box-shadow: 0 18px 42px rgba(12, 24, 48, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 84px;
    height: 4px;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    background: linear-gradient(90deg, #0d6efd, #78aefe);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #0d6efd;
    background: linear-gradient(145deg, #0d2a61 0%, #1c57b2 100%);
    box-shadow: 0 24px 52px rgba(13, 63, 145, 0.22);
}

.testimonial-card--featured {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: #dce7fb;
}

.testimonial-card--featured::before {
    background: linear-gradient(90deg, #0d6efd, #78aefe);
}

.testimonial-card--featured .testimonial-quote,
.testimonial-card--featured .testimonial-author h3,
.testimonial-card--featured .testimonial-author span {
    color: inherit;
}

.testimonial-card--featured .testimonial-stars {
    color: #f5b301;
}

.testimonial-card:hover::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(197, 218, 255, 0.92));
}

.testimonial-card:hover .testimonial-quote,
.testimonial-card:hover .testimonial-author h3,
.testimonial-card:hover .testimonial-author span,
.testimonial-card:hover .testimonial-stars {
    color: #ffffff;
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #f5b301;
    display: inline-flex;
    gap: 6px;
    font-size: 15px;
}

.testimonial-quote {
    margin: 0 0 26px;
    flex: 1 1 auto;
    color: #31476f;
    font-size: 1.08rem;
    line-height: 1.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 24px rgba(12, 24, 48, 0.14);
}

.testimonial-card:hover .testimonial-author img {
    border-color: rgba(255, 255, 255, 0.9);
}

.testimonial-author > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-author h3 {
    margin: 0 0 4px;
    font-size: 1.02rem;
    font-weight: 800;
    color: #10203f;
    line-height: 1.2;
}

.testimonial-author span {
    color: #5c6b88;
    font-size: 0.95rem;
    line-height: 1.5;
}

.trial-cta-section {
    padding: 24px 0 92px;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.08), transparent 24%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.trial-cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.trial-cta-copy {
    padding-right: 10px;
}

.trial-cta-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.14;
    font-weight: 800;
    color: #10203f;
}

.trial-cta-copy p {
    margin: 0;
    max-width: 680px;
    color: #5c6b88;
    line-height: 1.8;
}

.trial-cta-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.trial-cta-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #23406f;
    font-weight: 700;
}

.trial-cta-points i {
    color: #0d6efd;
}

.trial-cta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
}

.trial-cta-button {
    min-width: 240px;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(13, 110, 253, 0.24);
}

.trial-cta-button:hover {
    box-shadow: 0 22px 40px rgba(13, 110, 253, 0.28);
}

.trial-cta-visual {
    position: relative;
}

.trial-preview-card {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid #dce7fb;
    box-shadow: 0 24px 54px rgba(12, 24, 48, 0.10);
}

.trial-preview-card::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 72%;
    height: 72%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(13, 110, 253, 0.02));
    z-index: -1;
}

.trial-preview-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.trial-preview-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d4def3;
}

.trial-preview-bar span:first-child {
    background: #ff8d8d;
}

.trial-preview-bar span:nth-child(2) {
    background: #ffca6b;
}

.trial-preview-bar span:nth-child(3) {
    background: #77d68b;
}

.trial-preview-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.trial-preview-content {
    padding: 20px 8px 6px;
}

.trial-preview-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.10);
    color: #0d4fb3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trial-preview-content h3 {
    margin: 14px 0 10px;
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 800;
    color: #10203f;
}

.trial-preview-content p {
    margin: 0;
    color: #5c6b88;
    line-height: 1.75;
}

.workflow-card {
    background-color: #ffffff;
}

.workflow-step {
    display: inline-flex;
    margin-bottom: 16px;
    color: #0d6efd;
    font-size: 28px;
    font-weight: 800;
}

.cta-section {
    padding-top: 12px;
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0b1d43, #144ba8);
    color: #ffffff;
    box-shadow: 0 24px 54px rgba(10, 26, 58, 0.18);
}

.cta-card h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.14;
    font-weight: 800;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-card .cta-primary,
.cta-card .cta-secondary {
    position: relative;
    overflow: hidden;
    min-width: 210px;
    border-width: 1px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.cta-card .cta-primary::after,
.cta-card .cta-secondary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 120%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.48s ease;
    pointer-events: none;
}

.cta-card .cta-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d2f63;
    box-shadow: 0 16px 34px rgba(6, 18, 43, 0.2);
}

.cta-card .cta-primary:hover,
.cta-card .cta-primary:focus {
    background: #edf4ff;
    border-color: #edf4ff;
    color: #0a2a5f;
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(6, 18, 43, 0.26);
}

.cta-card .cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.58);
    color: #ffffff;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cta-card .cta-secondary:hover,
.cta-card .cta-secondary:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d2f63;
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(6, 18, 43, 0.22);
}

.cta-card .cta-primary:hover::after,
.cta-card .cta-primary:focus::after,
.cta-card .cta-secondary:hover::after,
.cta-card .cta-secondary:focus::after {
    left: 120%;
}

.footer {
    background-color: #0d1b46;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer .logo {
    max-width: 200px;
}

.footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}

.footer .column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer .column p,
.footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    line-height: 1.6;
}

.footer .column a:hover {
    text-decoration: underline;
}

.footer .column ul {
    list-style: none;
    padding: 0;
}

.footer .column ul li {
    margin-bottom: 10px;
}

.footer .social-media {
    display: flex;
    align-items: center;
}

.footer .social-media a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgb(228, 232, 234);
    width: 100%;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 30;
}

.whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

@media only screen and (max-width: 768px) {
    .hero-section {
        padding: 78px 0 74px;
    }

    .hero-slides {
        min-height: auto;
    }

    .hero-stats,
    .trust-bar {
        grid-template-columns: 1fr;
    }

    .note-top,
    .note-bottom {
        position: static;
        margin-top: 14px;
    }

    .story-image-card img,
    .hero-visual-card img {
        height: 320px;
    }

    .story-image-card {
        min-height: auto;
        padding: 22px;
    }

    .story-image-card::before {
        inset: 12px;
    }

    .story-copy-shell {
        padding: 0;
    }

    .story-image-badge {
        top: 18px;
        left: 18px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .story-image-note {
        right: 18px;
        bottom: 18px;
        max-width: 210px;
        padding: 14px 14px 12px;
    }

    .hero-slider-controls {
        justify-content: center;
    }

    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-select {
        width: 100%;
        max-width: 100%;
    }

    .cta-card {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonials-section {
        padding: 76px 0 72px;
    }

    .trial-cta-section {
        padding-bottom: 72px;
    }

    .trial-cta-shell {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .trial-cta-copy {
        padding-right: 0;
    }

    .footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

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

    .problem-solution-section {
        padding-top: 52px;
    }

    .solution-bridge {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 24px;
    }

    .solution-bridge-link {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-slider__controls {
        gap: 12px;
    }

    .section-title,
    .cta-card h2 {
        font-size: 2rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-controls {
        gap: 12px;
    }

    .hero-slider-arrow {
        width: 46px;
        height: 46px;
    }

    .hero-stat-card,
    .go-green-story-card,
    .story-point,
    .why-different-card,
    .highlight-card,
    .workflow-card {
        padding: 20px;
    }

    .go-green-story-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .go-green-story-panel__pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .go-green-story-panel__grid {
        grid-template-columns: 1fr;
    }

    .go-green-story-copy h3 {
        font-size: 1.7rem;
    }

    .problem-visual-section {
        padding-top: 64px;
    }

    .problem-visual-card {
        min-height: 280px;
    }

    .problem-visual-grid {
        padding-top: 0;
        padding-bottom: 0;
    }

    .problem-visual-card img {
        min-height: 280px;
    }

    .problem-visual-content {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 16px 14px 12px;
    }

    .problem-visual-content p {
        max-width: 100%;
        font-size: 0.98rem;
    }

    .problem-visual-intro {
        margin-bottom: 28px;
        padding: 0;
    }

    .problem-visual-topline {
        top: 16px;
        left: 16px;
    }

    .problem-visual-topline span,
    .problem-visual-eyebrow {
        font-size: 11px;
    }

    .testimonial-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .trial-cta-copy h2 {
        font-size: 1.8rem;
    }

    .trial-cta-button {
        width: 100%;
        min-width: 0;
    }

    .trial-preview-card {
        padding: 14px;
        border-radius: 22px;
    }

    .trial-preview-image img {
        height: 220px;
        border-radius: 16px;
    }

    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.8;
    }

    .solution-card {
        padding: 24px 20px 20px;
        border-radius: 20px;
    }

    .solution-card h3 {
        font-size: 1.2rem;
    }

    .why-different-note {
        margin-top: 24px;
        font-size: 0.98rem;
        line-height: 1.7;
    }
}
