:root {
    --blue: #1a6fb0;
    --blue-dark: #0e4d80;
    --blue-light: #3a8fd4;
    --blue-pale: #e8f3fc;
    --green: #2eaa6e;
    --green-dark: #1e7d50;
    --green-light: #4ec98a;
    --green-pale: #e6f8f0;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f0f4f8;
    --gray-200: #e2eaf3;
    --gray-400: #8fa3bc;
    --gray-600: #4a6580;
    --gray-800: #1e3048;
    --shadow-sm: 0 2px 8px rgba(26, 111, 176, 0.08);
    --shadow-md: 0 6px 24px rgba(26, 111, 176, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 111, 176, 0.16);
    --radius: 12px;
    --radius-lg: 20px;
}






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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 2.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-cta {
    background: var(--blue) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 0.5rem 1.3rem !important;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 1rem;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    display: block;
}

.mobile-menu a:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

/* HERO */
#home {
    min-height: 100vh;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--blue-pale) 0%, #ffffff 50%, var(--green-pale) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-circle.c1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    top: -200px;
    right: -150px;
}

.hero-bg-circle.c2 {
    width: 400px;
    height: 400px;
    background: var(--green);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(26, 111, 176, 0.2);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.6;
        transform: scale(1.4)
    }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-800);
    margin-bottom: 1.2rem;
}

.hero h1 span {
    color: var(--blue);
}

.hero h1 em {
    color: var(--green);
    font-style: normal;
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(26, 111, 176, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 111, 176, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--blue);
    text-decoration: none;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    border: 2px solid var(--blue);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    background: var(--blue-pale);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--green) !important;
    box-shadow: 0 4px 16px rgba(46, 170, 110, 0.3) !important;
    color: white !important;
}

.btn-green:hover {
    background: var(--green-dark) !important;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Sora', sans-serif;
}

.hero-stat small {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-wrap {
    position: relative;
}

.hero-main-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    width: 320px;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero-main-card img {
    width: 150px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.hero-main-card h3 {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hero-main-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.floating-chip {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: chipFloat 4s ease-in-out infinite;
}

.floating-chip .fchip-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.chip1 {
    top: -24px;
    left: -70px;
    animation-delay: 0.5s;
}

.chip2 {
    bottom: 20px;
    right: -60px;
    animation-delay: 1.5s;
}

.chip3 {
    top: 50%;
    left: -90px;
    animation-delay: 1s;
}

@keyframes chipFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

/* SECTIONS */
section {
    scroll-margin-top: 72px;
}

.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-tag {
    display: inline-block;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-tag.green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--blue);
}

.section-title em {
    color: var(--green);
    font-style: normal;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    margin: 1rem 0;
}

.divider.center {
    margin: 1rem auto;
}

/* HIGHLIGHTS */
.highlights {
    background: var(--gray-50);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.highlight-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.hl-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}

.hl-icon.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.hl-icon.green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.highlight-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ABOUT */
#about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-box {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-main-box::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-main-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.about-main-box p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.7;
}

.about-badge-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.about-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-green-card {
    background: var(--green-pale);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(46, 170, 110, 0.2);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.agc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.1rem;
}

.about-green-card h4 {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.about-green-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.25s;
}

.value-item:hover {
    border-color: var(--blue);
    background: var(--blue-pale);
}

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vi-blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.vi-green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* PRODUCTS */
#products {
    background: var(--gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img i {
    font-size: 2.4rem;
}

.product-img.blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.product-img.green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.product-img.teal {
    background: #e0f4f4;
    color: #0f766e;
}

.product-img.indigo {
    background: #eeeffe;
    color: #4338ca;
}

.product-img.coral {
    background: #fff0ec;
    color: #c2410c;
}

.product-img.purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.product-body {
    padding: 1.2rem;
}

.product-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}

.product-body p {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 0.7rem;
}

.pt-blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.pt-green {
    background: var(--green-pale);
    color: var(--green-dark);
}

/* SERVICES */
#services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-num {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-200);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.si-blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.si-green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card ul li {
    font-size: 0.82rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card ul li i {
    color: var(--green);
    font-size: 0.5rem;
}

/* WHY CHOOSE US */
#why {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1e8a6e 100%);
    color: white;
}

#why .section-title {
    color: white;
}

#why .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

#why .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

#why .divider {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), var(--green-light));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.wc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.1rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
    color: var(--green-light);
}

/* APP DOWNLOAD */
#app-download {
    background: var(--gray-50);
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.app-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.app-feature-icon.green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.app-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 2px;
}

.app-feature p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.app-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-800);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    border-radius: var(--radius);
    transition: all 0.25s;
    min-width: 180px;
    border: 2px solid transparent;
}

.store-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn.outline {
    background: white;
    color: var(--gray-800);
    border-color: var(--gray-200);
}

.store-btn.outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 1.9rem;
}

.store-btn-text small {
    display: block;
    font-size: 0.68rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.store-btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.app-visual {
    display: flex;
    justify-content: center;
}

.app-phone-mockup {
    width: 255px;
    background: white;
    border-radius: 36px;
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--gray-800);
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
}

.phone-notch {
    width: 80px;
    height: 20px;
    background: var(--gray-800);
    border-radius: 12px;
    margin: 0 auto 1.2rem;
}

.phone-screen {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1rem;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--gray-200);
}

.phone-logo-sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 0.8rem;
}

.phone-header-txt strong {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-800);
    font-weight: 700;
}

.phone-header-txt span {
    font-size: 0.6rem;
    color: var(--gray-400);
}

.phone-card {
    background: white;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pci-blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.pci-green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.phone-card strong {
    display: block;
    font-size: 0.62rem;
    color: var(--gray-800);
    font-weight: 700;
}

.phone-card span {
    font-size: 0.57rem;
    color: var(--gray-400);
}

.phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 0.52rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: auto;
    white-space: nowrap;
}

.phone-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding-top: 0.8rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.5rem;
}

.phone-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.52rem;
    color: var(--gray-400);
}

.phone-nav-icon i {
    font-size: 0.85rem;
}

.phone-nav-icon.active {
    color: var(--blue);
}

.app-float-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
}

.fb1 {
    bottom: 50px;
    right: -60px;
    animation: chipFloat 4s ease-in-out infinite;
}

.fb2 {
    top: 70px;
    left: -60px;
    animation: chipFloat 4s ease-in-out 1s infinite;
}

.fb-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* CONTACT */
#contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
    background: white;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ci-blue {
    background: var(--blue-pale);
    color: var(--blue);
}

.ci-green {
    background: var(--green-pale);
    color: var(--green-dark);
}

.ci-orange {
    background: #fff3e0;
    color: #e65100;
}

.ci-purple {
    background: #f3e8ff;
    color: #7e22ce;
}

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.2rem;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-card a {
    font-size: 0.9rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: var(--gray-800);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    /* grid-template-columns: 3fr 1fr 2fr; */
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.app-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.app-dot.active {
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
}

.footer-logo img {
    height: 100px;
    width: auto;
    background: white;
    padding: 10px;
    border-radius: 6px;

    object-fit: contain;
    margin-bottom: 0.8rem;
}

.footer-brand .tagline {
    font-size: 0.75rem;
    color: var(--green-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a i {
    font-size: 0.55rem;
    color: var(--green-light);
}

.footer-col ul li a:hover {
    color: var(--green-light);
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--green);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.82rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--green-dark);
}

.footer-app-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    font-size: 0.8rem;
}

.footer-store-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-store-btn i {
    font-size: 1.3rem;
}

.footer-store-btn small {
    display: block;
    font-size: 0.58rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-store-btn strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-cert-badges {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual {
        display: none;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .app-btns {
        flex-direction: column;
    }
}


/* Hero Section upgrades */
#home {
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(26, 86, 219, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(22, 163, 74, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

#home::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.hero-main-card::after {
    content: '✓ Certified Distributor';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px dashed rgba(26, 86, 219, 0.12);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring.r1 {
    width: 280px;
    height: 280px;
}

.orbit-ring.r2 {
    width: 360px;
    height: 360px;
    border-color: rgba(22, 163, 74, 0.1);
}

.dot-accent {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.5;
}

.da1 {
    top: 80px;
    right: 40px;
}

.da2 {
    bottom: 70px;
    right: 60px;
    background: var(--green);
}

.da3 {
    top: 160px;
    left: 10px;
    width: 5px;
    height: 5px;
}

.fchip-sub {
    font-size: 0.68rem;
    color: var(--gray-400);
    font-weight: 400;
    margin-top: 1px;
}