/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    color: #000;
    background-color: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: #464feb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #3a42d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #464feb;
    border: 1px solid #464feb;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(70, 79, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-link {
    color: #464feb;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}

/* Navbar Styles */
/* Main Navbar */
.navbar {
    background-color: white;
    border-bottom: 1px solid #e1dfdd;
    position: relative;
    z-index: 1000;
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 54px;
}

/* Microsoft Logo */
.logo {
    display: flex;
    align-items: center;
    margin-right: 24px;
    flex-shrink: 0;
}

.logo-icon {
    width: 108px;
    height: 23px;
    background: linear-gradient(
        90deg,
        #f25022 0%,
        #f25022 25%,
        #7fba00 25%,
        #7fba00 50%,
        #00a4ef 50%,
        #00a4ef 75%,
        #ffb900 75%
    );
    margin-right: 16px;
    position: relative;
}

.logo-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 108 23'%3E%3Cpath d='M0 0h10.5v10.5H0V0zm12 0h10.5v10.5H12V0zM0 12h10.5v10.5H0V12zm12 0h10.5v10.5H12V12z' fill='%23f25022'/%3E%3C/svg%3E")
        no-repeat;
    background-size: 23px 23px;
}

.logo-text {
    font-size: 13px;
    font-weight: 600;
    color: #323130;
    text-decoration: none;
    margin-left: 8px;
    white-space: nowrap;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-right: 16px;
}

.hamburger span {
    width: 16px;
    height: 1px;
    background-color: #323130;
    margin: 1px 0;
    transition: 0.3s;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #323130;
    text-decoration: none;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #f3f2f1;
}

.nav-link.has-dropdown::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #323130;
    margin-left: 8px;
}

/* Right Side Menu */
.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.buy-now-btn {
    background-color: #0078d4;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 16px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

.buy-now-btn:hover {
    background-color: #106ebe;
}

.all-microsoft {
    position: relative;
    flex-shrink: 0;
}

.all-microsoft-link {
    color: #323130;
    text-decoration: none;
    padding: 16px 12px;
    padding-right: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.all-microsoft-link::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #323130;
    margin-left: 8px;
}

.sign-in {
    margin-left: 16px;
    flex-shrink: 0;
}

.sign-in-link {
    color: #323130;
    text-decoration: none;
    padding: 8px 16px;
    padding-left: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.user-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e1dfdd;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #323130;
    flex-shrink: 0;
}

/* Standard Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dfdd;
    display: none;
    z-index: 1000;
}

.dropdown-item {
    padding: 12px 16px;
    color: #323130;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #f3f2f1;
}

.dropdown-item:hover {
    background-color: #f3f2f1;
}

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

.nav-item:hover .dropdown {
    display: block;
}

/* Products Mega Dropdown - Responsive */
.products-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dfdd;
    display: none;
    z-index: 1000;
    max-width: calc(100vw - 48px);
    margin: 0 24px;
    border-radius: 4px;
}

.products-grid {
    display: grid;
    gap: 32px;
    width: 100%;
}

.products-column {
    display: flex;
    flex-direction: column;
}

.products-column-header {
    font-size: 14px;
    font-weight: 600;
    color: #323130;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f2f1;
}

.products-column-item {
    padding: 6px 0;
    color: #605e5c;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.products-column-item:hover {
    color: #0078d4;
}

.nav-item:hover .products-dropdown {
    display: block;
}

/* Resources Multi-column Dropdown */
.resources-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    width: 600px;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dfdd;
    display: none;
    z-index: 1000;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.resources-column {
    display: flex;
    flex-direction: column;
}

.resources-column-item {
    padding: 8px 0;
    color: #605e5c;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.resources-column-item:hover {
    color: #0078d4;
}

.nav-item:hover .resources-dropdown {
    display: block;
}

/* More Dropdown */
.more-dropdown {
    position: relative;
    display: none;
}

.more-link {
    color: #323130;
    text-decoration: none;
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.more-link:hover {
    background-color: #f3f2f1;
}

.more-link::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #323130;
    margin-left: 8px;
}

.more-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1dfdd;
    display: none;
    z-index: 1000;
}

.more-dropdown:hover .more-dropdown-content {
    display: block;
}

.more-dropdown-item {
    padding: 12px 16px;
    color: #323130;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #f3f2f1;
}

.more-dropdown-item:hover {
    background-color: #f3f2f1;
}

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

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar-header {
    padding: 16px 24px;
    border-bottom: 1px solid #e1dfdd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #323130;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f3f2f1;
}

.mobile-nav-link {
    color: #323130;
    text-decoration: none;
    padding: 16px 24px;
    display: block;
    font-size: 14px;
}

.mobile-nav-link:hover {
    background-color: #f3f2f1;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.overlay.show {
    display: block;
}

/* Responsive Design for Products Grid */

/* Desktop: 6 columns */
@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .products-dropdown {
        left: -200px;
        width: 1200px;
        margin: 0;
        max-width: none;
    }
}

/* Large desktop: 5 columns */
@media (min-width: 1200px) and (max-width: 1399px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .products-dropdown {
        left: -150px;
        width: 1000px;
        margin: 0;
        max-width: none;
    }
}

/* Medium desktop: 4 columns */
@media (min-width: 1000px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .products-dropdown {
        left: -100px;
        width: 800px;
        margin: 0;
        max-width: none;
    }
}

/* Small desktop: 3 columns */
@media (min-width: 800px) and (max-width: 999px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-dropdown {
        left: 0;
        width: 600px;
        margin: 0;
        max-width: calc(100vw - 48px);
    }
}

/* Tablet: 2 columns */
@media (min-width: 600px) and (max-width: 799px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .products-dropdown {
        left: 0;
        width: auto;
        padding: 24px;
    }
    .resources-dropdown {
        width: 400px;
    }
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile view */
@media (max-width: 999px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        display: none;
    }

    .buy-now-btn {
        display: none;
    }

    .navbar-container {
        padding: 0 12px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-dropdown {
        padding: 16px;
    }
}

@media (max-width: 500px) {
    .all-microsoft {
        display: none;
    }
}

@media (max-width: 400px) {
    .sign-in-link {
        padding: 8px 8px;
        font-size: 12px;
    }

    .user-icon {
        width: 28px;
        height: 28px;
        margin-left: 4px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        165deg,
        #f8e8da 2.7%,
        #faf3f2 33.93%,
        #fff 86.27%
    );
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    margin-top: 70px;
    width: 100%;
    border-radius: 20px;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.copilot-icon {
    height: 80px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: transparent;
    background: -webkit-linear-gradient(
        353.8deg,
        #ed6419 -3.08%,
        #9629e7 14.74%,
        #0860c7 72.12%
    );
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    margin: 0 auto 30px;
    max-width: 600px;
    color: #242424;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-button {
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 34px;
    width: 200px;
    height: 40px;
}

.sign-in-button {
    background-color: #464feb;
    color: white;
    border: none;
}

.sign-in-button:hover {
    background-color: #3e45c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.get-365-button {
    border: 2px solid transparent;
    border-color: #464feb;
    background-color: #fff;
    color: #464feb;
}

.get-365-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #e0e7ff;
    border-color: #464feb;
    color: #464feb;
}

.signup-link {
    color: #464feb;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.signup-link:hover {
    text-decoration: underline;
}

.footnote {
    font-size: 12px;
    color: #616161;
    margin-top: 30px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.feature-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.feature-content p {
    color: #616161;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Apps Section */
.apps-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.apps-container {
    display: flex;
    gap: 50px;
}

.apps-list {
    flex: 1;
}

.app-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.app-item:hover {
    background-color: rgba(70, 79, 235, 0.05);
    transform: translateX(5px);
}

.app-item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}

.app-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.app-item-content p {
    font-size: 14px;
    color: #616161;
}

.app-preview {
    flex: 1;
    position: relative;
}

.app-preview img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.plan-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    background-color: white;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-card img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
    object-fit: cover;
}

.plan-info {
    padding: 25px;
}

.plan-info h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.plan-info p {
    color: #616161;
    margin-bottom: 20px;
    font-size: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #ffffff;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: center;
}

.step-number {
    background-color: #464feb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-content p {
    color: #616161;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #464feb;
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 20px;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-weight: 600;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #616161;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #f2f2f2;
    padding: 0 15px;
    margin-top: 48px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    margin-bottom: 40px;
}

.footer-column-group {
    display: flex;
    flex: 0 1 50%;
}

.footer-column {
    flex: 0 1 33%;
}

@media (max-width: 999px) {
    .footer-grid {
        flex-direction: column;
    }
}
@media (max-width: 540px) {
    .footer-column-group {
        flex-direction: column;
    }
}
.footer-column h4 {
    margin-bottom: 15px;
    font-size: 15px;
    color: #616161;
    padding: 36px 0 4px;
    font-weight: 600;
    line-height: 20px;
}

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

.footer-column li {
    font-size: 11px;
    line-height: 16px;
    color: #616161;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-column li:hover {
    color: #464feb;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e6e6e6;
}

@media (max-width: 999px) {
    .footer-bottom {
        flex-direction: column;
    }
}
.footer-bottom p {
    font-size: 12px;
    color: #616161;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 20px;
    color: #616161;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #464feb;
}

.mobile-app--wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.mobile-app-upsell {
    padding: 120px 0 64px;
    text-align: center;
}
.mobile-app-upsell h2 {
    font-weight: 700;
    margin-bottom: 24px;
    padding: 0 44px;
    font-size: 29px;
    line-height: 34px;
}
.mobile-app-upsell .qrcode {
    display: block;
    margin: 48px auto 0;
}

.mobile-app-terms p {
    font-size: 9px;
}

.social-section {
    margin-top: 48px;
    display: flex;
    align-items: center;
}

.ss-text {
    margin-right: 16px;
    font-size: 12px;
}

.ss-img {
    display: flex;
    align-items: center;
}
.ss-img img {
    margin-right: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .apps-container {
        flex-direction: column;
    }
    .step {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        padding: 10px 20px;
    }
    .navleft,
    .navright {
        width: 100%;
        justify-content: space-between;
        padding: 5px 0;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-button {
        width: 220px;
    }
    .section-title {
        font-size: 24px;
    }
    .feature-card,
    .plan-card {
        margin: 0 auto;
        max-width: 400px;
    }
}
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .navleft,
    .navright {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero-section {
        padding: 50px 20px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 12px;
    }
    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
} /*# sourceMappingURL=style.css.map */
