/* ===== Root Variables ===== */
:root {
    --primary: #1a4fa0;
    --primary-dark: #153e80;
    --primary-light: #eff6ff;
    --accent: #f97316;
    --accent-light: #fff7ed;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-section: #f1f5f9;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography Helpers ===== */
.text-accent {
    color: var(--primary);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #bfdbfe;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

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

.section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.section-header p {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(26, 79, 160, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(26, 79, 160, 0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    padding: 0;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo em {
    font-style: normal;
    color: var(--primary);
}

.logo--white {
    color: #fff;
}

.logo--white em {
    color: #93c5fd;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 7px 14px;
    border-radius: 6px;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(26, 79, 160, 0.2);
}

.btn-login:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(26, 79, 160, 0.3);
}

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

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f7ff 0%, #ffffff 50%, #fff8f3 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 79, 160, 0.07) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid #bfdbfe;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(26, 79, 160, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(26, 79, 160, 0);
    }
}

.hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-text h1 .text-accent {
    color: var(--primary);
    position: relative;
}

.hero-text p {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: fit-content;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.hero-meta-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===== Hero Slider ===== */
.hero-slider-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 9/16;
    max-width: 320px;
    margin: 0 auto;
    background: var(--bg-section);
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.slider-prev {
    left: -18px;
}

.slider-next {
    right: -18px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: var(--border-hover);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.slider-dot.active {
    width: 20px;
    background: var(--primary);
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    z-index: 5;
    pointer-events: none;
}

/* ===== Stats ===== */
.stats {
    padding: 64px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-info {
    line-height: 1;
}

.stat-number {
    display: inline;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 500;
}

/* ===== Features ===== */
.features {
    padding: 96px 0;
    background: var(--bg-soft);
}

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card--highlight {
    border-color: #bfdbfe;
    background: linear-gradient(160deg, #f0f7ff, #ffffff);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 18px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--bg-section);
}

.feature-list li:last-child {
    border: none;
}

.feature-list i {
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 96px 0;
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 16px;
    margin-top: 8px;
}

.step-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #bfdbfe;
    transform: translateY(-3px);
}

.step-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 16px;
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border: 2px solid #bfdbfe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--transition);
}

.step-card:hover .step-icon-wrap {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.step-connector::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #93c5fd);
    border-radius: 2px;
}

/* ===== About ===== */
.about {
    padding: 96px 0;
    background: var(--bg-soft);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: visible;
    box-shadow: var(--shadow-md);
}

.about-logo {
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(26, 79, 160, 0.15));
}

.about-img-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
    max-width: 220px;
}

@keyframes floatCard {

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

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

.about-img-card i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-img-card span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.about-img-card {
    bottom: -18px;
    left: -18px;
    animation-delay: 0s;
}

.about-img-card--right {
    bottom: auto;
    top: -18px;
    right: -18px;
    left: auto;
    animation-delay: -2s;
}

.about-text .section-tag {
    display: inline-block;
}

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-text>p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-list {
    margin-bottom: 36px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.about-list li:last-child {
    border: none;
}

.about-list>li>i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-list li strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.about-list li span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== Download Section ===== */
.download {
    padding: 96px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.download-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.download-text > p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--text-dark);
    min-width: 170px;
}

.store-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 79, 160, 0.3);
}

.store-btn i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.store-btn span {
    display: block;
    font-size: 0.68rem;
    opacity: 0.75;
    line-height: 1.2;
}

.store-btn strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.download-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.download-note i {
    color: var(--primary);
}

/* Download Visual */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.download-phone {
    width: 220px;
    aspect-ratio: 9/16;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 8px #fff, 0 0 0 10px var(--border);
    position: relative;
    z-index: 2;
}

.download-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.download-badge i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.download-badge-1 {
    top: 30px;
    left: 0;
    animation-delay: 0s;
}
.download-badge-1 i { color: #22c55e; }

.download-badge-2 {
    bottom: 30px;
    right: 0;
    animation-delay: -2s;
}
.download-badge-2 i { color: #64748b; }

.download-badge strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.download-badge span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .download-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .download-inner { grid-template-columns: 1fr; gap: 40px; }
    .download-visual { display: none; }
    .store-buttons { flex-direction: column; }
    .store-btn { justify-content: center; }
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.93rem;
}

.cta-action {
    text-align: center;
    flex-shrink: 0;
}

.cta-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-note i {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Footer ===== */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 72px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.87rem;
    color: #94a3b8;
    line-height: 1.75;
    margin: 16px 0 24px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #94a3b8;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-contact-list i {
    color: #60a5fa;
    width: 14px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.82rem;
}

/* ===== Reveal Animations ===== */
[data-reveal],
[data-reveal-right] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal-right] {
    transform: translateX(24px);
}

[data-reveal].revealed,
[data-reveal-right].revealed {
    opacity: 1;
    transform: translate(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

    .cta-note {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 2px;
        padding: 16px 20px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

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

    .nav-link {
        padding: 11px 14px;
        width: 100%;
        border-radius: 8px;
    }

    .btn-login {
        margin-left: 0;
        margin-top: 6px;
        justify-content: center;
    }

    .hero {
        padding: 96px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-meta {
        width: 100%;
        justify-content: space-between;
    }

    .hero-slider-wrap {
        padding-bottom: 36px;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-col {
        display: none;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-meta-divider {
        width: 40px;
        height: 1px;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}