:root {
    --home-primary: #1f6fff;
    --home-primary-deep: #0d43b7;
    --home-ink: #10203f;
    --home-text: #5e6c88;
    --home-surface: rgba(255, 255, 255, 0.78);
    --home-border: rgba(189, 209, 242, 0.72);
    --home-shadow: 0 24px 60px rgba(10, 26, 58, 0.08);
}

body {
    background:
        radial-gradient(circle at top left, rgba(88, 142, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 24%, #f8fbff 100%);
    color: var(--home-ink);
}

.home-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.home-kicker--blue {
    background: linear-gradient(135deg, #eef5ff 0%, #dfeeff 100%);
    color: #1253c9;
    box-shadow: inset 0 0 0 1px rgba(47, 124, 255, 0.12);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 84px;
    background:
        radial-gradient(circle at top left, rgba(93, 133, 255, 0.28), transparent 34%),
        radial-gradient(circle at 78% 20%, rgba(95, 203, 255, 0.18), transparent 24%),
        linear-gradient(135deg, #061631 0%, #0d2d63 46%, #1d63d8 100%);
    color: #ffffff;
}

.home-hero__glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: auto, 88px 88px, 88px 88px;
    pointer-events: none;
}

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

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

.home-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;
}

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

.home-hero__grid,
.home-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: center;
}

.home-hero__content h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    max-width: 12ch;
}

.home-hero__content p {
    margin: 0 0 28px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.84);
}

.home-hero__actions,
.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    position: relative;
    overflow: hidden;
}

.home-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.home-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.45s ease;
}

.home-btn:hover::after {
    left: 130%;
}

.home-btn--primary,
.home-btn--card {
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-deep) 100%);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(31, 111, 255, 0.24);
}

.home-btn--primary:hover,
.home-btn--card:hover {
    background: linear-gradient(135deg, #2c7cff 0%, #0c49c5 100%);
    color: #ffffff;
    box-shadow: 0 22px 40px rgba(31, 111, 255, 0.28);
}

.home-btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.home-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
}

.home-btn--light {
    background: #ffffff;
    color: #12306b;
}

.home-btn--light:hover {
    background: #eef4ff;
    color: #12306b;
}

.home-btn--outline-light {
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: #ffffff;
}

.home-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.home-stat {
    padding: 20px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

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

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

.home-hero__card {
    position: relative;
    padding: 22px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.home-hero__card--warm {
    background: rgba(255, 213, 153, 0.08);
}

.home-hero__card--green {
    background: rgba(101, 179, 106, 0.11);
}

.home-hero__card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
}

.home-hero__note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: #112142;
    font-weight: 600;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.home-hero__note--top {
    top: 28px;
    left: -18px;
}

.home-hero__note--bottom {
    right: -18px;
    bottom: 28px;
}

.home-hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    max-width: 420px;
}

.home-hero-slider-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    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;
}

.home-hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.home-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);
}

.home-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;
}

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

.home-trust {
    margin-top: -28px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}


.home-trust__bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(214, 227, 247, 0.9);
    box-shadow: 0 22px 50px rgba(12, 24, 48, 0.1);
    backdrop-filter: blur(14px);
}

.home-trust__bar span {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fbff 0%, #e9f2ff 100%);
    color: #12306b;
    font-weight: 700;
    text-align: center;
    padding: 12px 14px;
    line-height: 1.45;
    font-size: 14px;
    border: 1px solid rgba(188, 212, 251, 0.55);
}

.home-compare .home-section-heading {
    margin-bottom: 52px;
}

.home-compare .home-section-heading h2 {
    margin: 20px 0 22px;
}

.home-compare .home-section-heading p {
    max-width: 780px;
    margin: 0 auto;
}

.home-problem-solution {
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

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

.home-problem-solution__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.home-problem-card,
.home-solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #dfe8f7;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(12, 24, 48, 0.06);
    padding: 28px 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: homeCardRise 0.7s ease both;
}

.home-problem-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
}

.home-solution-card {
    background: linear-gradient(145deg, #eef5ff 0%, #f8fbff 100%);
    border-color: #cfe0fb;
    animation-delay: 0.08s;
}

.home-problem-card:hover,
.home-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(12, 24, 48, 0.12);
}

.home-problem-card::after,
.home-solution-card::after {
    content: "";
    position: absolute;
    inset: auto -46px -46px auto;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.16) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.home-problem-card__badge,
.home-solution-card__badge {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 18px;
    box-shadow: 0 12px 24px rgba(18, 48, 107, 0.12);
}

.home-problem-card__badge {
    background: linear-gradient(145deg, #fff2ee 0%, #ffe0d6 100%);
    color: #d94f2b;
}

.home-solution-card__badge {
    background: linear-gradient(145deg, #e9f3ff 0%, #d7e8ff 100%);
    color: #1253c9;
}

.home-problem-card h3,
.home-solution-card h3 {
    margin: 0 0 14px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #10203f;
}

.home-problem-card ul,
.home-solution-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.home-problem-card li,
.home-solution-card li {
    position: relative;
    padding-left: 30px;
    color: #4f6386;
    line-height: 1.7;
    transition: transform 0.2s ease, color 0.2s ease;
}

.home-problem-card:hover li,
.home-solution-card:hover li {
    transform: translateX(3px);
    color: #304766;
}

.home-problem-card li::before,
.home-solution-card li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 14px;
    line-height: 1;
    color: #2f7cff;
}

.home-problem-card li::before {
    content: "\f06a";
    color: #d94f2b;
}

.home-solution-card li::before {
    content: "\f058";
    color: #2f7cff;
}

@keyframes homeCardRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.home-overview,
.home-innovation,
.home-go-green,
.home-compare,
.home-competitor-comparison,
.home-office-productivity,
.home-security,
.home-problem-solution,
.home-why,
.home-story,
.home-usecase,
.home-products,
.home-process,
.home-faq,
.home-cta {
    padding: 104px 0;
}

.home-overview,
.home-process {
    background: #ffffff;
}

.home-innovation {
    background:
        radial-gradient(circle at top center, rgba(80, 150, 255, 0.14), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.home-go-green::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;
}

.home-go-green .home-shell {
    position: relative;
    z-index: 1;
}

.home-innovation .home-section-heading {
    max-width: 900px;
    margin-bottom: 40px;
}

.home-innovation .home-section-heading p + p {
    margin-top: 18px;
}

.home-innovation__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-innovation-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid #dfe8f7;
    background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 14px 34px rgba(12, 24, 48, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: homeCardRise 0.7s ease both;
}

.home-innovation-card:nth-child(2) {
    animation-delay: 0.06s;
}

.home-innovation-card:nth-child(3) {
    animation-delay: 0.12s;
}

.home-innovation-card:nth-child(4) {
    animation-delay: 0.18s;
}

.home-innovation-card:hover {
    transform: translateY(-6px);
    border-color: #cfe0fb;
    box-shadow: 0 22px 46px rgba(12, 24, 48, 0.1);
}

.home-innovation-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -40px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.14) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.home-innovation-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #0f4bb6 0%, #2f7cff 100%);
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 28px rgba(18, 83, 201, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-innovation-card:hover .home-innovation-card__icon {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 30px rgba(18, 83, 201, 0.22);
}

.home-innovation-card h3 {
    margin: 0 0 12px;
    font-size: 1.32rem;
    line-height: 1.35;
    font-weight: 800;
    color: #10203f;
}

.home-innovation-card p {
    margin: 0;
    color: #4f6386;
    line-height: 1.72;
}

.home-go-green__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;
}

.home-go-green__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;
}

.home-go-green__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.home-go-green__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;
}

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

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

.home-go-green__copy p:last-child {
    margin-bottom: 0;
}

.home-go-green__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;
}

.home-go-green__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;
}

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

.home-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;
}

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

.home-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;
}

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

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

.home-story__grid,
.home-compare__table {
    width: 100%;
}
.home-usecase-card {
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid #e3ebf8;
    box-shadow: 0 12px 34px rgba(12, 24, 48, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(12, 24, 48, 0.08);
    border-color: #d4e2fb;
}

.home-usecase-card h3,
.home-compare__bootstrap-table tbody th {
    margin: 18px 0 12px;
    font-weight: 700;
}

.home-compare {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.home-competitor-comparison {
    background:
        radial-gradient(circle at top center, rgba(93, 133, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-competitor-comparison .home-section-heading {
    max-width: 860px;
}

.home-competitor-comparison__table {
    margin-top: 10px;
    overflow-x: auto;
    border-radius: 26px;
    border: 1px solid #dfe8f7;
    box-shadow: 0 16px 38px rgba(12, 24, 48, 0.06);
    background: #ffffff;
}

.home-competitor-comparison__bootstrap-table {
    margin-bottom: 0;
    color: #4d5e7d;
    min-width: 920px;
}

.home-competitor-comparison__bootstrap-table th,
.home-competitor-comparison__bootstrap-table td {
    padding: 18px 20px;
    border-color: #e7eef9;
    line-height: 1.7;
    vertical-align: middle;
    font-size: 0.98rem;
}

.home-competitor-comparison__bootstrap-table thead th {
    background: #0d2d63;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 0;
    white-space: nowrap;
}

.home-competitor-comparison__bootstrap-table thead th:first-child {
    background: #0b1d43;
}

.home-competitor-comparison__bootstrap-table tbody th {
    background: #f8fbff;
    color: #10203f;
    font-weight: 700;
    width: 18%;
}

.home-competitor-comparison__bootstrap-table tbody tr {
    transition: background-color 0.2s ease;
}

.home-competitor-comparison__bootstrap-table tbody tr:hover td,
.home-competitor-comparison__bootstrap-table tbody tr:hover th {
    background-color: #fbfdff;
}

.home-competitor-comparison__highlight-col {
    background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
    color: #12306b;
    font-weight: 700;
}

.home-competitor-comparison__bootstrap-table tbody tr:hover .home-competitor-comparison__highlight-col {
    background: linear-gradient(180deg, #e6f0ff 0%, #f4f9ff 100%);
}

.home-competitor-comparison__note {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, #eef5ff 0%, #f9fbff 100%);
    border: 1px solid #d7e5fb;
    box-shadow: 0 12px 30px rgba(12, 24, 48, 0.05);
}

.home-competitor-comparison__note p {
    margin: 0;
    color: #304766;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}

.home-office-productivity {
    background:
        radial-gradient(circle at top left, rgba(98, 145, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.home-office-productivity .home-section-heading {
    max-width: 900px;
}

.home-office-productivity__hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding: 32px 30px;
    border-radius: 30px;
    border: 1px solid #dce7fb;
    background: linear-gradient(145deg, #eef5ff 0%, #f9fbff 100%);
    box-shadow: 0 18px 42px rgba(12, 24, 48, 0.08);
}

.home-office-productivity__hero::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -56px;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.18) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.home-office-productivity__hero-icon,
.home-office-productivity-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #0f4bb6 0%, #2f7cff 100%);
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 28px rgba(18, 83, 201, 0.18);
}

.home-office-productivity__hero-copy,
.home-office-productivity__hero-badge {
    position: relative;
    z-index: 1;
}

.home-office-productivity__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.1);
    color: #1253c9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-office-productivity__hero-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    line-height: 1.2;
    font-weight: 800;
    color: #10203f;
}

.home-office-productivity__hero-copy p {
    margin: 0;
    color: #4f6386;
    line-height: 1.8;
    font-size: 1rem;
}

.home-office-productivity__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(199, 216, 246, 0.9);
    color: #12306b;
    font-weight: 700;
    max-width: 240px;
    box-shadow: 0 12px 26px rgba(12, 24, 48, 0.05);
}

.home-office-productivity__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.home-office-productivity-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2eaf8;
    box-shadow: 0 12px 34px rgba(12, 24, 48, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-office-productivity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(12, 24, 48, 0.09);
    border-color: #d3e0f8;
}

.home-office-productivity-card h3 {
    margin: 18px 0 12px;
    font-size: 1.28rem;
    line-height: 1.35;
    font-weight: 800;
    color: #10203f;
}

.home-office-productivity-card p {
    margin: 0;
    color: #4f6386;
    line-height: 1.75;
}

.home-office-productivity__note {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #d7e5fb;
    box-shadow: 0 12px 30px rgba(12, 24, 48, 0.05);
}

.home-office-productivity__note p {
    margin: 0;
    color: #304766;
    line-height: 1.8;
    text-align: center;
}

.home-security {
    background:
        radial-gradient(circle at top right, rgba(13, 45, 99, 0.12), transparent 28%),
        linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.home-security .home-section-heading {
    max-width: 920px;
}

.home-security .home-section-heading p + p {
    margin-top: 16px;
}

.home-security__hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 32px 30px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0b1d43 0%, #123b84 58%, #1f68d8 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 52px rgba(10, 26, 58, 0.16);
}

.home-security__hero::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -52px;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.home-security__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 36%);
    pointer-events: none;
}

.home-security__hero-icon,
.home-security-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 28px rgba(7, 18, 40, 0.18);
}

.home-security__hero-copy {
    position: relative;
    z-index: 1;
}

.home-security__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-security__hero-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    line-height: 1.22;
    font-weight: 800;
    color: #ffffff;
}

.home-security__hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.home-security__hero-copy p + p {
    margin-top: 14px;
}

.home-security__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.home-security-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e2eaf8;
    box-shadow: 0 12px 34px rgba(12, 24, 48, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-security-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 70px;
    height: 4px;
    border-bottom-left-radius: 999px;
    border-bottom-right-radius: 999px;
    background: linear-gradient(90deg, #0f4bb6, #5d93ff);
    opacity: 0.95;
}

.home-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(12, 24, 48, 0.09);
    border-color: #d3e0f8;
}

.home-security-card:nth-child(1) .home-security-card__icon {
    background: linear-gradient(145deg, #eaf2ff 0%, #dbe8ff 100%);
    color: #1253c9;
    box-shadow: 0 14px 28px rgba(18, 83, 201, 0.12);
}

.home-security-card:nth-child(2) .home-security-card__icon {
    background: linear-gradient(145deg, #edf4ff 0%, #deebff 100%);
    color: #0f5ed8;
    box-shadow: 0 14px 28px rgba(18, 83, 201, 0.12);
}

.home-security-card:nth-child(3) .home-security-card__icon {
    background: linear-gradient(145deg, #fff3e8 0%, #ffe5cf 100%);
    color: #d96b21;
    box-shadow: 0 14px 28px rgba(217, 107, 33, 0.12);
}

.home-security-card h3 {
    margin: 18px 0 10px;
    font-size: 1.26rem;
    line-height: 1.35;
    font-weight: 800;
    color: #10203f;
}

.home-security-card p {
    margin: 0;
    color: #4f6386;
    line-height: 1.75;
}

.home-security__note {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #d5e2f7;
    box-shadow: 0 14px 32px rgba(12, 24, 48, 0.06);
    border-left: 4px solid #1253c9;
}

.home-security__note p {
    margin: 0;
    color: #304766;
    line-height: 1.8;
    text-align: center;
}

.home-security__note p + p {
    margin-top: 12px;
}

.home-why {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.home-why .home-section-heading {
    margin-bottom: 34px;
}

.home-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-why-card {
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid #dfe8f7;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(12, 24, 48, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: homeCardRise 0.7s ease both;
}

.home-why-card:nth-child(2) {
    animation-delay: 0.06s;
}

.home-why-card:nth-child(3) {
    animation-delay: 0.12s;
}

.home-why-card:nth-child(4) {
    animation-delay: 0.18s;
}

.home-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(12, 24, 48, 0.12);
    border-color: #d1def6;
}

.home-why-card::after {
    content: "";
    position: absolute;
    right: -38px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.14) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.home-why-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #edf4ff 0%, #dbe9ff 100%);
    color: #1253c9;
    font-size: 18px;
    box-shadow: 0 12px 24px rgba(18, 48, 107, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.home-why-card:hover .home-why-card__icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 28px rgba(18, 48, 107, 0.16);
}

.home-why-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #10203f;
    line-height: 1.25;
    transition: color 0.28s ease;
}

.home-why-card p {
    margin: 0;
    color: #4f6386;
    line-height: 1.65;
    transition: color 0.28s ease;
}

.home-why-card:hover h3 {
    color: #0d2d63;
}

.home-why-card:hover p {
    color: #304766;
}

.home-why-card--highlight {
    background: linear-gradient(145deg, #eef5ff 0%, #f9fbff 100%);
    border-color: #cfe0fb;
    box-shadow: 0 16px 34px rgba(18, 83, 201, 0.12);
}

.home-why-card--highlight::after {
    background: radial-gradient(circle, rgba(18, 83, 201, 0.2) 0%, rgba(18, 83, 201, 0) 72%);
}

.home-why-card--highlight .home-why-card__icon {
    background: linear-gradient(145deg, #0f4bb6 0%, #2f7cff 100%);
    color: #ffffff;
    box-shadow: 0 16px 28px rgba(18, 83, 201, 0.2);
}

.home-why-card--highlight:hover {
    box-shadow: 0 28px 54px rgba(18, 83, 201, 0.18);
    border-color: #bcd4fb;
}

.home-compare__table {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid #dfe8f7;
    box-shadow: 0 16px 38px rgba(12, 24, 48, 0.06);
    background: #ffffff;
}

.home-compare__intro {
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 18px 22px;
    border-radius: 22px;
    background: linear-gradient(145deg, #f7fbff 0%, #edf5ff 100%);
    border: 1px solid #d8e6fb;
    box-shadow: 0 14px 30px rgba(12, 24, 48, 0.05);
    color: #244066;
    font-size: 1.02rem;
    line-height: 1.85;
    text-align: center;
}

.home-compare__bootstrap-table {
    margin-bottom: 0;
    color: #4d5e7d;
}

.home-compare__bootstrap-table th,
.home-compare__bootstrap-table td {
    padding: 18px 20px;
    border-color: #e7eef9;
    line-height: 1.65;
    vertical-align: middle;
}

.home-compare__bootstrap-table thead th {
    background: #0d2d63;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 0;
    vertical-align: middle;
}

.home-compare__bootstrap-table thead th:first-child {
    background: #0b1d43;
}

.home-compare__bootstrap-table tbody th {
    font-weight: 700;
    color: #10203f;
    background: #f8fbff;
    width: 24%;
}

.home-compare__highlight-col {
    background: linear-gradient(180deg, #eef5ff 0%, #f7fbff 100%);
    color: #12306b;
    font-weight: 600;
}

.home-compare__head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-compare__head--highlight {
    font-weight: 800;
}

.home-compare__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-compare__cell {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.home-compare__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    line-height: 1;
    margin-top: 1px;
}

.home-compare__cell--public .home-compare__icon {
    background: #fff1f1;
    box-shadow: inset 0 0 0 1px #ffd4d4;
}

.home-compare__cell--private {
    font-weight: 700;
    color: #0f2f6d;
}

.home-compare__cell--private .home-compare__icon {
    background: #ecf8f1;
    box-shadow: inset 0 0 0 1px #cbeed8;
}

.home-compare__cell strong {
    font-weight: 800;
    color: #0b265b;
}

.home-compare__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding: 24px 28px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid #dfe8f7;
    box-shadow: 0 16px 34px rgba(12, 24, 48, 0.05);
}

.home-compare__cta h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.3;
    font-weight: 800;
    color: #10203f;
}

.home-usecase {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.home-audience {
    padding: 104px 0;
    background:
        radial-gradient(circle at top right, rgba(102, 152, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.home-audience__row {
    --bs-gutter-y: 1.6rem;
}

.home-audience-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    text-align: left;
    border-radius: 26px;
    background: linear-gradient(160deg, #f7f9fd 0%, #edf3ff 100%);
    box-shadow: 0 14px 34px rgba(12, 24, 48, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-audience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2f7cff, #5ba2ff);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-audience-card__body {
    padding: 30px 26px;
    min-height: 100%;
}

.home-audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(12, 24, 48, 0.14);
}

.home-audience-card:hover::before {
    opacity: 1;
}

.home-audience-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2e7af8 0%, #5ca5ff 100%);
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(47, 124, 255, 0.3);
}

.home-audience-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 2.4vw, 2.45rem);
    line-height: 1.12;
    font-weight: 800;
    color: #10203f;
}

.home-audience-card p {
    margin: 0 0 22px;
    color: #4f6386;
    font-size: 1.08rem;
    line-height: 1.72;
}

.home-audience-card__toggle {
    border: 0;
    border-radius: 999px;
    background: rgba(47, 124, 255, 0.12);
    color: #1351c9;
    font-weight: 700;
    padding: 8px 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-audience-card__toggle:hover,
.home-audience-card__toggle:focus {
    background: #2f7cff;
    color: #ffffff;
    box-shadow: none;
}

.home-audience-card__toggle[aria-expanded="true"] {
    background: #2f7cff;
    color: #ffffff;
}

.home-audience-card__toggle i {
    transition: transform 0.2s ease;
}

.home-audience-card__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.home-audience-card__collapse {
    margin-top: 16px;
}

.home-audience-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.home-audience-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #344c75;
    font-size: 0.98rem;
    line-height: 1.55;
}

.home-audience-card__list li i {
    color: #1f6fff;
    margin-top: 3px;
}

.home-usecase-card {
    background: #ffffff;
}

.home-usecase-card__number {
    display: inline-flex;
    margin-bottom: 14px;
    color: #0d6efd;
    font-size: 28px;
    font-weight: 800;
}

.home-process .home-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.home-section-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-section-heading h2 {
    margin: 18px 0 20px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    color: #10203f;
    letter-spacing: -0.03em;
}

.home-section-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #5e6c88;
}

.home-section-heading:not(.home-section-heading--center) {
    position: relative;
    padding-left: 22px;
}

.home-section-heading:not(.home-section-heading--center)::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1f6fff 0%, rgba(31, 111, 255, 0.15) 100%);
}

.home-overview__grid,
.home-process__grid {
    display: grid;
    gap: 22px;
}

.home-overview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-process__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-process__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.home-feature-card,
.home-process-card {
    padding: 28px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.98));
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(10px);
}

.home-feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
    animation: homeFeatureFloatIn 0.7s ease both;
}

.home-feature-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -46px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.12) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.26s ease;
}

.home-feature-card:nth-child(2) {
    animation-delay: 0.06s;
}

.home-feature-card:nth-child(3) {
    animation-delay: 0.12s;
}

.home-feature-card:nth-child(4) {
    animation-delay: 0.18s;
}

.home-feature-card:nth-child(5) {
    animation-delay: 0.24s;
}

.home-feature-card:nth-child(6) {
    animation-delay: 0.3s;
}

.home-feature-card:hover {
    transform: translateY(-8px);
    border-color: #d3e1fb;
    box-shadow: 0 24px 48px rgba(12, 24, 48, 0.1);
}

.home-feature-card:hover::after {
    opacity: 1;
}

.home-feature-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #4f8fff);
    color: #ffffff;
    margin-bottom: 18px;
    box-shadow: 0 14px 26px rgba(13, 110, 253, 0.18);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.home-feature-card:hover .home-feature-card__icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 32px rgba(13, 110, 253, 0.24);
}

.home-feature-card h3,
.home-process-card h3,
.home-story__content h2,
.home-product-card h3 {
    margin: 0 0 10px;
    font-weight: 800;
    color: #10203f;
}

.home-feature-card p,
.home-process-card p,
.home-story__content p,
.home-cta__card p,
.home-product-card p {
    margin: 0;
    color: #5e6c88;
    line-height: 1.7;
}

.home-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;
}

.home-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;
}

.home-story__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(13, 31, 71, 0.16));
}

.home-story__content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.14;
}

.home-story__list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.home-story__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.98));
    border: 1px solid rgba(209, 224, 248, 0.9);
    box-shadow: 0 14px 30px rgba(12, 24, 48, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-story__item i {
    color: #0d6efd;
    margin-top: 3px;
}

.home-story__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(12, 24, 48, 0.08);
    border-color: rgba(188, 212, 251, 0.95);
}

.home-products {
    background:
        radial-gradient(circle at top center, rgba(47, 124, 255, 0.12), transparent 26%),
        linear-gradient(180deg, #f5f8fd 0%, #eef4ff 100%);
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-product-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.98));
    border: 1px solid rgba(210, 224, 245, 0.9);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(12, 24, 48, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #1f6fff, #6cb3ff);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.home-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 54px rgba(12, 24, 48, 0.12);
    border-color: rgba(188, 212, 251, 0.95);
}

.home-product-card:hover::before {
    opacity: 1;
}

.home-product-card__image {
    padding: 20px 20px 0;
}

.home-product-card__image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(47, 124, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, #f1f6ff 100%);
    padding: 18px;
}

.home-product-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-product-card__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #1253c9;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-btn--card {
    width: 100%;
}

.home-products__footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.home-faq {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.home-faq__card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(210, 224, 245, 0.9);
    border-radius: 28px;
    box-shadow: 0 20px 46px rgba(12, 24, 48, 0.08);
    padding: 18px;
    backdrop-filter: blur(14px);
}

.home-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.home-faq__item {
    width: 100%;
    margin: 0;
    display: block;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
    border: 1px solid #e1e9f8;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-faq__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(12, 24, 48, 0.06);
    border-color: #d1def6;
}

.home-faq .home-faq__button {
    -webkit-appearance: none;
    appearance: none;
    width: 100% !important;
    border: 0 !important;
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    text-align: left;
    color: #10203f;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}

.home-faq .home-faq__button span {
    display: block;
    flex: 1;
    min-width: 0;
}

.home-faq__button i {
    color: #1f6fff;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-top: 3px;
}

.home-faq__button:not(.collapsed) i {
    transform: rotate(180deg);
}

.home-faq .home-faq__collapse p {
    margin: 0;
    padding: 0 22px 20px;
    color: #4f6386;
    font-size: 1rem;
    line-height: 1.75;
}

.home-process-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, #edf4ff 0%, #dbe9ff 100%);
    box-shadow: 0 14px 26px rgba(18, 83, 201, 0.12);
    font-size: 28px;
    font-weight: 800;
    color: #0d6efd;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.home-process-card {
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 0 0 320px;
    width: 320px;
    max-width: calc(100vw - 48px);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: homeCardRise 0.7s ease both;
}

.home-process-card:nth-child(2) {
    animation-delay: 0.08s;
}

.home-process-card:nth-child(3) {
    animation-delay: 0.16s;
}

.home-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(12, 24, 48, 0.12);
    border-color: #d1def6;
}

.home-process-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -40px;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 124, 255, 0.14) 0%, rgba(47, 124, 255, 0) 72%);
    pointer-events: none;
}

.home-process-card:hover .home-process-card__step {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 30px rgba(18, 83, 201, 0.18);
}

.home-process-card p {
    max-width: 240px;
    margin: 0 auto;
}

.home-cta {
    padding-top: 10px;
}

.home-cta__card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 46px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(112, 192, 255, 0.24), transparent 24%),
        linear-gradient(135deg, #0b1d43, #144ba8);
    color: #ffffff;
    box-shadow: 0 28px 62px rgba(10, 26, 58, 0.2);
}

.home-cta__card::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.home-cta__card h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.14;
    font-weight: 800;
    color: #ffffff;
}

.home-cta__card p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 992px) {
    .home-hero__grid,
    .home-story__grid,
    .home-innovation__grid,
    .home-go-green__grid,
    .home-office-productivity__grid,
    .home-security__grid,
    .home-problem-solution__grid,
    .home-why__grid,
    .home-process__grid,
    .home-products__grid,
    .home-hero__stats,
    .home-trust__bar {
        grid-template-columns: 1fr;
    }

    .home-hero-slides {
        min-height: 0;
    }

    .home-overview__grid,
    .home-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-go-green__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-cta__card {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .home-hero-slider__controls {
        justify-content: center;
    }

    .home-office-productivity__hero {
        grid-template-columns: 1fr;
    }

    .home-office-productivity__hero-badge {
        max-width: none;
    }

    .home-security__hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 74px 0 60px;
    }

    .home-audience,
    .home-overview,
    .home-innovation,
    .home-go-green,
    .home-competitor-comparison,
    .home-office-productivity,
    .home-security,
    .home-problem-solution,
    .home-why,
    .home-compare,
    .home-story,
    .home-usecase,
    .home-products,
    .home-process,
    .home-faq,
    .home-cta {
        padding: 78px 0;
    }

    .home-hero__card img {
        height: 320px;
    }

    .home-hero__content h1 {
        max-width: none;
    }

    .home-hero-slider__controls {
        gap: 12px;
        margin-top: 22px;
    }

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

    .home-story__image-card {
        min-height: auto;
        padding: 22px;
    }

    .home-story__image-card::before {
        inset: 12px;
    }

    .home-story__image img {
        max-height: 320px;
    }

    .home-go-green__card {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .home-go-green__panel {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .home-go-green__features {
        grid-template-columns: 1fr;
    }

    .home-hero__actions,
    .home-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta__card {
        padding: 30px 24px;
    }

    .home-section-heading {
        margin-bottom: 34px;
    }

    .home-section-heading:not(.home-section-heading--center) {
        padding-left: 16px;
    }

    .home-section-heading:not(.home-section-heading--center)::before {
        height: 58px;
    }

    .home-overview__grid {
        grid-template-columns: 1fr;
    }

    .home-compare__bootstrap-table th,
    .home-compare__bootstrap-table td,
    .home-competitor-comparison__bootstrap-table th,
    .home-competitor-comparison__bootstrap-table td {
        padding: 16px 18px;
    }

    .home-compare__intro {
        padding: 16px 18px;
        margin-bottom: 22px;
    }

    .home-compare__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .home-compare__cta .home-btn {
        width: 100%;
    }

    .home-office-productivity__hero {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .home-office-productivity__grid {
        grid-template-columns: 1fr;
    }

    .home-office-productivity-card {
        padding: 24px 20px;
    }

    .home-security__hero {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .home-security__grid {
        grid-template-columns: 1fr;
    }

    .home-security-card {
        padding: 24px 20px;
    }

    .home-why__grid {
        grid-template-columns: 1fr;
    }

    .home-innovation__grid {
        grid-template-columns: 1fr;
    }

    .home-faq__button {
        padding: 18px 18px;
        font-size: 1.02rem;
    }

    .home-faq__card {
        padding: 14px;
        border-radius: 20px;
    }

    .home-faq__collapse p {
        padding: 0 18px 18px;
    }

}

@media (max-width: 576px) {
    .home-shell {
        width: min(1240px, calc(100% - 24px));
    }

    .home-trust {
        margin-top: -16px;
    }

    .home-trust__bar {
        border-radius: 22px;
        padding: 14px;
    }

    .home-audience-card {
        border-radius: 24px;
    }

    .home-audience-card__body {
        padding: 24px 20px;
    }

    .home-audience-card h3 {
        font-size: 1.95rem;
    }

    .home-audience-card p {
        font-size: 1.05rem;
    }

    .home-faq__item {
        border-radius: 16px;
    }
}
