:root {
    --orange: #ff6818;
    --orange-dim: #cc5210;
    --orange-glow: rgba(255,104,24,0.18);
    --dark: #0d0d14;
    --dark-2: #13131f;
    --dark-3: #1c1c2e;
    --surface: #ffffff;
    --surface-2: #f7f8fc;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 56px rgba(0,0,0,0.16);
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

.home-wrap { font-family: 'Outfit', sans-serif; overflow-x: hidden; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.animate-in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.animate-in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.animate-in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.animate-in { opacity: 1; transform: scale(1); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }


/* ── HERO ─────────────────────────────────────────── */
.hero {
    background:
        linear-gradient(to right, rgba(10,6,2,0.82) 0%, rgba(10,6,2,0.65) 55%, rgba(10,6,2,0.3) 100%),
        url('../v2/images/upload_img/pslider_20200821215240_banner-2-1.jpg') center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-grid { display: none; }
.hero-bg-glow { display: none; }
.hero-bg-glow-2 { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,104,24,0.12);
    border: 1px solid rgba(255,104,24,0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h1 .accent {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255,104,24,0.4);
    white-space: nowrap;
}

.btn-primary-hero:hover {
    background: #e85c10;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,104,24,0.5);
    color: #fff;
    text-decoration: none;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 15px 28px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-secondary-hero:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
}




/* ── SECTION COMMONS ──────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

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

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.section-sub-white { color: rgba(255,255,255,0.6); }

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

.section-pad { padding: 96px 0; }
.section-pad-lg { padding: 120px 0; }


/* ── HOW IT WORKS ─────────────────────────────────── */
.how-section { background: var(--surface); }

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

.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
}

.how-connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(255,104,24,0.3));
    border-radius: 1px;
}

.how-step {
    text-align: center;
    padding: 0 16px;
}

.how-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(255,104,24,0.35);
    position: relative;
}

.how-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(255,104,24,0.3);
}

.how-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,104,24,0.1), rgba(255,104,24,0.05));
    border: 1.5px solid rgba(255,104,24,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}

.how-step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.how-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ── FEATURES ─────────────────────────────────────── */
.features-section { background: var(--surface-2); }

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

.feature-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255,104,24,0.25);
    box-shadow: 0 8px 32px rgba(255,104,24,0.1);
    transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255,104,24,0.12), rgba(255,104,24,0.05));
    border: 1px solid rgba(255,104,24,0.15);
}

.feature-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

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


/* ── PRICING ──────────────────────────────────────── */
.pricing-section {
    background: linear-gradient(160deg, #0d0d14 0%, #1a0a00 50%, #0d0d14 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,104,24,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,104,24,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.pricing-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,104,24,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pricing-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,104,24,0.15);
    border: 1px solid rgba(255,104,24,0.3);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffb380;
    margin-bottom: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
}

.pricing-card-featured {
    background: rgba(255,104,24,0.1);
    border: 2px solid var(--orange);
    transform: scale(1.04);
    box-shadow: 0 0 0 1px rgba(255,104,24,0.2), 0 24px 64px rgba(255,104,24,0.25);
}

.pricing-card-featured:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 1px rgba(255,104,24,0.3), 0 28px 72px rgba(255,104,24,0.35);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255,104,24,0.5);
}

.pricing-plan-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.pricing-plan-label-featured { color: var(--orange); }

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.pricing-price sup {
    font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    letter-spacing: 0;
}

.pricing-period {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}

.pricing-period-sub {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 28px;
    min-height: 18px;
}

.pricing-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.pricing-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(255,104,24,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--orange);
    font-weight: 800;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.pricing-cta-default {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.12);
}

.pricing-cta-default:hover {
    background: rgba(255,255,255,0.13);
    color: #fff;
    text-decoration: none;
}

.pricing-cta-featured {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,104,24,0.45);
}

.pricing-cta-featured:hover {
    background: #e85c10;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(255,104,24,0.55);
    transform: translateY(-1px);
}

.pricing-cta-dark {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.15);
}

.pricing-cta-dark:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
    text-decoration: none;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}

.pricing-footer-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.pricing-footer-note a:hover { text-decoration: underline; }


/* ── REFERENCES ───────────────────────────────────── */
.references-section { background: var(--surface); }

.refs-carousel-wrap { margin-top: 48px; }

.ref-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 16px 24px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.ref-logo-item:hover { filter: grayscale(0); opacity: 1; }
.ref-logo-item img { max-height: 70px; max-width: 100%; object-fit: contain; }


/* ── BLOG ─────────────────────────────────────────── */
.blog-section { background: var(--surface-2); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.blog-card-home {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card-home:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,104,24,0.2);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f5, #e8e8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #c0c0cc;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-card-link:hover {
    color: var(--orange-dim);
    text-decoration: none;
    gap: 10px;
}

.blog-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 16px;
}


/* ── BOTTOM CTA ───────────────────────────────────── */
.cta-bottom {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bottom::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,104,24,0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-bottom-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.cta-bottom-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-bottom-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-cta-bottom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 18px 36px;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 12px 40px rgba(255,104,24,0.4);
    position: relative;
    z-index: 1;
}

.btn-cta-bottom:hover {
    background: #e85c10;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(255,104,24,0.55);
    color: #fff;
    text-decoration: none;
}


/* ── FLOATING WHATSAPP ────────────────────────────── */
.home-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37,211,102,0.55);
    color: #fff;
    text-decoration: none;
}


/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 991px) {
    .hero { padding: 100px 0 60px; }
    .how-steps { grid-template-columns: 1fr; gap: 32px; }
    .how-connector { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card-featured { transform: scale(1); }
    .pricing-card-featured:hover { transform: scale(1.02); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .section-pad { padding: 64px 0; }
    .section-pad-lg { padding: 80px 0; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-ctas { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}
