/* ============================================================ */
/* RESET & BASE                                                */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0C7A5F;
    --primary-light: #D6F0E6;
    --primary-dark: #075C46;
    --secondary: #0F2B3D;
    --accent: #F0B429;
    --bg-white: #FFFFFF;
    --bg-alt: #F6F9F8;
    --text-primary: #0B1B23;
    --text-secondary: #52636B;
    --text-light: #94A3B8;
    --border: #E7ECEA;
    --success: #10B981;
    --danger: #EF4444;
    --shadow: 0 2px 10px rgba(15, 43, 61, 0.05);
    --shadow-hover: 0 20px 50px -12px rgba(12, 122, 95, 0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ============================================================ */
/* SCROLL PROGRESS                                             */
/* ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1000;
    transition: width 0.1s;
}

/* ============================================================ */
/* NAVBAR - ANATOMY #1                                         */
/* ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 21px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(12,122,95,0.25);
}

.logo-text {
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-login {
    font-weight: 600 !important;
    color: var(--primary) !important;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(12,122,95,0.2);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 124, 102, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================ */
/* HERO - ANATOMY #2                                           */
/* ============================================================ */
.hero {
    padding: 140px 0 90px;
    background:
        radial-gradient(650px circle at 85% 0%, rgba(12,122,95,0.10), transparent 60%),
        radial-gradient(500px circle at 0% 100%, rgba(240,180,41,0.08), transparent 55%),
        linear-gradient(180deg, #F4FAF8 0%, #FFFFFF 65%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--primary-dark);
    padding: 7px 16px 7px 12px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid var(--primary-light);
    box-shadow: 0 2px 8px rgba(12,122,95,0.08);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-light);
    border-radius: 4px;
    z-index: -1;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.8;
}

.hero-desc strong {
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(12,122,95,0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(12,122,95,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Image / Illustration */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 0;
}

.blob-1 {
    width: 320px;
    height: 320px;
    top: -20px;
    right: -40px;
    background: radial-gradient(circle at 30% 30%, rgba(12,122,95,0.14), rgba(12,122,95,0) 70%);
}

.blob-2 {
    width: 260px;
    height: 260px;
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle at 70% 70%, rgba(240,180,41,0.14), rgba(240,180,41,0) 70%);
}

.dot-grid {
    position: absolute;
    top: 10%;
    right: -6%;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(var(--border) 1.6px, transparent 1.6px);
    background-size: 12px 12px;
    opacity: 0.8;
    z-index: 0;
}

.mockup-card {
    width: 100%;
    max-width: 340px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 24px 60px -12px rgba(15, 43, 61, 0.18);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mockup-header-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-header-text {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    flex: 1;
}

.mockup-header-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: rgba(16,185,129,0.12);
    padding: 3px 10px;
    border-radius: 20px;
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    background: var(--bg-alt);
    border-radius: 10px;
    animation: pulseRow 2.4s infinite;
}

.mockup-row:nth-child(2) { animation-delay: 0.3s; }
.mockup-row:nth-child(3) { animation-delay: 0.6s; }
.mockup-row:nth-child(4) { animation-delay: 0.9s; }

@keyframes pulseRow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.mockup-row-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-row-icon.icon-money { background: rgba(12,122,95,0.12); color: var(--primary); }
.mockup-row-icon.icon-check { background: rgba(16,185,129,0.14); color: var(--success); }
.mockup-row-icon.icon-wallet { background: rgba(240,180,41,0.16); color: #B7791F; }
.mockup-row-icon.icon-report { background: rgba(15,43,61,0.08); color: var(--secondary); }

.mockup-row-text {
    font-size: 13px;
    color: var(--text-secondary);
    flex: 1;
}

.mockup-row-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 12px 30px -8px rgba(15, 43, 61, 0.15);
    z-index: 3;
    animation: floatChip 3.5s ease-in-out infinite;
}

.chip-notif {
    top: 4%;
    left: -8%;
    color: var(--accent);
    animation-delay: 0s;
}

.chip-notif svg { color: #B7791F; }

.chip-paid {
    bottom: 8%;
    right: -6%;
    animation-delay: 0.6s;
}

.chip-paid svg { color: var(--success); }

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ============================================================ */
/* SECTION HEADER                                              */
/* ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================ */
/* VALUE PROPOSITION - ANATOMY #3                              */
/* ============================================================ */
.value-props {
    padding: 80px 0;
    background: var(--bg-white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prop-card {
    padding: 32px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.prop-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.prop-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.prop-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================ */
/* HOW IT WORKS - ANATOMY #4                                   */
/* ============================================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 12px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 14px;
    border-radius: 12px;
}

.step-arrow {
    font-size: 28px;
    color: var(--text-light);
    font-weight: 300;
}

.steps-cta {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================ */
/* FEATURES - ANATOMY #5                                       */
/* ============================================================ */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================ */
/* RISK REVERSAL - GARANSI                                     */
/* ============================================================ */
.risk-reversal {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.risk-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
}

.risk-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.risk-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.risk-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.risk-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* ============================================================ */
/* PRICING - ANATOMY #6                                        */
/* ============================================================ */
.pricing {
    padding: 80px 0;
    background: var(--bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border-color: var(--accent);
    position: relative;
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-period {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li .check {
    color: var(--success);
    font-weight: 700;
}

.pricing-features li .cross {
    color: var(--danger);
    font-weight: 700;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
}

.pricing-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-btn.outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-btn.outline:hover {
    background: var(--primary);
    color: white;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================================ */
/* TESTIMONIALS - ANATOMY #7                                   */
/* ============================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 28px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    font-size: 48px;
    margin-bottom: 12px;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.testimonial-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================================ */
/* TRUST BADGES - ANATOMY #8                                   */
/* ============================================================ */
.trust-badges {
    padding: 40px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================ */
/* STATISTICS - ANATOMY #9                                     */
/* ============================================================ */
.statistics {
    padding: 60px 0;
    background: var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-card {
    text-align: center;
    padding: 24px;
}

.stats-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    display: block;
}

.stats-number .suffix {
    font-size: 28px;
}

.stats-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 4px;
}

/* ============================================================ */
/* FAQ - ANATOMY #10                                           */
/* ============================================================ */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    padding: 18px 24px;
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .faq-toggle {
    font-size: 20px;
    transition: transform var(--transition);
    color: var(--text-secondary);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================================ */
/* DEMO SECTION - FORMULIR KONTAK                              */
/* ============================================================ */
.demo-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.demo-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-alt);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.demo-header {
    text-align: center;
    margin-bottom: 32px;
}

.demo-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.demo-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-form .form-group {
    margin-bottom: 0;
}

.demo-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.demo-form .form-group input,
.demo-form .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
    background: var(--bg-white);
}

.demo-form .form-group input:focus,
.demo-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.1);
}

.demo-form .full-width {
    grid-column: 1 / -1;
}

.demo-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 17px;
}

.demo-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ============================================================ */
/* CTA SECTION - ANATOMY #11                                   */
/* ============================================================ */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #14916F 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.cta-wrapper p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 28px;
}

.cta-wrapper .btn-primary {
    background: white;
    color: var(--primary);
    font-size: 18px;
    padding: 16px 40px;
}

.cta-wrapper .btn-primary:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-sub {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================ */
/* FOOTER - ANATOMY #12                                        */
/* ============================================================ */
.footer {
    background: var(--secondary);
    padding: 60px 0 24px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* ============================================================ */
/* FLOATING SUPPORT - ANATOMY #13                              */
/* ============================================================ */
.floating-support {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
}

.support-btn {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 20px rgba(13, 124, 102, 0.4);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.support-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 8px 32px rgba(13, 124, 102, 0.5);
}

.support-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    pointer-events: none;
}

.support-btn:hover + .support-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================ */
/* ANIMATIONS - SCROLL TRIGGERED                               */
/* ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================ */
/* RESPONSIVE DESIGN                                           */
/* ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: none;
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 16px;
        box-shadow: -4px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        font-size: 18px;
        padding: 8px 0;
        display: block;
    }
    
    .nav-cta {
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-desc {
        font-size: 16px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mockup-card {
        max-width: 260px;
        padding: 16px;
    }
    
    .mockup-row {
        padding: 8px 10px;
    }

    .mockup-row-text,
    .mockup-row-value {
        font-size: 11px;
    }
    
    .float-chip {
        display: none;
    }
    
    .hero-wave {
        display: none;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .props-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .prop-card {
        padding: 20px 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        grid-column: span 1;
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stats-number {
        font-size: 32px;
    }
    
    .badges-wrapper {
        gap: 16px;
    }
    
    .badge-item {
        font-size: 13px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-wrapper h2 {
        font-size: 28px;
    }
    
    .cta-wrapper p {
        font-size: 16px;
    }
    
    .cta-wrapper .btn-primary {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .risk-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .risk-item {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }

    .risk-divider {
        width: 80%;
        height: 1px;
    }

    .demo-wrapper {
        padding: 24px 16px;
    }

    .demo-form-row {
        grid-template-columns: 1fr;
    }

    .demo-header h2 {
        font-size: 22px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .props-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .stats-label {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-price {
        font-size: 32px;
    }
    
    .step {
        padding: 24px 16px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}