@font-face {
    font-family: 'Open Runde';
    src:
        url('/fonts/OpenRunde-Regular-BF64ee9c6978988.woff') format('woff'),
        url('/fonts/OpenRunde-Regular-BF64ee9c627e5b6.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    src:
        url('/fonts/OpenRunde-Medium-BF64ee9c695513a.woff') format('woff'),
        url('/fonts/OpenRunde-Medium-BF64ee9c62ad3ad.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    src:
        url('/fonts/OpenRunde-Semibold-BF64ee9c697887b.woff') format('woff'),
        url('/fonts/OpenRunde-Semibold-BF64ee9c62e90a5.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Runde';
    src:
        url('/fonts/OpenRunde-Bold-BF64ee9c696534f.woff') format('woff'),
        url('/fonts/OpenRunde-Bold-BF64ee9c62a2035.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Khusus untuk Landing Page Baru */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #3a86ff;
    --accent-color: #00b4d8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #38b000;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)),
    url("{{ asset('images/hero2.png') }}") center / cover no-repeat;
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path d="M500,250Q400,450,300,250Q200,50,500,50Q800,50,700,250Q600,450,500,250Z"/></svg>'); */
    background-size: 300px;
}

.hero-headline {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #caf0f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
    color: white;
}

.btn-secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-cta:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.value-prop-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.value-prop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.value-prop-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.value-prop-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.value-prop-desc {
    color: #6c757d;
    line-height: 1.6;
}

.pain-point-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
}

.pain-point-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    border-left: 5px solid #dc3545;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solution-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--success-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #90e0ef);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.how-it-works-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.how-it-works-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60%;
    right: -40%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: 1;
}

.how-it-works-step:last-child::before {
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><circle cx="500" cy="500" r="200"/><circle cx="300" cy="300" r="150"/><circle cx="700" cy="700" r="150"/></svg>');
    background-size: 400px;
}

.final-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #caf0f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-btn {
    background: linear-gradient(45deg, #00b4d8, #0077b6);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.final-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.4);
    color: white;
}

.final-cta-btn i {
    transition: transform 0.3s ease;
}

.final-cta-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes float {

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

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

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .final-headline {
        font-size: 2.2rem;
    }

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

    .how-it-works-step::before {
        display: none;
    }

    .client-logos {
        gap: 2rem;
    }

    .client-logo {
        height: 40px;
    }
}

/* Custom Bullet Points */
.custom-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
}

.pain-point-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 80px 0;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-card p {
    margin: 0;
    color: #6c757d;
    font-size: .95rem;
}

/* Pain */
.info-card.pain::before {
    background: #dc3545;
}

.info-card.pain:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, .2);
}

/* Solution */
.info-card.solution::before {
    background: #198754;
}

.info-card.solution:hover {
    transform: translateX(-6px);
    box-shadow: 0 15px 40px rgba(25, 135, 84, .2);
}

#section-pricing {
    background: #ffffff;
}

.pricing-box {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    transition: border .25s ease, box-shadow .25s ease;
}

.pricing-box:hover {
    border-color: #2c5aa0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.pricing-title h3 {
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 28px;
}

.pricing-price .amount {
    font-size: 40px;
    font-weight: 700;
    color: #2c5aa0;
}

.pricing-price .period {
    font-size: 14px;
    color: #6c757d;
}

.pricing-features ul {
    padding-left: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    list-style: none;
    padding: 8px 0;
    font-size: 15px;
    color: #343a40;
}

.pricing-features li::before {
    color: #2c5aa0;
    font-weight: 600;
    margin-right: 10px;
}

.pricing-action .btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

.pricing-box.recommended {
    border-color: #2c5aa0;
}

.pricing-old-price {
    font-size: 15px;
    color: #adb5bd;
    text-decoration: line-through;
    margin-bottom: 6px;
}

.pricing-price .amount {
    font-size: 40px;
    font-weight: 700;
    color: #2c5aa0;
    line-height: 1.2;
}

.hero-device-wrap {
    position: relative;
    display: inline-block;
    animation: floatUpDown 6s ease-in-out infinite;
}

/* Soft glow belakang device */
.hero-device-wrap::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .35),
            rgba(255, 255, 255, .15),
            transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

/* Device image */
.hero-device {
    position: relative;
    z-index: 1;
    max-height: 520px;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
}

/* Floating animation */
@keyframes floatUpDown {

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

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

/* Mobile */
@media(max-width: 768px) {
    .hero-device {
        max-height: 420px;
    }
}

/* =========================================================
          HERO WRAPPER & LAYERING (PENTING)
        ========================================================= */
#home {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.hero-animated-bg {
    position: relative;
    z-index: 1;
    background: linear-gradient(120deg,
            #1e3a8a,
            #2563eb,
            #38bdf8,
            #1e3a8a);
    background-size: 300% 300%;
    animation: gradientMove 18s ease infinite;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =========================================================
          HERO BACKGROUND ICONS (FIX MUNCUL)
        ========================================================= */
.hero-bg-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.bg-icon {
    position: absolute;
    opacity: 0.14;
    animation: floatY 18s ease-in-out infinite;
    will-change: transform;
    filter: blur(0.3px);
}

/* KIRI ATAS – kecil, subtle */
.icon-1 {
    top: 14%;
    left: 6%;
    width: 90px;
    animation-delay: 0s;
}

/* KIRI BAWAH */
.icon-2 {
    top: 68%;
    left: 10%;
    width: 70px;
    animation-delay: 3s;
}

/* KANAN ATAS – anchor visual */
.icon-3 {
    top: 16%;
    right: 8%;
    width: 110px;
    animation-delay: 1.5s;
    transform: rotate(-8deg);
}

/* KANAN BAWAH */
.icon-4 {
    top: 62%;
    right: 12%;
    width: 85px;
    animation-delay: 4s;
}

/* TENGAH – PALING HALUS */
.icon-5 {
    top: 42%;
    left: 48%;
    width: 120px;
    opacity: 0.08;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes floatY {

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

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

@media (max-width: 768px) {
    .bg-icon {
        width: 55px !important;
        opacity: 0.06;
    }

    .icon-5 {
        display: none;
        /* tengah di-hide di mobile */
    }
}

/* =========================================================
          HERO CONTENT (TEXT & CTA)
        ========================================================= */
#home>.container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Open Runde', system-ui, sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    color: #fff;
}

.hero-content p {
    font-family: 'Open Runde', system-ui, sans-serif;
    font-weight: 400;
    color: #ffffff;
}

/* Typing cursor */
#typing-text::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* =========================================================
          HERO IMAGE (3D TILT)
        ========================================================= */
.hero-tilt-img {
    transform:
        perspective(1400px) rotateX(14deg) translateY(30px) scale(1.05);
    transform-origin: center bottom;
    will-change: transform;
    box-shadow: 0 60px 120px rgba(0, 0, 0, .35);
}

/* =========================================================
          OPTIONAL: SOFT OVERLAY (READABILITY)
        ========================================================= */
.hero-animated-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.05));
    z-index: 1;
}

#home h1>span,
#home h1>span:not(.nocolor):not(.badge) {
    color: #ffffff !important;
}

/* =====================================================
        SCROLL ANIMATION – PAIN vs SOLUTION
      ===================================================== */
.scroll-section {
    overflow: hidden;
}

/* Initial state */
.animate-left,
.animate-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

/* Cards */
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Active state */
.scroll-section.is-visible .animate-left,
.scroll-section.is-visible .animate-right {
    opacity: 1;
    transform: translateX(0);
}

.scroll-section.is-visible .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect */
.scroll-section.is-visible .animate-item:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-section.is-visible .animate-item:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-section.is-visible .animate-item:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-section.is-visible .animate-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* =====================================================
        FEATURES SCROLL SLIDER ANIMATION
      ===================================================== */

.features-section .feature-col {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.22, .61, .36, 1);
}

.features-section .feature-left {
    transform: translateX(-80px);
}

.features-section .feature-right {
    transform: translateX(80px);
}

.feature-item {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.6s ease;
}

/* active */
.features-section.is-visible .feature-col {
    opacity: 1;
    transform: translateX(0);
}

.features-section.is-visible .feature-item {
    opacity: 1;
    transform: translateY(0);
}

/* stagger effect */
.features-section.is-visible .feature-item:nth-child(1) {
    transition-delay: .1s;
}

.features-section.is-visible .feature-item:nth-child(2) {
    transition-delay: .2s;
}

.features-section.is-visible .feature-item:nth-child(3) {
    transition-delay: .3s;
}

.features-section.is-visible .feature-item:nth-child(4) {
    transition-delay: .4s;
}

.features-section.is-visible .feature-item:nth-child(5) {
    transition-delay: .5s;
}

/* mobile adjustment */
@media (max-width: 768px) {

    .features-section .feature-left,
    .features-section .feature-right {
        transform: translateY(40px);
    }
}