@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background: #0F0F2D;
    width: 100%;
    font-family: "Segoe UI", sans-serif;
    border-bottom: 1px solid #C9CBDD;
}

/* Container with max-width */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.container_two {
    padding: 0 70px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* LEFT SIDE (logo + nav close together) */
.header__left {
    display: flex;
    align-items: center;
    gap: 80px;
	.header__logo{
		width:140px;
		a{
			img{
				width:120px;
				height:20px;	
			}
		}
	}
}

.logo-img {
  height: 28px;
}

/* NAV */
.header__nav {
  display: none;
}

.nav__list {
    display: flex;
    gap: 35px;
    list-style-type: none;
}

.nav__link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    font-family: Segoe UI;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
}

.nav__link:hover {
  opacity: 1;
}

/* ACTIONS */
.header__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn--primary {
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-family: Segoe UI;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
	background: linear-gradient(94.4deg, #0078D4 0%, #00B4FF 100.13%);
}

.icon-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
}

/* MENU TOGGLE */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #0a0f2c;
  padding: 16px 20px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-btn {
  display: inline-block;
  margin-top: 8px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ================================
   BANNER SECTION
================================ */

.banner {
    /* background: #06080f; */
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background-image: url('../images/banner_bg.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Orbs */
.banner__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.banner__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.banner__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0078D4 0%, transparent 70%);
    top: -100px;
    left: 30%;
}

.banner__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00B4FF 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
}

.banner__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #004a8f 0%, transparent 70%);
    top: 40%;
    right: 5%;
}

/* Inner layout */
.banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding: 0 70px;
}

/* LEFT CONTENT */
.banner__content {
    flex: 1;
    max-width: 520px;
}

.banner__heading {
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 121%;
    letter-spacing: 1px;
}

.banner__powered {
    color: #fff;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 156%;
    letter-spacing: 0px;
}

.banner__microsoft {
    color: #00B4FF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: linear-gradient(90deg, #f25022, #7fba00, #00a4ef, #ffb900);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner__ai {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* CTA Buttons */
.banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.btn__arrow {
    font-size: 16px;
    margin-left: 2px;
}

.btn--outline {
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, background 0.2s;
    border: 2px solid #01ACF9;
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
}

.banner--construction .banner__inner {
    justify-content: center;
    text-align: center;
}

.header__actions > a {
    padding: 15px 25px !important;
}

.banner__heading--center {
    margin-bottom: 0;
    text-align: center;
}

section.banner.banner--construction h1 {
    margin: 0 auto;
}

section.banner.banner--construction {
    height: 85vh !important;
}

/* Trust Bar */
.banner__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    background: #00000099;
    border-radius: 10px;
    /* justify-content: space-between; */
    gap: 25px;
    width: fit-content;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.trust__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* RIGHT VISUAL */
.banner__visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Feature Card */
.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    backdrop-filter: blur(100px);
/*     box-shadow: 0px 1px 40px 0px #0F0F2D33 inset, 0px 1px 40px 0px #0F0F2D33 inset, 0px 4px 18px 0px #0F0F2D4D inset, 0px 98px 100px -48px #0F0F2D4D inset, 0px -82px 68px -64px #4040804D inset, 0px 7px 11px -4px #FFFFFF inset, 0px 39px 56px -36px #FFFFFF80 inset; */
    width: 400px;
    height: 400px;
	backdrop-filter: blur(100px);

box-shadow: 0px 1px 40px 0px #0F0F2D33 inset, 0px 4px 18px 0px #0F0F2D4D inset, 0px 98px 100px -48px #0F0F2D4D inset, 0px -82px 68px -64px #4040804D inset, 0px 7px 11px -4px #FFFFFF inset, 0px 39px 56px -36px #FFFFFF80 inset;


}

/* 2x2 Tile Grid */
.feature-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.feature-tile {
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tile svg {
    width: 32px;
    height: 32px;
}

.feature-tile i {
    font-size: 24px;
    color: #fff;
}

.feature-tile--orange {
    background: linear-gradient(180deg, #FF6600 0%, #FF6600 100%);
}
.feature-tile--green  { background: linear-gradient(180deg, #67BC32 0%, #13B20A 100%); }
.feature-tile--blue   { background: linear-gradient(180deg, #00A1F1 0%, #0078D4 100%); }
.feature-tile--yellow { background: linear-gradient(180deg, #EBAA00 0%, #E5A600 100%); }

/* Labels */
.feature-card__labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 16px;
    background: #E5E7EB;
}

.feature-card__labels_first{
   margin-bottom: 10px;
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
}

.label__dot {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.label__dot--orange { background: #FF6600; }
.label__dot--green  { background: #15BC0B; }
.label__dot--blue   { background: #0075CF; }
.label__dot--yellow { background: #EDAC00; }

/* BLUR DIVIDER */

.banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),   /* transparent */
        #000                /* bottom section color */
    );
}

/* ================================
   FEATURES SECTION
================================ */

/* .features {
    background: #000;
    padding: 80px 0;
    font-family: "Segoe UI", sans-serif;
    position: relative;
} */

.features {
    padding: 160px 0 80px;
    font-family: "Segoe UI", sans-serif;
    position: relative;
    background: linear-gradient(180deg, #000 0%, #0F0F2D 14.18%);
}

.features__inner {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

/* LEFT CARD */
.features__card {
    flex-shrink: 0;
    width: 33%;
/*     background: linear-gradient(160deg, #0078D4 0%, #005ea6 100%); */
	background: #0271C9;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 700px;
}

.features__card__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features__label {
    color: #F8F9FA;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.features__heading {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.features__desc {
    color: #F8F9FA;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 156%;
    letter-spacing: 0px;
}

.btn--white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
    width: fit-content;
    background: linear-gradient(90deg, #0078D4 0%, #00B4FF 100%);
    box-shadow: 0px 0px 0px 0px #00000000, 0px 0px 0px 0px #00000000, 0px 20px 25px -5px #0000001A, 0px 8px 10px -6px #0000001A;
    align-self: center;
}

/* RIGHT GRID */
.features__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 60px;
    padding-top: 70px;
    padding-bottom: 60px;
}

/* FEATURE ITEM */
.feature-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item__icon {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item__icon i {
    font-size: 40px;
    color: white;
}

.feature-item__icon--orange { background: #FF6600; }
.feature-item__icon--green  { background: #14B90A; }
.feature-item__icon--blue   { background: #0072CA; }
.feature-item__icon--yellow { background: #EBAA00; }

.feature-item__title {
    color: #F8F9FA;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0px;
}

.feature-item__text {
    color: #F8F9FA;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 142%;
    letter-spacing: 0px;
}

/* BLUR DIVIDER */

/* .features::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;

    background: linear-gradient(
        to bottom,
        #000,               
        rgba(0, 0, 0, 0)  
    );
} */

.features::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
	z-index: 1;
}


/* ================================
   SHARED � Section Header
   (reuse across all sections)
================================ */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    color: #f8f9fa;
    margin-bottom: 10px;
    font-family: Inter;
    font-weight: 500;
    font-size: 32px;
    line-height: 121%;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: "Segoe UI", sans-serif;
}

/* ================================
   CORE FEATURES SECTION
================================ */

/* .core-features {
    background: #0F0F2D;
    padding: 120px 0 80px 0;
    font-family: "Segoe UI", sans-serif;
} */

.core-features {
    background: #0F0F2D;
    padding: 200px 0 80px 0;
    font-family: "Segoe UI", sans-serif;
	position: relative;
}

.core-features::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
	z-index: 1;
}

.core-features__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.core-features .section-heading {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 121%;
    letter-spacing: 1px;
}

/* TABS */
.tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    width: 100%;
    justify-content: center;
}

.tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 28px;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    font-family: 'Inter', serif;
    font-size: 20px;
    line-height: 48px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #f8f9fa;
}

.tab:hover {
    border-bottom-color: #fff;
}

.tab--active {
    border-bottom-color: #fff;
    font-weight: 600;
}

/* CARDS GRID */
.core-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* CF CARD */
.cf-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: border-color 0.2s;
}

.cf-card:hover {
    border-color: rgba(0, 120, 212, 0.4);
}

.cf-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cf-card__icon i {
    font-size: 25px;
    color: #fff;
}

.cf-card__icon--blue   { 
	background: #0075CF;
	box-shadow: 0px 0px 0px 0px #00000000, 0px 0px 0px 0px #00000000, 0px 10px 15px -3px #0000001A, 0px 4px 6px -4px #0000001A;	
}
.cf-card__icon--yellow { 
	background: #EBAA00;
	box-shadow: 0px 0px 0px 0px #00000000, 0px 0px 0px 0px #00000000, 0px 10px 15px -3px #0000001A, 0px 4px 6px -4px #0000001A;	
}
.cf-card__icon--green  { 
	background: #14B90A;
	box-shadow: 0px 0px 0px 0px #00000000, 0px 0px 0px 0px #00000000, 0px 10px 15px -3px #0000001A, 0px 4px 6px -4px #0000001A;	
}

.cf-card__title {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.cf-card__text {
    color: #f8f9fa;
    flex: 1;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* BADGES */
.cf-card__badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-top: 30px;
}

.badge {
    color: #374151;
    background: #EFF6FF;
    border-radius: 6px;
    padding: 12px 15px;
    white-space: nowrap;
    flex: 1;
    font-family: 'Inter', serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-align: center;
}

/* TAB PANELS */
.tab-panels {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel--active {
    display: block;
}

/* PLACEHOLDER (for empty tabs) */
.tab-panel__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    width: 100%;
}

.tab-panel__name {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Segoe UI", sans-serif;
    letter-spacing: -0.2px;
}

/* ================================
   SHARED � section-subtext
   (reusable across sections)
================================ */

.hiw .section-subtext {
    color: #f8f9fa;
    max-width: 870px;
    margin: 24px auto 0;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: 0px;
    text-align: center;
}

.text--accent {
    color: #5dade2;
}

/* ================================
   HOW IT WORKS SECTION
================================ */

/* .hiw {
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 38.77%);
    padding: 80px 0;
    font-family: "Segoe UI", sans-serif;
} */

.hiw {
    padding: 160px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 38.77%);
	position: relative;
}

.hiw::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
	z-index: 1;
}

.hiw .section-heading {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 121%;
    letter-spacing: 1px;
}

.hiw__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LAYOUT */
.hiw__layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 64px;
}

/* COLUMNS */
.hiw__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.hiw__col--right {
    align-items: flex-end;
}

/* CENTER DIVIDER */
.hiw__divider {
    flex-shrink: 0;
    width: 4px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    margin: 0 48px;
}

.hiw__divider-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 15%,
        rgba(255, 255, 255, 0.8) 85%,
        transparent 100%
    );
}

/* STEP */
.hiw__step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hiw__step--right {
    align-items: flex-end;
    text-align: right;
}

/* STEP HEADER */
.hiw__step-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hiw__step-header--right {
    justify-content: flex-end;
}

/* STEP NUMBER */
.hiw__number {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 121%;
    letter-spacing: 1px;
}

.hiw__number--orange { color: #ff6600; }
.hiw__number--green   { color: #67bc32; }
.hiw__number--blue   { color: #5dade2; }
.hiw__number--yellow   { color: #ebaa00; }

/* STEP TITLE */
.hiw__step-title {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 15px;
}

/* STEP TEXT */
.hiw__step-text {
    color: #f8f9fa;
    padding-left: 80px;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.hiw__step--right .hiw__step-text{
    padding-right: 80px;
}

.hiw__step-text--right {
    padding-left: 0;
    padding-right: 46px;
}

/* STEP ICON */
.hiw__step-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-left: 46px;
    background: radial-gradient(
        circle at center,
        rgba(207, 207, 207, 0.5) 0%,
        rgba(207, 207, 207, 0.25) 40%,
        rgba(207, 207, 207, 0.1) 70%,
        transparent 100%
    );
}

.hiw__step--right .hiw__step-icon {
    margin-left: 0;
    margin-right: 46px;
    align-self: flex-end;
    margin-bottom: 8px;
}

.hiw__step-icon i {
    font-size: 40px;
    color: #F8F9FAA3;
} 

/* STEP POSITION */

.hiw__step--one .hiw__step-icon {
    align-self: flex-end;
    margin-top: 60px;
}

.hiw__step--three .hiw__step-icon {
    align-self: flex-end;
    margin-top: 60px;
}

.hiw__step--two .hiw__step-header {
    margin-top: 20px;
}

.hiw__step--two .hiw__step-icon {
    align-self: flex-start;
    margin-top: 60px;
}

.hiw__step--four .hiw__step-header {
    margin-top: 20px;
}

.hiw__step--four .hiw__step-icon {
    align-self: flex-start;
    margin-top: 40px;
}


/* ================================
   BUSINESS BENEFITS SECTION
================================ */

/* .benefits {
    padding: 80px 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #000000 0%, #0F0F2D 16.46%);
} */

.benefits {
    padding: 160px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 16.46%);
	position: relative;
}

.benefits::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
    z-index: 1;
}

.benefits__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits .section-heading {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 121%;
    letter-spacing: 1px;
}

/* GRID */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 30px;
    width: 100%;
    margin-top: 48px;
}

/* BENEFIT CARD */
.benefit-card {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
    height: 300px;
    justify-content: center;
}

.benefit-card__stat {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 33px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.benefit-card__title {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.benefit-card__text {
    color: #f8f9fa;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* CARD COLOR VARIANTS */
.benefit-card--blue   { background: #5DADE2; }
.benefit-card--green  { background: #67BC32; }
.benefit-card--orange { background: #FF6600; }
.benefit-card--red    { background: #EB5757; }
.benefit-card--yellow { background: #EBAA00; }
.benefit-card--gray   { background: #828282; }

/* ================================
   MICROSOFT ECOSYSTEM SECTION
================================ */

.msft {
    padding: 180px 0 80px;
    font-family: "Segoe UI", sans-serif;
/*     background: linear-gradient(180deg, #0F0F2D 0%, #000000 27.01%); */
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 27.01%);
}

.msft__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.msft .section-heading {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;
}

.msft p.section-subtext {
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #f8f9fa;
    margin-top: 20px;
}

/* LOGO CARDS ROW */
.msft__logos {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.msft__logo-card {
    background: #D9D9D933;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    flex: 1;
    transition: border-color 0.2s, background 0.2s;
    cursor: default;
}

.msft__logo-card:hover {
    border-color: rgba(0, 120, 212, 0.45);
    background: rgba(0, 120, 212, 0.08);
}

.msft__logo-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msft__logo-icon svg {
    width: 100%;
    height: 100%;
}

.msft__logo-name {
    color: #f8f9fa;
    text-align: center;
    white-space: nowrap;
    font-family: 'Inter', serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
}

.msft__logo-icon img {
    width: 100%;
}

/* ================================
   APPSOURCE BANNER SECTION
================================ */

/* .appsource {
    background: #000;
    padding: 48px 0;
    font-family: "Segoe UI", sans-serif;
} */

.appsource {
    padding: 48px 0 50px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 27.01%);
	position: relative;
}

.appsource::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
    z-index: 1;
}

.appsource__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* BLOCK 1 � Logo */
.appsource__logo {
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 20px;
}

.appsource__ms-logo img {
    width: 70px;
    height: 70px;
}

/* BLOCK 2 � Text */
.appsource__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appsource__available {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: 0%;
    margin-bottom: -25px;
}

.appsource__name {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 60px;
    letter-spacing: 0%;
}

.appsource__heading {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;
    margin-top: -10px;
}

.appsource__desc {
    color: #f8f9fa;
    max-width: 645px;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: 35px;
}

.appsource__trust {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.appsource__trust .trust__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* BLOCK 3 � CTA */
.appsource__cta {
    flex-shrink: 0;
}

/* ================================
   AI AUTOMATION SECTION
================================ */

/* .ai-auto {
    padding: 80px 0;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(179.99deg, #000000 4.98%, #0F0F2D 14.04%);
    background: linear-gradient(
        180deg,
        #000000 0%,
        #0F0F2D 30%,
        #0F0F2D 70%,
        #000000 100%
    );
} */

.ai-auto {
    padding: 160px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 27.01%);
}

.ai-auto__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Robot Icon */
.ai-auto__robot-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 16px;
}

.ai-auto__robot-icon i {
    font-size: 50px;
    color: #fff;
}

.ai-auto .section-heading {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.ai-auto p.section-subtext {
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    max-width: 745px;
    margin: 25px auto 0;
    color: #DBEAFE;
}

/* TWO COLUMN LAYOUT */
.ai-auto__layout {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    margin-top: 56px;
}

/* LEFT � Features */
.ai-auto__features {
    flex: 1;
    display: flex;
    /* flex-direction: column; */
    gap: 36px;
    justify-content: space-around;
}

.ai-auto__feature {
    display: flex;
    /* align-items: flex-start; */
    gap: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 33%;
}

.ai-auto__feature-icon {
    width: 60px;
    height:60px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-auto__feature-icon svg {
    width: 30px;
    height: 30px;
}

.ai-auto__feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ai-auto__feature-title {
    color: #ffffff;
    font-family: 'Inter', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.ai-auto__feature-desc {
    color: #DBEAFE;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* RIGHT � Agent List */
.ai-auto__agents {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Status Row */
.ai-auto__agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ai-auto__status-dot--active {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 6px #4ADE80;
    flex-shrink: 0;
}

.ai-auto__status-label {
    color: #fff;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* Agent Items */
.ai-auto__agent-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-auto__agent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8F9FA;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 18px;
    transition: border-color 0.2s, background 0.2s;
}

.ai-auto__agent-item--active {
    background: #F8F9FAAF;
}

.ai-auto__agent-item.ai-auto__agent-item--last {
    background: #F8F9FA29;
}

.ai-auto__agent-item--last span.ai-auto__agent-name {
    color: #f8f9fa;
}

.ai-auto__agent-dot--green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
}

.ai-auto__agent-name {
    color: #333333;
    font-family: Inter;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* ================================
   CTA SECTION
================================ */

/* .cta {
    padding: 80px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(0deg, #000 0%,#0F0F2D 27.01%);
} */

.cta {
    padding: 50px 0 80px;
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #0F0F2D 0%, #0F0F2D 27.01%);
    position: relative;
}

.cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -140px;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, #0F0F2D 0%, #000000 53.37%, #0F0F2D 100%);
    z-index: 1;
}

.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.cta .section-label {
    color: #f8f9fa;
    margin-bottom: 10px;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1px;
}

.cta__heading {
    color: #f8f9fa;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 1px;
}

.cta p.section-subtext {
    font-family: 'Inter', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 196%;
    letter-spacing: 0px;
    color: #f8f9fa;
}

.cta__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn--ghost {
    color: #000000;
    padding: 20px 60px;
    border-radius: 8px;
    text-decoration: none;
    background: #f8f9fa;
    border: 2px solid #BFDBFE;
    line-height: 100%;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: 0px 0px 0px 0px #00000000, 0px 0px 0px 0px #00000000, 0px 10px 15px -3px #0000001A, 0px 4px 6px -4px #0000001A;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.cta .btn--white {
    padding: 20px 30px;
}

/* .btn--ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
} */

/* ================================
   FOOTER
================================ */

.footer {
/*     background: #000; */
    font-family: "Segoe UI", sans-serif;
    padding-top: 120px;
    background: #0F0F2D;
}


.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    padding-top: 64px;
    padding-bottom: 64px;
}

/* BRAND */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 260px;
	a{
		img{
			width:120px;
			height:20px;
		}
	}
}

.footer .logo-img {
    height: auto;
}

.footer__tagline {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* SOCIALS */
.footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.footer__social-btn:hover {
    border-color: rgba(0, 120, 212, 0.5);
    background: rgba(0, 120, 212, 0.1);
}

.footer__social-btn svg {
    width: 16px;
    height: 16px;
}

/* CONTACT FORM */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 520px;
}

.footer__contact-heading {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 25.5px;
    line-height: 36px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer__contact-subtext {
    color: #f8f9fa;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: -10px;
}

.footer__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.footer__form-row {
    display: flex;
    gap: 10px;
}

.footer__input {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer__input::placeholder {
    color: #000 !important;
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer__input:focus {
    border-color: rgba(0, 120, 212, 0.6);
}

.footer__textarea {
    resize: none;
    height: 90px;
}

.footer__submit {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 8px;
    justify-content: center;
    display: flex;
    font-family: Inter;
    font-weight: 600;
    font-size: 15.3px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

/* BOTTOM BAR */
.footer__bottom {
    border-top: 1px solid #fff;
    padding: 20px 0 60px;
    max-width: 88%;
    margin: 0 auto;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__copy {
    color: #f8f9fa;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 50px;
}

.footer__legal-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* TIMELINE */

.hiw__mobile{
    display: none;
}


/* ================================
   FOOTER � MOBILE
================================ */

@media (max-width: 767px) {
    .footer__inner {
        flex-direction: column;
        gap: 48px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__contact {
        max-width: 100%;
    }

    .footer__form-row {
        flex-direction: column;
    }

    .footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer__legal {
        gap: 16px;
        flex-wrap: wrap;
    }
}


/* ====================================================================================================
MOBILE CSS
=======================================================================================================*/

@media (max-width: 767px) {
    /* ================================
       BANNER � MOBILE
    ================================ */

    .banner {
        padding: 60px 0 60px;
    }

    .banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .banner__content {
        max-width: 100%;
    }

    .banner__heading {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    .banner__powered {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .banner__actions {
        gap: 12px;
    }

    .banner__trust {
        gap: 14px;
    }

    .trust__item {
        font-size: 12px;
    }

    .banner__visual {
        width: 100%;
    }

    .feature-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .banner__orb--1 {
        width: 350px;
        height: 350px;
        left: 10%;
    }

    .banner__orb--2 {
        width: 250px;
        height: 250px;
    }

    /* ================================
    FEATURES � MOBILE
    ================================ */

    .features {
        padding: 60px 0;
    }

    .features__inner {
        flex-direction: column;
        gap: 40px;
    }

    .features__card {
        width: 100%;
        padding: 28px 24px;
        gap: 16px;
    }

    .features__heading {
        font-size: 24px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .feature-item__title {
        font-size: 18px;
    }

    /* ================================
    CORE FEATURES � MOBILE
    ================================ */

    .core-features {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 26px;
    }

    .tabs {
        gap: 0;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        font-size: 14px;
        padding: 10px 18px;
    }

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

    .cf-card {
        padding: 24px 20px;
    }

    /* ================================
    HOW IT WORKS � MOBILE
    ================================ */

    .hiw {
        padding: 60px 0;
    }

    .hiw__layout {
        flex-direction: column;
        gap: 0;
        margin-top: 48px;
    }

    .hiw__divider {
        display: none;
    }

    .hiw__col {
        width: 100%;
        gap: 40px;
    }

    .hiw__col--right {
        align-items: flex-start;
        margin-top: 40px;
    }

    .hiw__step--right {
        align-items: flex-start;
        text-align: left;
    }

    .hiw__step-header--right {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .hiw__step-text--right {
        padding-left: 46px;
        padding-right: 0;
    }

    .hiw__step--right .hiw__step-icon {
        margin-right: 0;
        margin-left: 46px;
        align-self: flex-start;
    }

    .hiw__step {
        max-width: 100%;
    }

    /* ================================
    BUSINESS BENEFITS � MOBILE
    ================================ */

    .benefits {
        padding: 60px 0;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 36px;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefit-card__stat {
        font-size: 34px;
    }

    .benefit-card__title {
        font-size: 15px;
        line-height: 20px;
    }

    .benefit-card__text {
        font-size: 12px;
        max-width: 100%;
    }

    /* ================================
    MICROSOFT ECOSYSTEM � MOBILE
    ================================ */

    .msft {
        padding: 60px 0;
    }

    .msft__inner {
        gap: 32px;
    }

    .msft__logos {
        gap: 10px;
    }

    .msft__logo-card {
        min-width: 80px;
        max-width: calc(33% - 10px);
        padding: 20px 12px;
        gap: 12px;
    }

    .msft__logo-icon {
        width: 40px;
        height: 40px;
    }

    .msft__logo-name {
        font-size: 11px;
    }

    /* ================================
    APPSOURCE BANNER � MOBILE
    ================================ */

    .appsource {
        padding: 36px 0;
    }

    .appsource__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .appsource__heading {
        font-size: 22px;
    }

    .appsource__desc {
        max-width: 100%;
    }

    .appsource__trust {
        gap: 14px;
    }

    .appsource__cta {
        width: 100%;
    }

    .appsource__cta .btn--primary {
        display: flex;
        justify-content: center;
        width: 100%;
    }


    /* ================================
    AI AUTOMATION � MOBILE
    ================================ */

    .ai-auto {
        padding: 60px 0;
    }

    .ai-auto__layout {
        flex-direction: column;
        gap: 48px;
        margin-top: 40px;
    }

    .ai-auto__features {
        gap: 28px;
        flex-direction: column;
    }

    .ai-auto__agents {
        width: 100%;
    }

    /* ================================
    CTA SECTION � MOBILE
    ================================ */

    .cta {
        padding: 60px 0;
    }

    .cta__heading {
        font-size: 26px;
        letter-spacing: -0.3px;
    }

    .cta__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta__actions .btn--primary,
    .cta__actions .btn--ghost {
        width: 100%;
        display: flex;
        justify-content: center;
    }

/* ########################################################################################
MORE CSS FOR MOBILE
############################################################################################*/
    /* HEADER */

.header__inner {
    padding: 15px 15px;
}

.logo-img {
    height: auto;
    width: 80px;
}

.btn--primary {
    padding: 12px 15px;
    font-size: 14px;
}

.banner{
    height: auto;
}

.banner__inner {
    padding: 0 15px;
}

.btn--outline {
    padding: 10px 20px;
}

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

.banner .feature-card {
    max-width: 100%;
    padding: 30px;
}

.feature-label {
    font-size: 14px;
}

section {
    padding: 50px 15px !important;
}

.container_two{
    padding: 0;
}

.features__label {
    font-size: 16px;
}

.features__desc {
    font-size: 14px;
}

.features__card {
    height: 450px;
}

.features__grid {
    padding-top:30px;
    padding-bottom: unset;
}

.feature-item__icon {
    width: 80px;
    height: 80px;
}

.feature-item__text {
    font-size: 14px;
}

.section-label {
    font-size: 16px;
    margin-top: 20px;
}

.core-features .section-heading {
    font-size: 24px;
}

.cf-card__title {
    font-size: 18px;
}

.cf-card__text {
    font-size: 14px;
}

.cf-card {
    gap: 15px;
}

.cf-card__icon {
    width: 55px;
    height: 55px;
}

.section-label {
    margin-top: unset;
}

body {
    background: black;
}

.hiw .section-heading {
    font-size: 28px;
}

.hiw .section-subtext {
    font-size: 14px;
}

.benefits .section-heading {
    font-size: 28px;
}

.benefit-card {
    padding: 10px;
}

.msft .section-heading {
    font-size: 28px;
    line-height: 40px;
}

.msft p.section-subtext {
    font-size: 16px;
}

.msft__logo-card {
    gap: 20px;
}

.msft__logo-icon {
    width: 70px;
    height: 100%;
}

.msft__logo-icon img{
    width: 80%;
}

.appsource__available {
    font-size: 18px;
}

.appsource__name {
    font-size: 28px;
    margin-bottom: -20px;
}

.appsource__heading {
    font-size: 16px;
}

.appsource__desc {
    font-size: 14px;
    margin-top: 0;
}

.appsource__trust {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.ai-auto .section-heading {
    font-size: 28px;
    line-height: 40px;
}

.ai-auto p.section-subtext {
    font-size: 16px;
}

.ai-auto__feature-title {
    font-size: 16px;
}

.ai-auto__feature-desc {
    font-size: 14px;
}

.ai-auto__feature-icon {
    width: 55px;
    height: 55px;
}

.ai-auto__agent-name {
    font-size: 16px;
}

.cta .section-label {
    font-size: 16px;
}

.cta__heading {
    font-size: 24px;
    line-height: 35px;
}

.cta p.section-subtext {
    font-size: 14px;
}

.footer {
    padding: 50px 15px 0;
}

.footer .logo-img {
    width: 140px;
}

.footer__bottom {
    padding: 20px 0 30px;
    max-width: 100%;
    margin: 50px auto 0;
}

.footer__bottom-inner {
    padding: 0;
    align-items: center;
}

.footer__copy {
    font-size: 12px;
}

.footer__legal-link {
    font-size: 12px;
}

.hiw__step-header {
    order: 2;
}

.hiw__step-text {
    order: 3;
}

.hiw__step-icon {
    align-self: center !important;
    margin: 0 !important;
}

.hiw__desktop{
    display: none;
}

.hiw__mobile{
    display: unset;
}

.hiw__step {
    gap: 0px;
}

.hiw__step-text {
    font-size: 14px;
}

.hiw__step--right .hiw__step-text {
    padding-right: unset;
    padding-left: 80px;
}

/* Hamburger ? X animation */
.menu-toggle span {
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.menu-toggle--open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle--open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    padding: 20px 30px 40px;
}

.mobile-menu__list {
    list-style-type: none;
}

.nav__link {
    font-family: 'Inter', serif;
}

.mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        background: #0d1022;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 40px 32px 40px;
        z-index: 999;
        display: block !important;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu--open {
        transform: translateX(0);
    }

    .mobile-menu__list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
    }

    .mobile-menu__list .nav__link {
        display: block;
        padding: 12px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mobile-btn {
        display: inline-block;
        margin-top: 24px;
        width: 100%;
        text-align: center;
    }

    /* Hamburger ? X */
    .menu-toggle span {
        transition: transform 0.25s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .menu-toggle--open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle--open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle--open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        backdrop-filter: blur(3px);
    }

    .mobile-menu-overlay--visible {
        opacity: 1;
        pointer-events: all;
    }

    .msft__logo-card {
        max-width: unset;
    }

    .ai-auto__feature {
        width: 100%;
    }

}