/* =============================================
   SAYMORE DIGITAL — LANDING PAGE STYLES
   Inspired by MarketLab.id design language
   ============================================= */

/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Colors — warm, professional palette */
    --primary: #FF9F43;
    --primary-dark: #E8891A;
    --primary-light: #FFB86C;
    --primary-rgb: 255, 159, 67;

    --accent: #E44F39;
    --accent-rgb: 228, 79, 57;

    --dark: #232323;
    --dark-rgb: 35, 35, 35;
    --dark-lighter: #2d2d2d;
    --dark-card: #1a1a1a;

    --text-primary: #232323;
    --text-secondary: #7B7B7B;
    --text-light: #ffffff;
    --text-muted: #9a9a9a;

    --bg-body: #ffffff;
    --bg-section-alt: #f8f6f3;
    --bg-dark: #0f0f0f;
    --bg-dark-card: rgba(255, 255, 255, 0.04);

    --border-light: rgba(35, 35, 35, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);

    --green: #22c55e;
    --green-rgb: 34, 197, 94;

    /* Spacing */
    --section-py: 100px;
    --container-px: 24px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 60px rgba(var(--primary-rgb), 0.15);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.875;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -0.02em; }
h4 { font-size: 1.25rem; letter-spacing: -0.02em; }

strong { font-weight: 600; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--text-light);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--dark);
    color: var(--text-light);
    border-color: var(--dark);
    padding: 14px 32px;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(var(--dark-rgb), 0.2);
    padding: 14px 32px;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--text-light);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--dark);
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

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

.btn-xl {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-body);
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 40%;
    left: 50%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 30px) scale(1.15); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--dark-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--dark-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

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

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

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--primary);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--green-rgb), 0.08);
    border: 1px solid rgba(var(--green-rgb), 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5.5vw + 0.5rem, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title .line1 {
    font-size: clamp(1.8rem, 4.2vw + 0.5rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title .text-gradient {
    font-size: clamp(2.2rem, 5vw + 0.5rem, 4.2rem);
    font-weight: 800;
}

.hero-title .line3 {
    font-size: clamp(1.8rem, 4.2vw + 0.5rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(var(--dark-rgb), 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* =============================================
   PAIN POINTS SECTION
   ============================================= */
.pain-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.pain-card {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.pain-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pain-solution-bridge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 10px;
}

.bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.3), transparent);
}

.bridge-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    padding: var(--section-py) 0;
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.service-card-featured {
    border-color: rgba(var(--primary-rgb), 0.25);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.02) 0%, rgba(var(--accent-rgb), 0.02) 100%);
}

.service-card-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--dark);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-green {
    color: var(--green);
}

.service-badge-hot {
    padding: 4px 12px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.service-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--primary);
    margin-top: 1px;
}

/* =============================================
   PROCESS / HOW IT WORKS
   ============================================= */
.process-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

.process-timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    position: relative;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.process-step:hover {
    background: var(--bg-body);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(var(--primary-rgb), 0.12);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    transition: color var(--transition-base);
}

.process-step:hover .step-number {
    color: rgba(var(--primary-rgb), 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.process-connector::after {
    content: '→';
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section {
    padding: var(--section-py) 0;
    background: var(--bg-body);
}

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

.testimonial-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* =============================================
   RESULTS / METRICS
   ============================================= */
.results-section {
    padding: var(--section-py) 0;
    background: var(--bg-body);
}

.results-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.results-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.result-item {
    text-align: center;
    padding: 20px;
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.result-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.result-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* =============================================
   WHY US
   ============================================= */
.why-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

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

.why-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
    padding: var(--section-py) 0;
    background: var(--bg-body);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.pricing-card-popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, var(--bg-body) 100%);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
    transform: scale(1.03);
}

.pricing-card-popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 0 1px var(--primary), 0 20px 60px rgba(var(--primary-rgb), 0.2);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.4rem;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-top: 24px;
}

.price-old {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-currency {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.pricing-features {
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 7px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li.included::before {
    background: rgba(var(--green-rgb), 0.1);
    border: 1px solid rgba(var(--green-rgb), 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322c55e'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.pricing-features li.excluded {
    color: var(--text-muted);
}

.pricing-card .btn-block {
    margin-top: auto;
}

.pricing-features li.excluded::before {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239a9a9a'%3E%3Cpath fill-rule='evenodd' d='M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    transition: transform var(--transition-base);
    color: var(--text-secondary);
    min-width: 20px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
    padding: var(--section-py) 0;
    background: var(--bg-body);
}

.final-cta-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-title {
    color: var(--text-light);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.final-cta-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.final-cta-card .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.final-cta-card .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
}

.final-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 0;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer-wa:hover {
    color: #25D366;
}

.footer-web {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-web:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }

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

    .results-card {
        padding: 48px 36px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

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

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

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

    .process-timeline {
        flex-direction: column;
        gap: 0;
    }

    .process-connector {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .process-connector::after {
        content: '↓';
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-py: 60px;
        --container-px: 20px;
    }

    .hero-content {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero-title .line1 {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .hero-title .text-gradient {
        font-size: 2.5rem;
        line-height: 1.1;
        margin: 2px 0;
    }

    .hero-title .line3 {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        line-height: 1.55;
        margin-bottom: 26px;
        padding: 0 4px;
        color: var(--text-secondary);
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-cta-group .btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.92rem;
        min-height: 48px;
    }

    #cta-dashboard {
        margin-top: 0 !important;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1.5px solid var(--primary);
        color: var(--primary-dark);
        font-weight: 600;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-value {
        font-size: 2rem;
    }

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

    .bridge-text {
        white-space: normal;
        text-align: center;
    }

    .pain-solution-bridge {
        flex-direction: column;
        gap: 16px;
    }

    .bridge-line {
        width: 60%;
        height: 1px;
    }

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

    .testimonial-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

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

    .results-card {
        padding: 36px 24px;
    }

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

    .why-grid-3 {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        padding: 48px 20px;
    }

    .final-cta-card .btn-xl {
        width: 100%;
        padding: 16px;
        font-size: 0.95rem;
        white-space: normal;
        height: auto;
        line-height: 1.4;
    }

    .custom-duration-card .btn {
        width: 100%;
        white-space: normal;
        height: auto;
        line-height: 1.4;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 80px;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 22px;
    }

    .pricing-card .btn {
        width: 100%;
        min-height: 48px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-nav {
        font-size: 0.82rem;
        padding: 8px 16px;
        min-height: 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .custom-duration-card {
        padding: 28px 20px;
    }

    .custom-duration-content h3 {
        font-size: 1.15rem;
    }

    .custom-duration-content p {
        font-size: 0.82rem;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .custom-duration-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .custom-duration-card .btn {
        width: 100%;
    }
}

/* =============================================
   NEW: 3-Column Services Grid
   ============================================= */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-grid-3 .service-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: auto;
    flex: 1;
}

.service-tag-bottom {
    display: block;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.service-card:hover .service-tag-bottom {
    color: var(--primary);
}

/* Service icon color variants */
.service-icon-pink {
    color: #f43f5e;
}

.service-icon-purple {
    color: #8b5cf6;
}

/* =============================================
   NEW: Pricing Categories
   ============================================= */
.pricing-category {
    margin-bottom: 56px;
}

.pricing-category:last-child {
    margin-bottom: 40px;
}

.pricing-category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.3rem;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.pricing-category-badge {
    display: inline-flex;
    padding: 4px 14px;
    background: rgba(var(--green-rgb), 0.1);
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.pricing-category-badge-ads {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
}

/* Pricing old price */
.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    width: 100%;
}

/* Pricing badge variants */
.pricing-badge-terlaris {
    background: var(--accent);
    color: white;
}

.pricing-badge-rekomendasi {
    background: var(--dark);
    color: var(--primary);
}

.pricing-badge-hemat {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

/* =============================================
   NEW: Custom Duration CTA Card
   ============================================= */
.custom-duration-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.custom-duration-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.custom-duration-content {
    flex: 1;
}

.custom-duration-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
    margin-top: 12px;
}

.custom-duration-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.custom-duration-card .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.custom-duration-card .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
}

/* =============================================
   NEW: Why Grid 3-col
   ============================================= */
.why-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   NEW: Final CTA Badge
   ============================================= */
.final-cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

/* =============================================
   NEW: Footer Email
   ============================================= */
.footer-email {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.footer-email:hover {
    color: var(--primary);
}

/* =============================================
   NEW: Responsive overrides for new elements
   ============================================= */
@media (max-width: 1024px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .custom-duration-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .pricing-category-title {
        flex-wrap: wrap;
    }

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

@media (max-width: 640px) {
    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .why-grid-3 {
        grid-template-columns: 1fr;
    }

    .custom-duration-card {
        padding: 32px 20px;
    }

    .pricing-category-title {
        font-size: 1.1rem;
    }
}
