@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Noto+Sans+Myanmar:wght@400;600;700;800&display=swap');

:root {
    --bg-light: #f8fafc;        /* Background Color */
    --text-dark: #0f172a;       /* Main Text Color */
    --text-muted: #64748b;      /* Subtitle Text Color */
    --primary: #2563eb;         /* Royal Blue */
    --secondary: #4f46e5;       /* Indigo */
    --border-color: #e2e8f0;    /* Card Borders */
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    /* မြန်မာစာအတွက် Noto Sans Myanmar ကို ထည့်သွင်းထားပါသည် */
    font-family: 'Inter', 'Noto Sans Myanmar', sans-serif;
    line-height: 1.8; /* မြန်မာစာဖတ်ရလွယ်ကူစေရန် line-height ကို 1.8 သို့ပြောင်းထားပါသည် */
}

/* ကျန်ရှိသော မူလ CSS Code များကို ဤနေရာအောက်တွင် ဆက်လက်ထားရှိပါ... */

/* 1. Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.2em; 
    display: inline-block;
}

/* 2. Glassmorphism Sticky Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

/* 3. Professional Square Buttons */
.btn-custom {
    border-radius: 4px; /* Square/Professional look */
    font-weight: 600;
    padding: 12px 28px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border: none;
}

.btn-gradient:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-radius: 4px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
}

/* 4. Shadowed Cards (Square Corners) */
.card-custom {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

/* 5. Dark Professional Footer */
.footer-dark {
    background-color: var(--text-dark);
    color: #f8fafc;
}

main section {
    position: relative;
    overflow: hidden;
}

main section > .container {
    position: relative;
    z-index: 1;
}

main section > .container > * {
    position: relative;
    z-index: 1;
}

main section::before,
main section::after,
main section > .container::before,
main section > .container::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

main section::before {
    width: 260px;
    height: 180px;
    top: 10%;
    left: 6%;
    border-radius: 43% 57% 31% 69% / 64% 32% 68% 36%;
    transform: rotate(-18deg);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(79, 70, 229, 0.03));
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.14);
}

main section::after {
    width: 180px;
    height: 140px;
    right: 9%;
    top: 62%;
    clip-path: polygon(3% 22%, 87% 0%, 100% 76%, 22% 100%);
    transform: rotate(13deg);
    background: linear-gradient(138deg, rgba(79, 70, 229, 0.16), rgba(37, 99, 235, 0.03));
    box-shadow: 0 18px 38px rgba(79, 70, 229, 0.13);
}

main section > .container::before {
    top: 32%;
    right: 18%;
    width: 115px;
    height: 88px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.26);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: rotate(11deg);
    border-radius: 37% 63% 55% 45% / 43% 39% 61% 57%;
}

main section > .container::after {
    top: 74%;
    left: 12%;
    width: 95px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    clip-path: polygon(8% 14%, 88% 0%, 100% 84%, 20% 100%);
    transform: rotate(-9deg);
}

#home > .container::before {
    right: 8%;
    top: 40%;
    width: 128px;
    height: 96px;
    border-radius: 54% 46% 65% 35% / 41% 57% 43% 59%;
}

#home > .container::after {
    left: 22%;
    top: 68%;
    width: 82px;
    height: 58px;
    clip-path: polygon(0% 0%, 100% 16%, 84% 100%, 10% 82%);
}

#services::before {
    left: auto;
    right: 12%;
    top: 16%;
    width: 248px;
    height: 172px;
    border-radius: 32% 68% 45% 55% / 51% 36% 64% 49%;
    transform: rotate(19deg);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(79, 70, 229, 0.04));
}

#services::after {
    right: auto;
    left: 10%;
    top: 58%;
    width: 162px;
    height: 130px;
    clip-path: polygon(0% 28%, 85% 0%, 100% 78%, 18% 100%);
}

#services > .container::before {
    right: 26%;
    top: 30%;
    clip-path: polygon(4% 22%, 86% 2%, 100% 74%, 24% 100%);
    transform: rotate(-8deg);
}

#services > .container::after {
    left: 62%;
    top: 72%;
    width: 88px;
    height: 68px;
}

#demo::before {
    left: 8%;
    top: 20%;
    width: 214px;
    height: 160px;
    clip-path: polygon(0% 12%, 92% 0%, 100% 78%, 14% 100%);
    background: linear-gradient(140deg, rgba(79, 70, 229, 0.18), rgba(37, 99, 235, 0.03));
}

#demo::after {
    right: 14%;
    top: 60%;
    width: 160px;
    height: 122px;
    border-radius: 45% 55% 66% 34% / 47% 40% 60% 53%;
    transform: rotate(-14deg);
}

#demo > .container::before {
    top: 34%;
    right: 6%;
    width: 110px;
    height: 80px;
    clip-path: polygon(0% 18%, 86% 0%, 100% 80%, 22% 100%);
}

#demo > .container::after {
    left: 26%;
    top: 76%;
}

#why-choose::before {
    left: 12%;
    top: 14%;
    width: 236px;
    height: 170px;
    border-radius: 58% 42% 39% 61% / 48% 62% 38% 52%;
    transform: rotate(-16deg);
    background: linear-gradient(140deg, rgba(79, 70, 229, 0.18), rgba(79, 70, 229, 0.04));
}

#why-choose::after {
    right: 8%;
    top: 66%;
    width: 172px;
    height: 132px;
    clip-path: polygon(10% 0%, 100% 18%, 82% 100%, 0% 78%);
    border-radius: 10px;
    transform: rotate(9deg);
}

#why-choose > .container::before {
    right: 44%;
    top: 42%;
    width: 102px;
    height: 74px;
    clip-path: polygon(0% 12%, 92% 0%, 100% 84%, 14% 100%);
}

#why-choose > .container::after {
    left: 68%;
    top: 78%;
}

#features::before {
    left: auto;
    right: 10%;
    top: 18%;
    width: 246px;
    height: 164px;
    clip-path: polygon(6% 14%, 100% 0%, 92% 88%, 0% 100%);
    border-radius: 36% 64% 52% 48% / 41% 46% 54% 59%;
    transform: rotate(7deg);
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.03));
}

#features::after {
    right: auto;
    left: 8%;
    top: 60%;
    width: 170px;
    height: 126px;
    border-radius: 52% 48% 30% 70% / 40% 52% 48% 60%;
    transform: rotate(-15deg);
}

#features > .container::before {
    top: 36%;
    right: 28%;
    width: 112px;
    height: 82px;
    clip-path: polygon(2% 22%, 88% 0%, 100% 72%, 24% 100%);
}

#features > .container::after {
    left: 54%;
    top: 76%;
}

#use-cases::before {
    left: 9%;
    top: 20%;
    width: 238px;
    height: 168px;
    border-radius: 44% 56% 62% 38% / 35% 47% 53% 65%;
    transform: rotate(-10deg);
}

#use-cases::after {
    right: 8%;
    top: 62%;
    width: 170px;
    height: 128px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(79, 70, 229, 0.06));
    border-radius: 47% 53% 42% 58% / 60% 36% 64% 40%;
    transform: rotate(19deg);
}

#use-cases > .container::before {
    top: 48%;
    right: 38%;
    width: 106px;
    height: 78px;
    clip-path: polygon(0% 24%, 88% 0%, 100% 70%, 18% 100%);
}

#use-cases > .container::after {
    left: 70%;
    top: 78%;
}

#how-it-works::before {
    left: auto;
    right: 10%;
    top: 16%;
    width: 232px;
    height: 166px;
    background: rgba(37, 99, 235, 0.09);
    clip-path: polygon(4% 16%, 100% 0%, 94% 92%, 0% 100%);
    border-radius: 42% 58% 50% 50% / 54% 42% 58% 46%;
    transform: rotate(11deg);
    box-shadow: 0 25px 55px rgba(37, 99, 235, 0.10);
}

#how-it-works::after {
    right: auto;
    left: 10%;
    top: 64%;
    width: 164px;
    height: 124px;
    clip-path: polygon(12% 0%, 100% 26%, 86% 100%, 0% 72%);
    border-radius: 10px;
    transform: rotate(-12deg);
}

#how-it-works > .container::before {
    top: 38%;
    right: 24%;
    width: 108px;
    height: 80px;
    clip-path: polygon(0% 16%, 90% 0%, 100% 78%, 16% 100%);
}

#how-it-works > .container::after {
    left: 56%;
    top: 80%;
}

#pricing::before {
    left: 8%;
    top: 18%;
    width: 226px;
    height: 160px;
    clip-path: polygon(0% 14%, 94% 0%, 100% 86%, 12% 100%);
    border-radius: 56% 44% 46% 54% / 38% 55% 45% 62%;
    transform: rotate(-8deg);
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.16), rgba(79, 70, 229, 0.03));
}

#pricing::after {
    right: 10%;
    top: 60%;
    width: 166px;
    height: 120px;
    border-radius: 51% 49% 63% 37% / 35% 65% 35% 65%;
    background: linear-gradient(130deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.02));
    transform: rotate(16deg);
}

#pricing > .container::before {
    top: 34%;
    right: 32%;
    width: 104px;
    height: 76px;
    clip-path: polygon(0% 18%, 92% 0%, 100% 82%, 14% 100%);
}

#pricing > .container::after {
    left: 60%;
    top: 78%;
}

@media (max-width: 768px) {
    main section::before {
        width: 176px;
        height: 126px;
        top: 8%;
        left: 4%;
    }

    main section::after {
        width: 116px;
        height: 88px;
        right: 5%;
        top: 70%;
    }

    main section > .container::before {
        width: 68px;
        height: 50px;
        right: 12%;
        top: 42%;
    }

    main section > .container::after {
        width: 56px;
        height: 42px;
        left: 12%;
        top: 82%;
    }
}

/* Final scattered shapes (non-home sections): larger, rounder, unique per section */
#services::before {
    top: 8%;
    left: -3%;
    width: 320px;
    height: 230px;
    border-radius: 58% 42% 36% 64% / 44% 66% 34% 56%;
    transform: rotate(-14deg);
    clip-path: none;
}

#services::after {
    top: 64%;
    left: 72%;
    width: 220px;
    height: 170px;
    border-radius: 35% 65% 60% 40% / 58% 34% 66% 42%;
    transform: rotate(18deg);
    clip-path: none;
}

#services > .container::before {
    top: 40%;
    right: 6%;
    width: 150px;
    height: 112px;
    border-radius: 64% 36% 48% 52% / 40% 60% 40% 60%;
    clip-path: none;
}

#services > .container::after {
    top: 78%;
    left: 24%;
    width: 118px;
    height: 86px;
    border-radius: 52% 48% 66% 34% / 46% 60% 40% 54%;
    clip-path: none;
}

#demo::before {
    top: 18%;
    left: 76%;
    width: 300px;
    height: 210px;
    border-radius: 62% 38% 50% 50% / 34% 60% 40% 66%;
    transform: rotate(16deg);
    clip-path: none;
}

#demo::after {
    top: 58%;
    left: -4%;
    width: 230px;
    height: 180px;
    border-radius: 44% 56% 32% 68% / 66% 36% 64% 34%;
    transform: rotate(-12deg);
    clip-path: none;
}

#demo > .container::before {
    top: 34%;
    right: 36%;
    width: 140px;
    height: 106px;
    border-radius: 38% 62% 58% 42% / 54% 38% 62% 46%;
    clip-path: none;
}

#demo > .container::after {
    top: 84%;
    left: 62%;
    width: 108px;
    height: 80px;
    border-radius: 57% 43% 41% 59% / 63% 34% 66% 37%;
    clip-path: none;
}

#why-choose::before {
    top: 6%;
    left: 70%;
    width: 330px;
    height: 240px;
    border-radius: 49% 51% 67% 33% / 34% 52% 48% 66%;
    transform: rotate(12deg);
    clip-path: none;
}

#why-choose::after {
    top: 66%;
    left: 10%;
    width: 225px;
    height: 165px;
    border-radius: 67% 33% 46% 54% / 43% 61% 39% 57%;
    transform: rotate(-17deg);
    clip-path: none;
}

#why-choose > .container::before {
    top: 46%;
    right: 52%;
    width: 146px;
    height: 102px;
    border-radius: 55% 45% 36% 64% / 62% 38% 62% 38%;
    clip-path: none;
}

#why-choose > .container::after {
    top: 82%;
    left: 74%;
    width: 104px;
    height: 74px;
    border-radius: 43% 57% 58% 42% / 47% 64% 36% 53%;
    clip-path: none;
}

#features::before {
    top: 10%;
    left: 8%;
    width: 318px;
    height: 220px;
    border-radius: 64% 36% 58% 42% / 37% 63% 37% 63%;
    transform: rotate(-9deg);
    clip-path: none;
}

#features::after {
    top: 62%;
    left: 78%;
    width: 218px;
    height: 170px;
    border-radius: 36% 64% 47% 53% / 66% 37% 63% 34%;
    transform: rotate(20deg);
    clip-path: none;
}

#features > .container::before {
    top: 36%;
    right: 10%;
    width: 136px;
    height: 102px;
    border-radius: 45% 55% 69% 31% / 54% 40% 60% 46%;
    clip-path: none;
}

#features > .container::after {
    top: 78%;
    left: 28%;
    width: 116px;
    height: 84px;
    border-radius: 61% 39% 41% 59% / 39% 58% 42% 61%;
    clip-path: none;
}

#use-cases::before {
    top: 12%;
    left: 74%;
    width: 326px;
    height: 236px;
    border-radius: 39% 61% 35% 65% / 62% 42% 58% 38%;
    transform: rotate(14deg);
    clip-path: none;
}

#use-cases::after {
    top: 60%;
    left: 6%;
    width: 236px;
    height: 174px;
    border-radius: 62% 38% 56% 44% / 41% 63% 37% 59%;
    transform: rotate(-13deg);
    clip-path: none;
}

#use-cases > .container::before {
    top: 44%;
    right: 44%;
    width: 142px;
    height: 106px;
    border-radius: 48% 52% 31% 69% / 68% 33% 67% 32%;
    clip-path: none;
}

#use-cases > .container::after {
    top: 82%;
    left: 68%;
    width: 110px;
    height: 80px;
    border-radius: 66% 34% 50% 50% / 39% 61% 39% 61%;
    clip-path: none;
}

#how-it-works::before {
    top: 8%;
    left: -2%;
    width: 310px;
    height: 225px;
    border-radius: 55% 45% 68% 32% / 36% 56% 44% 64%;
    transform: rotate(-16deg);
    clip-path: none;
}

#how-it-works::after {
    top: 64%;
    left: 74%;
    width: 220px;
    height: 166px;
    border-radius: 33% 67% 58% 42% / 57% 41% 59% 43%;
    transform: rotate(21deg);
    clip-path: none;
}

#how-it-works > .container::before {
    top: 38%;
    right: 20%;
    width: 138px;
    height: 104px;
    border-radius: 59% 41% 44% 56% / 64% 39% 61% 36%;
    clip-path: none;
}

#how-it-works > .container::after {
    top: 80%;
    left: 34%;
    width: 114px;
    height: 86px;
    border-radius: 37% 63% 60% 40% / 49% 55% 45% 51%;
    clip-path: none;
}

#pricing::before {
    top: 10%;
    left: 70%;
    width: 320px;
    height: 232px;
    border-radius: 68% 32% 54% 46% / 32% 66% 34% 68%;
    transform: rotate(10deg);
    clip-path: none;
}

#pricing::after {
    top: 62%;
    left: 8%;
    width: 232px;
    height: 176px;
    border-radius: 42% 58% 36% 64% / 62% 36% 64% 38%;
    transform: rotate(-15deg);
    clip-path: none;
}

#pricing > .container::before {
    top: 42%;
    right: 48%;
    width: 144px;
    height: 104px;
    border-radius: 50% 50% 69% 31% / 41% 66% 34% 59%;
    clip-path: none;
}

#pricing > .container::after {
    top: 84%;
    left: 70%;
    width: 110px;
    height: 78px;
    border-radius: 60% 40% 47% 53% / 54% 42% 58% 46%;
    clip-path: none;
}

/* Shape opacity map: each shape uses a different opacity */
#home::before { opacity: 0.33; }
#home::after { opacity: 0.24; }
#home > .container::before { opacity: 0.46; }
#home > .container::after { opacity: 0.38; }

#services::before { opacity: 0.31; }
#services::after { opacity: 0.44; }
#services > .container::before { opacity: 0.57; }
#services > .container::after { opacity: 0.36; }

#demo::before { opacity: 0.34; }
#demo::after { opacity: 0.48; }
#demo > .container::before { opacity: 0.41; }
#demo > .container::after { opacity: 0.29; }

#why-choose::before { opacity: 0.37; }
#why-choose::after { opacity: 0.52; }
#why-choose > .container::before { opacity: 0.43; }
#why-choose > .container::after { opacity: 0.30; }

#features::before { opacity: 0.40; }
#features::after { opacity: 0.35; }
#features > .container::before { opacity: 0.55; }
#features > .container::after { opacity: 0.32; }

#use-cases::before { opacity: 0.47; }
#use-cases::after { opacity: 0.39; }
#use-cases > .container::before { opacity: 0.53; }
#use-cases > .container::after { opacity: 0.28; }

#how-it-works::before { opacity: 0.42; }
#how-it-works::after { opacity: 0.34; }
#how-it-works > .container::before { opacity: 0.58; }
#how-it-works > .container::after { opacity: 0.31; }

#pricing::before { opacity: 0.45; }
#pricing::after { opacity: 0.33; }
#pricing > .container::before { opacity: 0.56; }
#pricing > .container::after { opacity: 0.27; }

#use-cases {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.use-cases-subtitle {
    max-width: 760px;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.use-case-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.use-case-card h3 {
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.use-case-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(79, 70, 229, 0.12));
}

.use-case-highlight {
    border-color: rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .use-cases-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .use-case-card {
        padding: 1.5rem;
    }

    .use-case-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

#why-choose {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.05), rgba(79, 70, 229, 0.02) 45%, #ffffff 100%);
}

.why-choose-subtitle {
    max-width: 760px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.why-choose-hero {
    border-radius: 18px;
    padding: 2rem;
    color: #ffffff;
    background: linear-gradient(145deg, var(--primary), var(--secondary));
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.22);
}

.why-choose-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
    text-transform: uppercase;
    color: var(--primary);
    background-color: #ffffff;
}

.why-choose-hero p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
}

.why-choose-hero-points li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.why-choose-hero-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.why-choose-tile {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.why-choose-tile h4 {
    color: var(--text-dark);
}

.why-choose-tile p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.why-choose-tile-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(79, 70, 229, 0.12));
}

@media (max-width: 992px) {
    .why-choose-hero {
        padding: 1.6rem;
    }
}

.features-subtitle {
    max-width: 760px;
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    padding: 1.45rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.feature-card h4 {
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0.9rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(79, 70, 229, 0.12));
}

.feature-card-highlight {
    border-color: rgba(37, 99, 235, 0.35);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, #ffffff 100%);
}

.feature-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.12);
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
}

#demo .card-custom,
#pricing .card-custom,
.feature-card-highlight,
.why-choose-tile:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52));
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .features-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

/* Website support chatbot */
.website-chatbot {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1080;
    width: 76px;
    font-family: 'Inter', sans-serif;
    transition: width 0.25s ease;
}

.website-chatbot--open {
    width: min(440px, calc(100vw - 1.5rem));
}

.website-chatbot--open .website-chatbot__launcher {
    display: none;
}

.website-chatbot__launcher {
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 24px;
    color: #ffffff;
    background: linear-gradient(150deg, #0d4fd4, #4f46e5);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.34rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.website-chatbot__launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 32px rgba(37, 99, 235, 0.4);
}

.website-chatbot__launcher-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.website-chatbot__launcher-icon svg {
    width: 19px;
    height: 19px;
    fill: #ffffff;
}

.website-chatbot__launcher-text {
    font-size: 0.71rem;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    font-weight: 700;
}

.website-chatbot__panel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(440px, calc(100vw - 1.5rem));
    height: min(760px, calc(100vh - 3rem));
    max-height: calc(100vh - 3rem);
    margin-top: 0;
    border: 1px solid #dce5f4;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.22);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    transform-origin: bottom right;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

@supports (height: 100dvh) {
    .website-chatbot__panel {
        height: min(760px, calc(100dvh - 3rem));
        max-height: calc(100dvh - 3rem);
    }
}

.website-chatbot__panel--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.website-chatbot__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1rem 0.88rem;
    border-bottom: 1px solid #e6edf7;
    background: linear-gradient(115deg, rgba(20, 92, 230, 0.12), rgba(79, 70, 229, 0.08) 58%, rgba(255, 255, 255, 0.95) 100%);
}

.website-chatbot__title {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 800;
    color: #0f172a;
}

.website-chatbot__subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.77rem;
    color: #5b6a7f;
}

.website-chatbot__close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #cfdaea;
    background: rgba(255, 255, 255, 0.95);
    color: #1b2a40;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.website-chatbot__close:hover {
    transform: rotate(90deg);
    border-color: #8fb2ef;
}

.website-chatbot__messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0.95rem 0.95rem 5rem;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.website-chatbot__messages::-webkit-scrollbar {
    width: 8px;
}

.website-chatbot__messages::-webkit-scrollbar-thumb {
    background: #c9d8ee;
    border-radius: 999px;
}

.website-chatbot__message {
    max-width: 88%;
    border-radius: 13px;
    padding: 0.62rem 0.76rem;
    font-size: 0.89rem;
    line-height: 1.45;
    border: 1px solid transparent;
    animation: chatbot-message-in 0.2s ease;
}

.website-chatbot__message h4,
.website-chatbot__message p,
.website-chatbot__message ul,
.website-chatbot__message ol {
    margin: 0;
}

.website-chatbot__message > * + * {
    margin-top: 0.48rem;
}

.website-chatbot__message h4 {
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 700;
}

.website-chatbot__message p {
    line-height: 1.5;
}

.website-chatbot__message ul {
    padding-left: 1rem;
}

.website-chatbot__message ol {
    padding-left: 1.2rem;
}

.website-chatbot__message li + li {
    margin-top: 0.2rem;
}

.website-chatbot__message strong {
    font-weight: 700;
}

@keyframes chatbot-message-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-chatbot__message--bot {
    align-self: flex-start;
    color: #132033;
    background: #ffffff;
    border-color: #d4e2f4;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.website-chatbot__message--user {
    align-self: flex-end;
    color: #ffffff;
    background: linear-gradient(140deg, #0f67ee, #4f46e5);
    box-shadow: 0 8px 16px rgba(20, 92, 230, 0.28);
}

.website-chatbot__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 4.4rem;
    z-index: 3;
    padding: 0.5rem;
    border: 1px solid #d9e5f4;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    transform: translateY(0);
}

.website-chatbot__suggestions--hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.website-chatbot__chip,
.website-chatbot__action {
    border: 1px solid #d6e0ec;
    border-radius: 999px;
    padding: 0.35rem 0.62rem;
    background: #f8fbff;
    color: #1d2a3b;
    text-decoration: none;
    font-size: 0.77rem;
    font-weight: 600;
}

.website-chatbot__chip:hover,
.website-chatbot__action:hover {
    border-color: #86aef3;
    color: #145ce6;
}

.website-chatbot__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.48rem;
    padding: 0.7rem 0.95rem 0.95rem;
    border-top: 1px solid #e8eef7;
    background: #fbfdff;
}

.website-chatbot__input {
    min-width: 0;
    border: 1px solid #c3d4ea;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.87rem;
    padding: 0.62rem 0.72rem;
}

.website-chatbot__input:focus {
    outline: 0;
    border-color: #3f7df0;
    box-shadow: 0 0 0 3px rgba(63, 125, 240, 0.16);
}

.website-chatbot__send {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(140deg, #145ce6, #4f46e5);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 0.92rem;
}

.website-chatbot__send:disabled {
    opacity: 0.78;
    cursor: not-allowed;
}

.website-chatbot__typing {
    align-self: flex-start;
    display: inline-flex;
    gap: 0.22rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid #dce6f3;
    border-radius: 12px;
    background: #ffffff;
}

.website-chatbot__typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7f98bc;
    animation: chatbot-typing 1s infinite ease-in-out;
}

.website-chatbot__typing span:nth-child(2) {
    animation-delay: 0.12s;
}

.website-chatbot__typing span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes chatbot-typing {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }
    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

.website-chatbot__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 576px) {
    .website-chatbot {
        right: 0.7rem;
        bottom: 1rem;
    }

    .website-chatbot--open {
        width: calc(100vw - 1.4rem);
    }

    .website-chatbot__panel {
        width: calc(100vw - 1.4rem);
        height: calc(100vh - 1.4rem);
        max-height: calc(100vh - 1.4rem);
    }

    @supports (height: 100dvh) {
        .website-chatbot__panel {
            height: calc(100dvh - 1.4rem);
            max-height: calc(100dvh - 1.4rem);
        }
    }

    .website-chatbot__suggestions {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 4.3rem;
    }
}

.website-chatbot__send:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(20, 92, 230, 0.24);
}