﻿@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&display=swap');

:root {
    --background-color: #F5F8FC;
    --text-color: #172033;
    --muted-text-color: #5F6B7A;
    --alt-background-color: #0F172A;
    --alt-text-color: #FFFFFF;
    --primary-color: #0078D4;
    --secondary-color: #00A4EF;
    --green-accent: #7FBA00;
    --warm-accent: #FFB900;
    --card-background: #FFFFFF;
    --border-color: #DDE7F1;
    --soft-blue: #EAF4FD;
    --primary-font: 'Outfit', sans-serif;
    --secondary-font: 'Host Grotesk', sans-serif;
    --transition-default: all 0.3s ease;
    --br-def: 8px;
    --nav-height: 90px;
    --section-space: clamp(70px, 9vw, 120px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 22px);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--primary-font);
    overflow-x: hidden;
}

body::selection {
    background: var(--primary-color);
    color: var(--alt-text-color);
}
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--alt-background-color);
    color: var(--alt-text-color);
    padding: 10px 14px;
    border-radius: var(--br-def);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.skip-link:focus-visible {
    transform: translateY(0);
    color: var(--alt-text-color);
}



a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-default);
}

a:focus-visible,
button:focus-visible,
label[role="button"]:focus-visible {
    outline: 3px solid var(--warm-accent);
    outline-offset: 4px;
}

section,
.cta {
    scroll-margin-top: calc(var(--nav-height) + 22px);
}

p {
    color: var(--muted-text-color);
    line-height: 1.7;
}

.home-hero {
    position: relative;
    min-height: min(860px, calc(100 * var(--vh)));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 70px) 20px 90px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 164, 239, 0.26), transparent 34%),
        linear-gradient(135deg, #F8FBFF 0%, #EAF4FD 48%, #DDEEFF 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    inset: auto -10% -35% -10%;
    height: 55%;
    background: linear-gradient(to bottom, rgba(245, 248, 252, 0), var(--background-color));
    z-index: 1;
    pointer-events: none;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 120, 212, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 212, 0.11) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
    pointer-events: none;
    z-index: 0;
}

.home-hero-content {
    width: 820px;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin: 0 0 14px;
}

.home-hero-content h1 {
    font-family: var(--secondary-font);
    color: var(--text-color);
    font-size: clamp(3.1rem, 7vw, 6.7rem);
    font-weight: 800;
    margin: 0;
    line-height: 0.95;
    max-width: 900px;
}

.hero-copy {
    font-size: clamp(1.05rem, 2.2vw, 1.24rem);
    max-width: 720px;
    margin: 28px auto 0;
}

.hero-actions,
.cta .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button,
.cta .links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 2px solid transparent;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: var(--br-def);
    text-align: center;
}

.button-primary,
.cta .links a:first-child {
    background-color: var(--primary-color);
    color: var(--alt-text-color);
    box-shadow: 0 14px 30px rgba(0, 120, 212, 0.24);
}

.button-primary:hover,
.cta .links a:first-child:hover {
    background-color: #006CBE;
    color: var(--alt-text-color);
    transform: translateY(-2px);
}

.button-secondary,
.cta .links a:last-child {
    background-color: rgba(255, 255, 255, 0.78);
    border-color: rgba(0, 120, 212, 0.32);
    color: var(--primary-color);
}

.button-secondary:hover,
.cta .links a:last-child:hover {
    background-color: var(--alt-text-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
}

.trust-row li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 120, 212, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

.trust-row i {
    color: var(--green-accent);
}

.hero-interface {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-app-logo {
    --float-x: 0px;
    --float-y: 0px;
    --float-scale: 1;
    position: absolute;
    width: clamp(42px, 5vw, 72px);
    height: clamp(42px, 5vw, 72px);
    object-fit: contain;
    opacity: 0.28;
    filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.07));
    transform: translate3d(var(--float-x), var(--float-y), 0) scale(var(--float-scale));
    transition: opacity 0.25s ease, filter 0.25s ease;
    will-change: transform;
}

.home-hero:has(.hero-app-logo:hover) .hero-app-logo,
.hero-app-logo.is-near-pointer {
    opacity: 0.96;
    filter: drop-shadow(0 20px 30px rgba(0, 120, 212, 0.24));
}

.logo-outlook { left: 9%; top: 26%; }
.logo-teams { right: 10%; top: 22%; }
.logo-onedrive { right: 17%; bottom: 18%; }
.logo-sharepoint { left: 17%; bottom: 20%; }
.logo-word { left: 26%; top: 15%; }
.logo-excel { right: 26%; top: 14%; }
.logo-powerpoint { right: 31%; bottom: 13%; }
.section {
    padding: var(--section-space) 0;
    position: relative;
}

.section-light {
    background: var(--background-color);
}

.section-blue {
    background:
        linear-gradient(135deg, rgba(0, 120, 212, 0.10), rgba(0, 164, 239, 0.05)),
        var(--alt-background-color);
    color: var(--alt-text-color);
}

.section-blue p,
.section-blue li {
    color: #D9E5F1;
}

.section-blue .section-kicker,
.section-blue h2,
.section-blue h3 {
    color: var(--alt-text-color);
}

.section-container {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.narrow {
    width: 820px;
}

.centered {
    text-align: center;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
}

.intro-text {
    position: sticky;
    top: calc(var(--nav-height) + 28px);
}

h2 {
    color: var(--text-color);
    font-family: var(--secondary-font);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1;
}

h3 {
    font-family: var(--secondary-font);
}

.benefit-grid,
.service-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.info-card,
.service-card,
.why-grid article,
.timeline-step {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--br-def);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
}

.info-card {
    padding: 24px;
}

.info-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: var(--soft-blue);
    border-radius: var(--br-def);
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.info-card h3,
.service-card h3,
.timeline-step h3,
.why-grid h3,
.app-badge h3 {
    color: var(--text-color);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.info-card p {
    margin: 0;
}

.service-grid {
    margin-top: 42px;
}

.service-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.service-card h3 {
    color: var(--alt-text-color);
}

.service-card ul {
    margin: 0;
    padding-left: 20px;
}

.service-card li {
    margin: 8px 0;
}

.plan-note {
    width: 1180px;
    max-width: calc(100% - 40px);
    margin: 28px auto 0;
    text-align: center;
    font-size: 0.95rem;
}

.app-section {
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.app-badge {
    min-height: 184px;
    padding: 18px;
    display: grid;
    grid-template-rows: 42px minmax(48px, auto) 1fr;
    align-items: start;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    border-radius: var(--br-def);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.app-badge img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}
.app-badge p {
    margin: 0;
    font-size: 0.92rem;
}


.app-badge h3 {
    min-height: 48px;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.app-badge p {
    align-self: end;
}
.app-badge.outlook { border-top-color: #0078D4; }
.app-badge.teams { border-top-color: #6264A7; }
.app-badge.onedrive { border-top-color: #00A4EF; }
.app-badge.sharepoint { border-top-color: #038387; }
.app-badge.word { border-top-color: #185ABD; }
.app-badge.excel { border-top-color: #107C41; }
.app-badge.powerpoint { border-top-color: #C43E1C; }


.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 46px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--green-accent));
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.timeline-step span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--alt-text-color);
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 18px;
}

.business-section {
    background: #FFFFFF;
}

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

.tag-grid span {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 18px 20px;
    background: var(--soft-blue);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--br-def);
    color: var(--text-color);
    font-weight: 700;
}

.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
}

.why-grid article {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.why-grid i {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--alt-text-color);
    background: var(--primary-color);
    border-radius: var(--br-def);
}

.why-grid h3 {
    color: var(--alt-text-color);
    font-size: 1.08rem;
    margin: 0;
}

.cta {
    background:
        radial-gradient(circle at 80% 10%, rgba(127, 186, 0, 0.20), transparent 30%),
        linear-gradient(135deg, #F5F8FC, #EAF4FD);
    padding: var(--section-space) 0;
}

.cta .content-container {
    width: 820px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    font-size: clamp(1rem, 2.5vw, 1.12rem);
    margin-bottom: 0;
}

@media (max-width: 1180px) {
    .app-grid {
        grid-template-columns: repeat(4, minmax(140px, 1fr));
    }
}

@media (max-width: 900px) {
    .home-hero {
        min-height: auto;
        padding-bottom: 70px;
    }

    .split-layout,
    .benefit-grid,
    .service-grid,
    .timeline,
    .why-grid,
    .tag-grid {
        grid-template-columns: 1fr;
    }

    .intro-text {
        position: static;
        text-align: center;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 45px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline-step {
        display: grid;
        grid-template-columns: 54px 1fr;
        column-gap: 14px;
        align-items: start;
    }

    .timeline-step span {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .timeline-step h3,
    .timeline-step p {
        margin-bottom: 0;
    }

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

    .hero-interface {
        display: none;
    }
}

@media (max-width: 560px) {
    .home-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-hero-content h1 {
        font-size: clamp(2.6rem, 16vw, 4.2rem);
    }

    .button,
    .cta .links a {
        width: 100%;
    }

    .trust-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .trust-row li {
        justify-content: center;
        border-radius: var(--br-def);
    }

    .section-container,
    .narrow,
    .plan-note,
    .cta .content-container {
        max-width: calc(100% - 30px);
    }

    .app-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}













