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

:root {
    --bg: #10182f;
    --bg-alt: #0d1326;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.14);
    --text: #f8f9ff;
    --text-muted: #aab2d1;
    --accent: #f7a82c;
    --accent-soft: rgba(247, 168, 44, 0.15);
    --btn: #f9a41b;
    --btn-hover: #fbb347;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}
body, h1, h2, h3, p,ul,li,a,button {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at bottom right, rgba(255, 160, 70, 0.08), transparent 26%),
        linear-gradient(180deg, #0b1220 0%, #0f1b38 100%);
    color: var(--text);
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1440px, calc(100% - 180px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    width: 100%;
    background: rgba(7, 13, 28, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    background: rgba(7, 13, 28, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8fafc;
    color: #0f172a;
}
.brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.logo-image {
    max-height: 48px;
    width: auto;
    display: block;
}


.logo-mark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.08em;
    color: var(--text);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.subline {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mobile-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .mobile-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

body.nav-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .mobile-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 13, 28, 0.96);
        padding: 16px 20px 20px;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-primary {
        padding: 12px 18px;
    }

    .header-inner {
        flex-wrap: nowrap;
    }

    .challenge-grid {
        grid-template-columns: 1fr !important;
        grid-auto-flow: row;
    }

    .challenge-item {
        grid-template-columns: 52px 1fr;
        padding: 18px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    body {
        background-position: top center;
    }

    .header-inner {
        justify-content: space-between;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.92rem;
    }
}

/* HERO */
.hero {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 100px 20px;
    
    background: linear-gradient(180deg, rgba(237, 213, 116, 0.225) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.hero h1 {
    font-size: 72px;
   margin-top: 40px;
    line-height: 0.95;
    letter-spacing: -0.03em;
}
.hero h1 span {
    color: var(--accent);
}

.hero .sub {
    color: #64748b;
    max-width: 1000px;
    font-size: 20px;
    margin: 20px auto 0;
    
}

.tag {
    margin-top: 70px;
    background: #e2e8f0;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 15px;
}

.btns {
    margin-top: 70px;
}

.trusted-text {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.trusted-icons {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    margin-top: 40px;
}

.trusted-icon {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* box-shadow: 0 4px 12px rgba(247, 168, 44, 0.3); */
    transition: transform 0.3s ease;
}

.trusted-icon:hover {
    transform: scale(1.1);
}

.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(247, 168, 44, 0.1);
    animation: floatUp 6s ease-in-out infinite;
}

.bubble-1 {
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 30%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 30px;
    height: 30px;
    bottom: -30px;
    left: 50%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 50px;
    height: 50px;
    bottom: -50px;
    left: 70%;
    animation-delay: 1s;
}

.bubble-5 {
    width: 35px;
    height: 35px;
    bottom: -35px;
    left: 90%;
    animation-delay: 3s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}
.btn-primary {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--btn);
    color: #0d1326;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--btn-hover);
}

.primary {
    background: var(--btn);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.primary:hover {
    transform: translateY(-3px);
}

.secondary {
    font-family: 'Montserrat', sans-serif;
    background: #FAAA18;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}


/* OMNICHANNEL */
.omnichannel {
    padding: 80px 20px;
    background: #e4eef89f;
}

.omnichannel-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.omnichannel-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.omnichannel-left h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 36px;
}

.omnichannel-left h2 span {
    color: #2563eb;
}

.omnichannel-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.omnichannel-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.item-icon {
    font-size: 32px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #f4a107;
    margin-bottom: 8px;
}

.item-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.omnichannel-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .icon-orbit {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.center-image {
    width: 640px;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    /* box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12); */
}

.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    animation: orbitRotate 20s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.orbit-icon-1 {
    animation-delay: 0s;
}

.orbit-icon-2 {
    animation-delay: -3.33s;
}

.orbit-icon-3 {
    animation-delay: -6.67s;
}

.orbit-icon-4 {
    animation-delay: -10s;
}

.orbit-icon-5 {
    animation-delay: -13.33s;
}

.orbit-icon-6 {
    animation-delay: -16.67s;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg) translateX(140px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(140px) rotate(-360deg);
    }
}


/* PROBLEMS */
.problem-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top left, rgba(247, 168, 44, 0.12), transparent 28%),
        linear-gradient(180deg, #f2f3ee 0%, #faab182d 100%);
}

.problem-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.problem-left {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 12px;
}

.problem-left::-webkit-scrollbar {
    width: 8px;
}

.problem-left::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
}

.problem-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-label {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.05;
    margin-bottom: 18px;
}

.section-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.problem-item {
    padding: 24px 22px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    margin-bottom: 22px;
}

.problem-item h4 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #111827;
}

.problem-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.problem-right {
    position: sticky;
    top: 100px;
    align-self: start;
}

.problem-image-wrap {
    border-radius: 32px;
    overflow: hidden;
    background: #eff6ff;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.06);
}

.solution-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.solution-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* .solution-header {
    text-align: center;
    margin-bottom: 36px;
} */

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.solution-image-wrap {
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.solution-image-wrap img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

.solution-list {
    list-style: none;
    display: grid;
    gap: 18px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.solution-item {
    font-family: 'Montserrat', sans-serif;;
    padding: 18px 20px;
    /* background: rgba(255, 255, 255, 0.98); */
    /* border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06); */
    border-bottom: 1px solid gray;
    position: relative;
    font-size: 0.9rem;
    line-height: 0.2;
    color: #0f172a;
    font-weight: 600;
}

.solution-item::before {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f7a82c;
    color: #ffffff;
    font-size: 0.8rem;
}

.solution-item {
    padding-left: 58px;
}


/* INDUSTRIES */
.industries-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #d8dfe144 100%);
}

.industries-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-header {
    text-align: center;
    margin-bottom: 48px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.industry-card {
    padding: 32px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f7a82c, #fbb347);
}

.industry-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(247, 168, 44, 0.08) 0%, rgba(251, 179, 71, 0.04) 100%);
}

.industry-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(96, 165, 250, 0.04) 100%);
}

.industry-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(74, 222, 128, 0.04) 100%);
}

.industry-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.04) 100%);
}

.industry-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(244, 114, 182, 0.04) 100%);
}

.industry-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(56, 189, 248, 0.04) 100%);
}

.industry-icon {
    font-size: 1.8rem;
    opacity: 0.6;
    line-height: 1;
    display: block;
    z-index: 1;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    z-index: 1;
}

.industry-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    z-index: 1;
}

.industry-card:hover {
    border-color: rgba(247, 168, 44, 0.4);
    box-shadow: 0 32px 64px rgba(247, 168, 44, 0.15);
    transform: translateY(-4px);
}


/* Services */

.service-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 42px;
}

.service-label {
    display: inline-block;
   
    /* letter-spacing: 0.24em; */
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 46px;
}

.service-copy {
    font-family: 'Montserrat', sans-serif;
    color: #6b7280;
    line-height: 1.95;
    margin: 0 auto;
    max-width: 760px;
}

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

.service-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
}

.service-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-card h4 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.97rem;
}

.support-section {
    padding: 42px 0;
    background: linear-gradient(135deg, #0f3b94 0%, #073391 100%);
    color: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
    gap: 36px;
    align-items: center;
}

.support-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #8bc6ff;
    font-weight: 700;
    margin-bottom: 18px;
}

.support-copy h3 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-copy {
    max-width: 600px;
}

.support-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 32px;
    font-size: 1rem;
}


.problem-image-wrap img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/* IMPACT */
.impact {
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
}

.impact-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.impact-copy {
    max-width: 680px;
    margin: 0 auto;
    font-size: 20px;
    color: #0f172a;
    line-height: 1.7;
    font-weight: 500;
}

.impact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    justify-items: center;
}

.impact-card {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 16px;
    padding: 16px 20px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.impact-card:hover::before {
    left: 100%;
}

.impact-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.impact-card strong {
    font-size: 24px;
    color: #f7a82c;
    font-weight: 700;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.impact-card:hover strong {
    color: #1e40af;
}

.impact-card span {
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: left;
    flex: 1;
}

.impact-card:hover span {
    color: #334155;
}


/* STATS */
.stats {
    text-align: center;
    padding: 80px 20px;
}

.stats h2 {
    max-width: 800px;
    margin: auto;
    font-size: 28px;
}

.badges {
    margin-top: 40px;
}

.badges span {
    display: inline-block;
    border: 1px solid #cbd5f5;
    padding: 10px 18px;
    border-radius: 30px;
    margin: 8px;
    transition: 0.3s;
}

.badges span:hover {
    background: #2563eb;
    color: white;
}


/* FEATURE SECTION */
.feature {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* LEFT SIDE SCROLL */
.feature-left {
    width: 50%;
    overflow-y: auto;
    padding: 60px;
}

.feature-left::-webkit-scrollbar {
    width: 5px;
}

.feature-left::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.content p {
    color: #64748b;
    margin-bottom: 30px;
}

.card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

.card:hover {
    transform: translateX(5px);
}

.card.active {
    background: #ffffff;
    border-left: 4px solid green;
}

/* RIGHT SIDE FIXED IMAGE */
.feature-right {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
}

.feature-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBgAnimation {
    0% {
        background: linear-gradient(180deg, rgba(251, 232, 125, 0.9) 0%, rgba(245, 233, 105, 0.7) 50%, rgba(255, 255, 255, 0.1) 100%);
    }
    25% {
        background: linear-gradient(180deg, rgba(251, 232, 125, 0.75) 0%, rgba(245, 233, 105, 0.55) 50%, rgba(255, 255, 255, 0.25) 100%);
    }
    50% {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(247, 168, 44, 0.3) 50%, rgba(255, 255, 255, 0.5) 100%);
    }
    75% {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(247, 168, 44, 0.25) 100%);
    }
    100% {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(247, 168, 44, 0.1) 100%);
    }
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero .sub {
        font-size: 16px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .impact-card {
        padding: 14px 16px;
        max-width: none;
    }

    .impact-card strong {
        font-size: 20px;
    }

    .impact-card span {
        font-size: 13px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .problem-left {
        max-height: none;
        order: 2;
        padding-right: 0;
    }

    .problem-right {
        order: 1;
        position: relative;
        top: auto;
    }

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

    .solution-image-wrap,
    .solution-content {
        width: 100%;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .industry-icon {
        font-size: 3rem;
    }

    .section-label {
        font-size: 28px;
    }

    .section-copy {
        font-size: 16px;
    }

    .feature {
        flex-direction: column;
        height: auto;
    }

    .feature-left,
    .feature-right {
        width: 100%;
        height: auto;
    }

    .feature-right {
        position: relative;
    }

    .omnichannel-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .omnichannel-left h2 {
        font-size: 32px;
    }

    .omnichannel-item {
        gap: 12px;
    }

    .item-icon {
        font-size: 28px;
    }

    .item-content h4 {
        font-size: 16px;
    }

    .item-content p {
        font-size: 14px;
    }

    .icon-orbit {
        width: 280px;
        height: 280px;
    }

    .center-image {
        width: 180px;
        height: 180px;
    }

    .orbit-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .btns {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .btns .primary,
    .btns .secondary {
        width: min(320px, 100%);
        margin: 0;
    }

    .trusted-text {
        font-size: 16px;
    }

    .trusted-icons {
        gap: 18px;
        margin-top: 18px;
    }

    .trusted-icon {
        width: 45px;
        height: 45px;
    }

    .trusted-icons {
        gap: 15px;
        margin-top: 15px;
    }

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

    .solution-header {
        text-align: left;
    }

    .industries-section,
    .impact,
    .omnichannel,
    .stats,
    .service-section,
    .feature,
    .support-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats h2 {
        font-size: 24px;
    }

    .badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .badges span {
        padding: 10px 16px;
    }
}

@media(max-width: 640px) {
    .hero {
        padding: 40px 16px;
    }

    .hero h1 {
        font-size: 32px;
        margin-top: 20px;
    }

    .hero .sub {
        font-size: 14px;
    }

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

    .impact-card {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .impact-card strong {
        font-size: 18px;
    }

    .impact-card span {
        font-size: 12px;
    }

    .problem-section {
        padding: 40px 16px;
    }

    .solution-section {
        padding: 40px 16px;
    }

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

    .solution-item {
        padding: 18px 20px 18px 52px;
    }

    .industries-section {
        padding: 40px 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .industry-icon {
        font-size: 2.6rem;
    }

    .industry-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .industry-card p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .problem-left {
        max-height: 70vh;
    }

    .problem-header {
        margin-bottom: 24px;
    }

    .section-label {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-copy {
        font-size: 14px;
    }

    .problem-item {
        padding: 16px 14px;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .problem-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .problem-item p {
        font-size: 13px;
    }

    .feature-left {
        padding: 30px 16px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .card {
        padding: 14px;
        margin-bottom: 12px;
    }

    .card h4 {
        font-size: 14px;
    }

    .card p {
        font-size: 12px;
    }

    .omnichannel {
        padding: 40px 16px;
    }

    .omnichannel-left h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .omnichannel-list {
        gap: 16px;
    }

    .item-icon {
        font-size: 24px;
        min-width: 40px;
    }

    .item-content h4 {
        font-size: 14px;
    }

    .item-content p {
        font-size: 12px;
    }

    .icon-orbit {
        width: 240px;
        height: 240px;
    }

    .center-image {
        width: 140px;
        height: 140px;
    }

    .orbit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

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

    .service-card {
        min-height: auto;
    }

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

    .stats h2 {
        font-size: 22px;
    }

    .badges {
        gap: 10px;
    }

    .badges span {
        display: block;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btns .primary,
    .btns .secondary {
        width: 100%;
    }

    .feature-left {
        padding: 24px 16px;
    }

    .feature-right {
        height: auto;
        position: relative;
    }

    .feature-right img {
        height: auto;
    }

    .solution-item {
        padding-left: 48px;
    }

    .industry-card {
        padding: 22px 18px;
    }

    .industry-icon {
        font-size: 2.4rem;
    }

    .industry-card h3 {
        font-size: 1rem;
    }

    .industry-card p {
        font-size: 0.88rem;
    }
}

    @keyframes orbitRotate {
        from {
            transform: rotate(0deg) translateX(90px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(90px) rotate(-360deg);
        }
    }


.testimonials-section {
    padding: 72px 0;
    background: #ffffff;
    color: #111827;
}

.testimonials-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #f7a82c;
}

.testimonials-highlight {
    color: #111827;
}

.testimonials-description {
    color: #6b7280;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    width: 400%;
    border-radius: 20px;
    scroll-behavior: smooth;
}

.testimonial-slide {
    flex: 0 0 25%;
    min-width: 25%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 36px;
    align-items: center;
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
}

.testimonial-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.testimonial-image img {
    width: 500px;
    height: 400px;
    object-fit: cover;
    display: block;
}

.testimonial-play-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 99, 71, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.testimonial-play-btn::after {
    content: "▶";
    color: #ffffff;
    font-size: 1rem;
    margin-left: 2px;
}

.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.testimonial-quote::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(249, 164, 27, 0.15);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    line-height: 40px;
    text-align: center;
    font-size: 1.5rem;
    color: #f9a41b;
    margin-bottom: 12px;
    float: left;
}

.testimonial-author {
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-title {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6b7280;
    transition: background 0.2s ease, color 0.2s ease;
}

.testimonial-nav-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

@media (max-width: 980px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
    }

    .testimonials-nav {
        position: static;
        justify-content: center;
        margin-top: 24px;
    }
}

@media (max-width: 720px) {
    .testimonials-section {
        padding: 56px 0;
    }

    .testimonials-header {
        margin-bottom: 42px;
    }

    .testimonials-header h2 {
        font-size: 1.5rem;
    }

    .testimonial-content {
        padding: 24px;
        gap: 20px;
    }

    .testimonial-image {
        min-height: 240px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .testimonials-nav {
        gap: 8px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.faq-section {
    padding: 72px 0;
    background: #ffffff;
    color: #111827;
}

.faq-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 56px;
}

.faq-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #f7a82c;
}

.faq-description {
    color: #6b7280;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-item.faq-active .faq-question {
    background: #f3f4f6;
    color: #f9a41b;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(180deg);
    color: #f9a41b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

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

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-header {
        margin-bottom: 42px;
    }

    .faq-header h2 {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-item.faq-active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }
}

footer {
    padding: 32px 0 52px;
    color: #e0e3e9;
    text-align: center;
    background-color: #0b1220;
}

footer a {
    color: inherit;
}