:root {
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --accent: #06B6D4;
    --accent2: #10B981;
    --surface: #F8FAFF;
    --surface2: #EEF2FF;
    --text: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 50%, #ECFDF5 100%);
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8FAFF 100%);
    --shadow-sm: 0 1px 3px rgba(37, 99, 235, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(37, 99, 235, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 64px rgba(37, 99, 235, 0.18), 0 8px 24px rgba(0, 0, 0, 0.10);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ── UTILITY ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface2);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.tag i {
    font-size: 11px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: 56px;
}

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

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

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.btn-success {
    background: #22C55E;
    color: white;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.btn-success:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
}

.btn-lg {
    padding: 17px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-icon {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon img {
    height: 38px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.nav-logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links>li {
    position: relative;
    padding: 15px 0;
    /* Membuat area hover lebih besar secara vertikal */
}

.nav-links a {
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover,
.nav-dropdown:hover>.dropdown-trigger {
    color: var(--primary);
    background: var(--surface2);
}

/* MENYEMBUNYIKAN SUB-MENU SECARA DEFAULT */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style: none;
    opacity: 0;
    /* Tersembunyi */
    visibility: hidden;
    /* Tersembunyi */
    transition: all 0.3s ease;
    z-index: 1000;
}

/* MEMUNCULKAN SAAT HOVER */
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    /* Muncul */
    visibility: visible;
    /* Muncul */
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    padding: 12px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: 8px;
    gap: 10px;
}

.dropdown-menu a i {
    width: 24px;
    color: var(--primary);
}

.dropdown-menu a:hover {
    background: var(--surface);
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

#mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

#mobile-menu.open {
    display: block;
}

#mobile-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

#mobile-menu a:last-child {
    border-bottom: none;
}

/* ── HERO ── */
#hero {
    background: var(--gradient-hero);
    padding: 160px 0 96px;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.10) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

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

@keyframes pulse {

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

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
}

.hero-slider {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    margin: 20px 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    max-width: 520px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
    user-select: none;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(37, 99, 235, 0.1));
    border-radius: var(--radius-lg);
}

/* ACTIVE SLIDE */
.hero-slide.active {
    z-index: 10;
    transform: translateX(0) translateZ(0) scale(1.05);
    opacity: 1;
    filter: none !important;
}

.hero-slide.active img {
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.4)) brightness(1.05);
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {

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

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

/* PREV SLIDE */
.hero-slide.prev {
    z-index: 5;
    transform: translateX(-45%) translateZ(-300px) scale(0.8);
    opacity: 0.4;
    filter: blur(6px) grayscale(1);
}

/* NEXT SLIDE */
.hero-slide.next {
    z-index: 5;
    transform: translateX(45%) translateZ(-300px) scale(0.8);
    opacity: 0.4;
    filter: blur(6px) grayscale(1);
}

.hero-slide.hidden {
    opacity: 0;
    transform: translateX(0) translateZ(-400px) scale(0.5);
    pointer-events: none;
}

.hero-floating {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-1 {
    top: 40px;
    left: 20px;
    animation-delay: 0s;
}

.hero-floating-2 {
    bottom: 40px;
    right: 20px;
    animation-delay: 2s;
}

@keyframes float {

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

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

.float-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.float-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.float-icon {
    font-size: 20px;
}

/* ── LOGOS / TRUST BAR ── */
#trust {
    padding: 24px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-left-to-right 25s linear infinite;
}

.marquee-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
}

.mitra-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mitra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.mitra-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mitra-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── PROBLEM / SOLUTION ── */
#problem {
    background: var(--surface);
}

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

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.problem-icon.red {
    background: #FEF2F2;
    color: #EF4444;
}

.problem-icon.yellow {
    background: #FFFBEB;
    color: #F59E0B;
}

.problem-icon.orange {
    background: #FFF7ED;
    color: #F97316;
}

.problem-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.problem-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--surface2);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s;
}

.solution-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.solution-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.solution-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── FEATURES ── */
#features {
    background: white;
}

.features-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}

.feature-tab {
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid var(--border);
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.feature-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.feature-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-card-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.badge-new {
    background: #ECFDF5;
    color: #059669;
}

.badge-popular {
    background: #EFF6FF;
    color: #2563EB;
}

.feature-card-action {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    background: #EFF6FF;
    padding: 4px 10px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    #feature-hover-container {
        width: 85% !important;
    }

    #feature-hover-container.mobile-center {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

/* ── FEATURE HOVER CONTAINER ── */
#feature-hover-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
    will-change: transform, opacity;
    transform: translate(calc(var(--mouse-x, -500px) + 15px), calc(var(--mouse-y, -500px) + 15px)) scale(0.5);
    transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.1s linear;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: var(--primary);
}

#feature-hover-container.show {
    opacity: 1;
    transform: translate(calc(var(--mouse-x, -500px) + 15px), calc(var(--mouse-y, -500px) + 15px)) scale(1);
}

.feature-hover-img-elem {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feature-hover-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, rgba(37, 99, 235, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.feature-hover-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── USE CASES ── */
#usecases {
    background: var(--surface);
}

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

@media (max-width: 992px) {
    .usecases-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.usecases-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.usecases-image-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: var(--primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transition: background 0.5s ease;
}

@media (max-width: 768px) {
    .usecases-image-circle {
        width: 320px;
        height: 320px;
    }
}

.usecase-img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.usecase-img-layer.active {
    opacity: 1;
    transform: scale(1);
}

.usecases-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 520px;
}

.usecase-tab {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.usecase-tab.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.usecase-tab-header {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s ease;
}

.usecase-tab.active .usecase-tab-header {
    color: var(--primary);
}

.usecase-tab-header i {
    color: var(--text-muted);
    font-size: 20px;
    transition: color 0.3s ease;
    width: 24px;
    text-align: center;
}

.usecase-tab.active .usecase-tab-header i {
    color: var(--primary);
}

.usecase-tab-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s linear;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.usecase-tab.active .usecase-tab-content {
    height: 125px;
    opacity: 1;
    margin-top: 16px;
    padding-left: 40px;
}

@media (max-width: 768px) {
    .usecase-tab.active .usecase-tab-content {
        height: 160px;
    }
}

.usecase-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.usecase-btn:hover {
    background: var(--primary);
    color: white;
}

/* ── COMPARISON ── */
#comparison {
    background: white;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: white;
    border: 1px solid var(--border);
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: var(--surface);
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

.comparison-table {
    min-width: 900px;
    background: white;
    color: var(--text);
}

.comp-header {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 2fr;
    background: var(--surface);
    padding: 20px 24px;
    border-bottom: 2px solid var(--border);
}

.comp-header-item {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.comp-header-item.highlight {
    color: var(--primary);
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr 2fr;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    align-items: center;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: white;
    transform: scale(1.02);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    z-index: 2;
    position: relative;
    border-bottom-color: transparent;
}

.comp-feature {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.comp-cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-muted);
}

.comp-cell i {
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.comp-cell .yes {
    color: var(--primary);
}

.comp-cell .no {
    color: #EF4444;
}

.comp-cell .partial {
    color: #F59E0B;
}

.comp-cell.highlight-col {
    color: var(--text);
    font-weight: 600;
}

.comp-highlight {
    background: rgba(37, 99, 235, 0.04);
}

/* ── PRICING ── */
#pricing {
    background: var(--surface);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-toggle span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-toggle span.active {
    color: var(--text);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--primary);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.yearly::after {
    transform: translateX(24px);
}

.save-badge {
    background: var(--accent2);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    padding: 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.popular:hover {
    transform: translateY(-14px);
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-period {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features li i {
    color: var(--accent2);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--text-light);
}

.pricing-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

.pricing-addons {
    margin-top: 48px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px;
}

.addons-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.addon-item {
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.addon-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.addon-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: white;
}

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

.testimonial-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── SYSTEM WORKFLOW / BLUEPRINT ── */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.w-feat-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.w-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.w-feat-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text);
}
.w-feat-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.blueprint-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
    border: 1.5px solid var(--border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blueprint-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.2);
}
.blueprint-header {
    background: var(--surface);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid var(--border);
}
.bp-dots {
    display: flex;
    gap: 8px;
}
.bp-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.bp-dots span:nth-child(1) { background: #EF4444; }
.bp-dots span:nth-child(2) { background: #F59E0B; }
.bp-dots span:nth-child(3) { background: #10B981; }

.bp-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.blueprint-body {
    position: relative;
    padding: 0;
    background: #ffffff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blueprint-body img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.blueprint-card:hover .blueprint-body img {
    transform: scale(1.03);
}
.blueprint-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}
.blueprint-card:hover .blueprint-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── FAQ ── */
#faq {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-q-text {
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ── ABOUT / REPUTATION ── */
#about {
    background: var(--surface);
}

.stats-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .stats-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.stats-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    padding-right: 20px;
}

.stats-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stats-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-img-1 {
    height: 170px;
}

.stats-img-2 {
    height: 170px;
    width: 85%;
    margin-top: -30px;
}

.stats-img-3 {
    height: 170px;
    width: 85%;
    margin-left: auto;
    margin-top: 30px;
    display: block;
}

.stats-img-4 {
    height: 170px;
    margin-top: 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stats-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.stats-numbers {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

@media (max-width: 576px) {
    .stats-numbers {
        flex-direction: column;
        gap: 30px;
    }

    .stats-divider {
        display: none;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.stat-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-val {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.stats-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.security-banner {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: var(--radius-xl);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
    .security-banner {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
}

.security-banner::before,
.security-banner::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(20px);
    pointer-events: none;
}

.security-banner::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
}

.security-banner::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 20%;
}

.sec-banner-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.sec-banner-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.sec-banner-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.sec-banner-visual {
    position: relative;
    z-index: 1;
    background: white;
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-banner-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #0EA5E9;
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.sec-banner-visual img {
    height: 60px;
    object-fit: contain;
}

/* ── MID-PAGE CTA ── */
#mid-cta {
    padding: 48px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 57c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.cta-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 8px;
}

.cta-headline span {
    color: white;
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 48px 32px;
    }

    .cta-text {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── FINAL CTA ── */
#cta {
    background: var(--gradient-primary);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.cta-trust-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.wa-button {
    background: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
}

.wa-button:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

/* ── FOOTER ── */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

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

.footer-brand .nav-logo-text {
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social:hover {
    background: var(--primary);
    color: white;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

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

.footer-col ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    animation: wabounce 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes wabounce {

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

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

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .pricing-card.popular {
        transform: none;
    }

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

    .comparison-table {
        overflow-x: auto;
    }

    .comp-header,
    .comp-row {
        min-width: 580px;
    }

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

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

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

    .hero-stats {
        gap: 20px;
    }

    .roadmap-timeline {
        padding-left: 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .mockup-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .other-products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 64px 0;
    }
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.pd-hero {
    background: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 55%, #ECFDF5 100%);
    padding: 150px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pd-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 65%);
    top: -250px;
    right: -120px;
    pointer-events: none;
}

.pd-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 65%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.pd-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.pd-hero-product-img {
    width: 100%;
    max-width: 500px;
    margin: 48px auto 0;
    display: block;
    filter: drop-shadow(0 32px 48px rgba(37, 99, 235, 0.18));
    transition: transform 0.6s ease;
}

.pd-hero-product-img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* ══════════════════════════════════════════════════════════
   OTHERS PAGE — HERO, TIMELINE, STEPS, POLICIES, CTA
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.oth-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--surface2);
}
.oth-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 90%, rgba(37,99,235,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* ── TIMELINE ROADMAP ── */
.oth-timeline {
    position: relative;
    max-width: 720px;
    margin: 56px auto 0;
    padding-left: 40px;
}
.oth-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), rgba(139,92,246,0.3), transparent);
    border-radius: 100px;
}
.oth-tl-item {
    position: relative;
    margin-bottom: 40px;
}
.oth-tl-item:last-child {
    margin-bottom: 0;
}
.oth-tl-dot-wrap {
    position: absolute;
    left: -40px;
    top: 28px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.oth-tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}
.oth-tl-dot--active {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(37,99,235,0.15);
    animation: oth-pulse 2s infinite ease-in-out;
}
@keyframes oth-pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(37,99,235,0.15); }
    50% { box-shadow: 0 0 0 12px rgba(37,99,235,0.08); }
}
.oth-tl-dot--upcoming {
    background: white;
    border-color: rgba(37,99,235,0.35);
}
.oth-tl-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    position: relative;
    overflow: hidden;
}
.oth-tl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background: transparent;
    transition: background 0.3s ease;
}
.oth-tl-card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: 0 16px 40px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.2);
}
.oth-tl-card:hover::before {
    background: var(--primary);
}
.oth-tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.oth-tl-badge--blue { background: #EFF6FF; color: #2563EB; }
.oth-tl-badge--purple { background: #F5F3FF; color: #7C3AED; }
.oth-tl-badge--teal { background: #F0FDFA; color: #0D9488; }
.oth-tl-badge--orange { background: #FFF7ED; color: #EA580C; }
.oth-tl-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.oth-tl-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.oth-tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.oth-tl-tags span {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--surface2);
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.oth-tl-card:hover .oth-tl-tags span {
    background: #EFF6FF;
    color: var(--primary);
    border-color: rgba(37,99,235,0.15);
}

/* ── ONBOARDING STEPS ── */
.oth-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
    position: relative;
}
.oth-step-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.oth-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.2);
}
.oth-step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(37,99,235,0.04);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    transition: color 0.3s ease;
}
.oth-step-card:hover .oth-step-num {
    color: rgba(37,99,235,0.08);
}
.oth-step-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.oth-step-icon--blue { background: #EFF6FF; color: #2563EB; }
.oth-step-icon--purple { background: #F5F3FF; color: #7C3AED; }
.oth-step-icon--teal { background: #F0FDFA; color: #0D9488; }
.oth-step-icon--green { background: #F0FDF4; color: #16A34A; }
.oth-step-card:hover .oth-step-icon-wrap {
    transform: scale(1.12) rotate(5deg);
}
.oth-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.oth-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── PROCESS & POLICIES BLOCKS ── */
.oth-pp-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 40px;
    margin-top: 32px;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.oth-pp-block:first-of-type {
    margin-top: 56px;
}
.oth-pp-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37,99,235,0.08);
    border-color: rgba(37,99,235,0.15);
}
.oth-pp-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.oth-pp-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.oth-pp-icon--blue { background: #EFF6FF; color: #2563EB; }
.oth-pp-icon--purple { background: #F5F3FF; color: #7C3AED; }
.oth-pp-icon--teal { background: #F0FDFA; color: #0D9488; }
.oth-pp-icon--green { background: #F0FDF4; color: #16A34A; }
.oth-pp-block:hover .oth-pp-header-icon {
    transform: scale(1.1) rotate(5deg);
}
.oth-pp-header-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}
.oth-pp-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.oth-pp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--surface2);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.oth-pp-item:hover {
    background: #EFF6FF;
    border-color: rgba(37,99,235,0.1);
}
.oth-pp-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.oth-pp-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── POLICIES ── */
.oth-policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.oth-policy-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    position: relative;
    overflow: hidden;
}
.oth-policy-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.oth-policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.2);
}
.oth-policy-card:hover::after { opacity: 1; }
.oth-policy-card:nth-child(1)::after { background: radial-gradient(ellipse at top left, rgba(37,99,235,0.05), transparent 65%); }
.oth-policy-card:nth-child(2)::after { background: radial-gradient(ellipse at top left, rgba(16,185,129,0.05), transparent 65%); }
.oth-policy-card:nth-child(3)::after { background: radial-gradient(ellipse at top left, rgba(139,92,246,0.05), transparent 65%); }
.oth-policy-card:nth-child(4)::after { background: radial-gradient(ellipse at top left, rgba(249,115,22,0.05), transparent 65%); }
.oth-policy-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
.oth-policy-icon--blue { background: #EFF6FF; color: #2563EB; }
.oth-policy-icon--green { background: #F0FDF4; color: #16A34A; }
.oth-policy-icon--purple { background: #F5F3FF; color: #7C3AED; }
.oth-policy-icon--orange { background: #FFF7ED; color: #EA580C; }
.oth-policy-card:hover .oth-policy-icon {
    transform: scale(1.15) rotate(5deg);
}
.oth-policy-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.oth-policy-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── MINI CTA BANNER ── */
.oth-cta-banner {
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 40%, #3B82F6 100%);
    border-radius: 28px;
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.oth-cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}
.oth-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}
.oth-cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
.oth-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}
.oth-cta-actions .btn-primary {
    background: white;
    color: #1E40AF;
    border: none;
}
.oth-cta-actions .btn-primary:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.oth-cta-actions .btn-outline {
    border: 2px solid rgba(255,255,255,0.6) !important;
    color: white !important;
    background: rgba(255,255,255,0.1);
}
.oth-cta-actions .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* ── OTHERS RESPONSIVE ── */
@media (max-width: 1024px) {
    .oth-steps-grid,
    .oth-policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .oth-pp-items {
        grid-template-columns: 1fr;
    }
    .oth-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
}
@media (max-width: 768px) {
    .oth-hero { padding: 130px 0 60px; }
    .oth-steps-grid,
    .oth-policy-grid {
        grid-template-columns: 1fr;
    }
    .oth-pp-block {
        padding: 24px 20px;
    }
    .oth-pp-header-title {
        font-size: 17px;
    }
    .oth-timeline { padding-left: 32px; }
    .oth-timeline::before { left: 11px; }
    .oth-tl-dot-wrap { left: -32px; width: 24px; height: 24px; }
    .oth-tl-dot { width: 12px; height: 12px; }
    .oth-tl-card { padding: 24px; }
    .oth-cta-actions { flex-direction: column; width: 100%; }
}

/* ── COMPLIMENTARY / BENTO GRID ── */
.comp-section {
    background: var(--surface2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.comp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 10%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 56px;
}

.bento-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card.accent-blue::after {
    background: radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.06), transparent 65%);
}

.bento-card.accent-cyan::after {
    background: radial-gradient(ellipse at top left, rgba(6, 182, 212, 0.06), transparent 65%);
}

.bento-card.accent-green::after {
    background: radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.06), transparent 65%);
}

.bento-card.accent-purple::after {
    background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.06), transparent 65%);
}

.bento-card.accent-orange::after {
    background: radial-gradient(ellipse at top left, rgba(249, 115, 22, 0.06), transparent 65%);
}

.bento-card.accent-teal::after {
    background: radial-gradient(ellipse at top left, rgba(20, 184, 166, 0.06), transparent 65%);
}

/* Bento sizes for Compact 4-column layout */
.bento-c1 {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: row;
    align-items: center;
}

.bento-c2,
.bento-c3,
.bento-c4,
.bento-c5,
.bento-c6,
.bento-c7 {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: column;
}

/* Base icon styles for out-of-the-box bento */
.bento-icon-container {
    width: 100%;
    height: auto;
    flex: 1;
    min-height: 90px;
    margin-bottom: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    background: var(--surface2);
    border: 1px solid transparent;
}
.bento-icon-container i {
    font-size: 56px;
    transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275), filter 0.4s ease;
}

/* Horizontal Card Overrides (c1) */
.bento-c1 .bento-icon-container {
    width: 180px;
    height: 100%;
    flex: 0 0 180px;
    margin-bottom: 0;
    margin-right: 24px;
}
.bento-c1 .bento-icon-container i { font-size: 72px; }

.bento-c1 .bento-card-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Colors based on accents */
.bento-card.accent-blue .bento-icon-container { background: rgba(37,99,235,0.05); }
.bento-card.accent-blue .bento-icon-container i { color: #2563EB; filter: drop-shadow(0 10px 20px rgba(37,99,235,0.25)); }

.bento-card.accent-cyan .bento-icon-container { background: rgba(6,182,212,0.05); }
.bento-card.accent-cyan .bento-icon-container i { color: #06B6D4; filter: drop-shadow(0 10px 20px rgba(6,182,212,0.25)); }

.bento-card.accent-green .bento-icon-container { background: rgba(16,185,129,0.05); }
.bento-card.accent-green .bento-icon-container i { color: #10B981; filter: drop-shadow(0 10px 20px rgba(16,185,129,0.25)); }

.bento-card.accent-orange .bento-icon-container { background: rgba(249,115,22,0.05); }
.bento-card.accent-orange .bento-icon-container i { color: #F97316; filter: drop-shadow(0 10px 20px rgba(249,115,22,0.25)); }

.bento-card.accent-purple .bento-icon-container { background: rgba(139,92,246,0.05); }
.bento-card.accent-purple .bento-icon-container i { color: #8B5CF6; filter: drop-shadow(0 10px 20px rgba(139,92,246,0.25)); }

.bento-card.accent-teal .bento-icon-container { background: rgba(20,184,166,0.05); }
.bento-card.accent-teal .bento-icon-container i { color: #14B8A6; filter: drop-shadow(0 10px 20px rgba(20,184,166,0.25)); }

/* Hover Animations */
.bento-card:hover .bento-icon-container {
    transform: translateY(-6px);
}
.bento-card.accent-blue:hover .bento-icon-container { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.15); }
.bento-card.accent-cyan:hover .bento-icon-container { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.15); }
.bento-card.accent-green:hover .bento-icon-container { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.15); }
.bento-card.accent-orange:hover .bento-icon-container { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.15); }
.bento-card.accent-purple:hover .bento-icon-container { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.15); }
.bento-card.accent-teal:hover .bento-icon-container { background: rgba(20,184,166,0.1); border-color: rgba(20,184,166,0.15); }

.bento-card:hover .bento-icon-container i {
    transform: scale(1.15) rotate(5deg);
}

.bento-card-label {
    position: relative;
    z-index: 2;
}

.bento-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface2);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.bento-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bento-c1 .bento-card-title {
    font-size: 20px;
}

.bento-card-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

/* ── CUSTOMIZATION SECTION ── */
.custom-section {
    background: white;
    padding: 100px 0;
}

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

.custom-left .tag {
    margin-bottom: 20px;
}

.custom-left h2 {
    text-align: left;
    margin-bottom: 16px;
}

.custom-left>p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 36px;
}

.custom-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.custom-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.10);
    border-color: rgba(37, 99, 235, 0.3);
}

.custom-item-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.custom-item-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.custom-item-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Photo frame for customization */
.custom-photo-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, #EEF2FF, #E0F2FE);
    aspect-ratio: 16/9;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.custom-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.custom-photo-frame:hover img {
    transform: scale(1.04);
}

.custom-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94A3B8;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.custom-photo-placeholder i {
    font-size: 40px;
    color: #CBD5E1;
}

/* Floating badge on photo */
.custom-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 2;
}

.custom-badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.custom-badge-text {
    font-size: 12px;
}

.custom-badge-text strong {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 13px;
}

.custom-badge-text span {
    color: var(--text-muted);
}

/* ── PRICING (PRODUCT DETAIL PAGE) ── */
.pd-pricing-section {
    background: #F8FAFF;
    padding: 100px 0;
}

/* Product info card at top */
.pd-product-card {
    background: white;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 64px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pd-product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pd-product-img-side {
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.pd-product-img-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1), transparent 70%);
}

.pd-product-img-side img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.2));
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.pd-product-img-side:hover img {
    transform: translateY(-8px) scale(1.05);
}

.pd-product-info-side {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface2);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 18px;
    width: fit-content;
    transition: background 0.3s ease, color 0.3s ease;
}

.pd-product-category:hover {
    background: var(--primary);
    color: white;
}

.pd-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 10px;
}

.pd-product-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.pd-product-meta {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    margin-bottom: 28px;
}

.pd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pd-meta-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pd-meta-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.pd-rating-stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 2px;
}

.pd-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0FDF4;
    color: #16A34A;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.pd-stock-dot {
    width: 8px;
    height: 8px;
    background: #16A34A;
    border-radius: 50%;
    animation: pulse-green 1.8s ease infinite;
}

@keyframes pulse-green {

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

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

.pd-product-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pd-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    align-items: stretch;
}

.pd-price-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pd-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.pd-price-card.is-featured {
    background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 60%, #0891B2 100%);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.35);
}

.pd-price-card.is-featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 36px 72px rgba(37, 99, 235, 0.4);
}

.pd-price-best {
    display: inline-block;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: #065F46;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pd-price-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pd-price-card.is-featured .pd-price-tier {
    color: rgba(255, 255, 255, 0.65);
}

.pd-price-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pd-price-num span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
}

.pd-price-card.is-featured .pd-price-num {
    color: white;
}

.pd-price-card.is-featured .pd-price-num span {
    color: rgba(255, 255, 255, 0.65);
}

.pd-price-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 12px 0 24px;
    line-height: 1.6;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pd-price-card.is-featured .pd-price-desc {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pd-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.pd-feat-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
}

.pd-feat-list li i {
    font-size: 11px;
    color: #2563EB;
    margin-top: 4px;
    flex-shrink: 0;
}

.pd-price-card.is-featured .pd-feat-list li {
    color: rgba(255, 255, 255, 0.88);
}

.pd-price-card.is-featured .pd-feat-list li i {
    color: #7DD3FC;
}

.pd-price-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pd-price-btn-outline {
    border: 1.5px solid #2563EB;
    color: #2563EB;
    background: transparent;
}

.pd-price-btn-outline:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.pd-price-btn-white {
    background: white;
    color: #1E40AF;
    border: none;
}

.pd-price-btn-white:hover {
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

    .bento-c1 {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-c2,
    .bento-c3,
    .bento-c4,
    .bento-c5,
    .bento-c6,
    .bento-c7 {
        grid-column: span 1;
    }

    .pd-pricing-grid {
        grid-template-columns: 1fr;
    }

    .pd-price-card.is-featured {
        transform: scale(1);
    }

    .pd-price-card.is-featured:hover {
        transform: translateY(-8px);
    }

    .pd-product-card {
        grid-template-columns: 1fr;
    }

    .pd-product-img-side {
        padding: 40px;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .custom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-c1,
    .bento-c2,
    .bento-c3,
    .bento-c4,
    .bento-c5,
    .bento-c6,
    .bento-c7 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-c1 {
        flex-direction: column;
    }

    .bento-c1 .bento-icon-container {
        width: 100%;
        flex: 1;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .pd-hero {
        padding: 120px 0 60px;
    }
}