/* ================================================
   SINTANG WEB KREATIF - MOBILE-FIRST
   Theme: Navy Elegan Gradasi Hijau
   ================================================ */

:root {
    --navy-darkest: #04142B;
    --navy-dark:    #0A1F3D;
    --navy:         #0C447C;
    --navy-light:   #185FA5;
    --navy-50:      #E6F1FB;

    --green-darkest: #04342C;
    --green-dark:    #085041;
    --green:         #0F6E56;
    --green-mid:     #1D9E75;
    --green-light:   #87CFA4;
    --green-50:      #E1F5EE;

    --gold:       #D4AF37;
    --gold-light: #F2D778;

    --bg:           #FAFBFC;
    --bg-soft:      #F1F4F8;
    --surface:      #FFFFFF;
    --border:       rgba(10, 31, 61, 0.08);
    --border-soft:  rgba(10, 31, 61, 0.05);

    --text:         #0A1F3D;
    --text-soft:    #4A5A75;
    --text-mute:    #8A95A8;

    --grad-primary: linear-gradient(135deg, #0A1F3D 0%, #0C447C 50%, #0F6E56 100%);
    --grad-soft:    linear-gradient(135deg, #0A1F3D 0%, #0F6E56 100%);
    --grad-accent:  linear-gradient(135deg, #1D9E75 0%, #0F6E56 100%);

    --shadow-sm:  0 1px 2px rgba(10, 31, 61, 0.04), 0 1px 3px rgba(10, 31, 61, 0.06);
    --shadow:     0 4px 12px rgba(10, 31, 61, 0.06), 0 2px 4px rgba(10, 31, 61, 0.04);
    --shadow-md:  0 8px 24px rgba(10, 31, 61, 0.08), 0 4px 8px rgba(10, 31, 61, 0.04);
    --shadow-lg:  0 24px 48px rgba(10, 31, 61, 0.12), 0 8px 16px rgba(10, 31, 61, 0.06);
    --shadow-xl:  0 32px 64px rgba(10, 31, 61, 0.16);
    --shadow-green: 0 12px 32px rgba(15, 110, 86, 0.25);

    --r-sm: 6px;
    --r:    10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;

    --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    --font-sans:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;

    /* Touch target minimum */
    --touch: 44px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration: none; transition: color var(--t); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0; }

/* Skip link aksesibilitas */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy-dark);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
}
.skip-link:focus { left: 0; color: #fff; }

/* ===== LAYOUT (mobile-first) ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.section { padding: 56px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; padding: 0 4px; }
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    padding: 5px 12px;
    background: var(--green-50);
    border-radius: 999px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
}
.text-gradient {
    background: linear-gradient(135deg, #87CFA4 0%, #1D9E75 50%, #0F6E56 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS (mobile-first, min 44px) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--touch);
    padding: 12px 20px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: all var(--t);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 0;
    text-align: center;
}
.btn-lg { padding: 14px 24px; font-size: 15px; min-height: 50px; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-light { background: #fff; color: var(--navy-dark); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

@media (hover: hover) {
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(15, 110, 86, 0.35); color: #fff; }
    .btn-outline:hover { background: var(--navy); color: #fff; }
    .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
    .btn-light:hover { transform: translateY(-2px); color: var(--navy-dark); box-shadow: var(--shadow-lg); }
    .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }
    a:hover { color: var(--green-mid); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 31, 61, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 15px; letter-spacing: -0.01em; flex: 1; min-width: 0; }
.brand-logo { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.brand-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav-menu { display: none; }
.nav-cta { display: none; }
.nav-toggle {
    display: flex; flex-direction: column; gap: 4px;
    width: var(--touch); height: var(--touch);
    align-items: center; justify-content: center;
    flex-shrink: 0;
    padding: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(4, 20, 43, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0; pointer-events: none;
    transition: opacity var(--t);
}
.drawer-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 86%; max-width: 360px;
    background: #fff;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.active { transform: translateX(0); }
.drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--grad-soft);
    color: #fff;
}
.drawer-head .brand { color: #fff; font-size: 14px; }
.drawer-head .brand-logo { background: rgba(255,255,255,0.95); padding: 2px; }
.drawer-close {
    width: var(--touch); height: var(--touch);
    color: #fff;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.drawer-menu { padding: 12px; flex: 1; }
.drawer-menu a {
    display: flex; align-items: center;
    min-height: 50px;
    padding: 12px 16px;
    color: var(--text);
    font-weight: 500; font-size: 16px;
    border-radius: var(--r);
    transition: all var(--t);
}
.drawer-menu a[aria-current="page"] { background: var(--green-50); color: var(--green); }
.drawer-menu a:active { background: var(--bg-soft); }
.drawer-cta {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px;
}

/* ===== HERO (mobile-first) ===== */
.hero {
    position: relative;
    background: var(--grad-primary);
    color: #fff;
    overflow: hidden;
    padding: 48px 0 56px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.hero-orb-1 { width: 300px; height: 300px; background: var(--green-mid); top: -100px; right: -50px; }
.hero-orb-2 { width: 250px; height: 250px; background: var(--navy-light); bottom: -80px; left: -30px; }
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner { position: relative; }
.hero-content { text-align: center; }
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(29, 158, 117, 0.15);
    border: 1px solid rgba(135, 207, 164, 0.3);
    color: var(--green-light);
    font-size: 12px; font-weight: 500;
    margin-bottom: 20px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); box-shadow: 0 0 8px var(--green-light); }
.hero-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
}
.hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin-bottom: 24px;
}
.hero-desc strong { color: var(--green-light); font-weight: 600; }
.hero-cta {
    display: flex; flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.hero-cta .btn { width: 100%; }
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 600;
    color: var(--green-light);
    line-height: 1; letter-spacing: -0.02em;
}
.hero-stat-num span { color: rgba(135,207,164,0.6); }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* Hero visual hidden on mobile */
.hero-visual { display: none; }

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--grad-primary);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 600;
    color: #fff; margin-bottom: 12px;
    position: relative;
}
.page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 640px; margin: 0 auto;
    position: relative;
}

/* ===== SERVICES ===== */
.section-services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.service-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--grad-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
}
.service-card-navy::before { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }
.service-card:active { transform: scale(0.99); }
.service-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: var(--green-50);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.service-card-navy .service-icon { background: var(--navy-50); color: var(--navy); }
.service-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.service-desc { color: var(--text-soft); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 13px; font-weight: 600; min-height: var(--touch); }

/* ===== ABOUT ===== */
.section-about { background: var(--bg); }
.about-grid { display: grid; gap: 28px; margin-bottom: 40px; }
.about-story p {
    font-size: 15px; line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 14px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-visual { position: relative; }
.about-image-stack { position: relative; }
.about-image {
    background: var(--bg-soft);
    border-radius: var(--r-md);
    aspect-ratio: 4/3;
    overflow: hidden;
}
.about-image-placeholder {
    width: 100%; height: 100%;
    background: var(--grad-soft);
    color: rgba(255,255,255,0.85);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    font-size: 13px; font-weight: 500;
}
.about-badge {
    position: absolute;
    bottom: -20px; right: 16px;
    background: #fff;
    border-radius: var(--r);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
}
.about-badge-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.about-badge-label { font-size: 11px; color: var(--text-soft); margin-top: 4px; line-height: 1.3; }

.about-vm { display: grid; gap: 14px; margin-top: 32px; }
.about-vm-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    position: relative;
}
.about-vm-vision { border-left: 4px solid var(--green); }
.about-vm-mission { border-left: 4px solid var(--navy); }
.about-vm-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--green-50); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.about-vm-mission .about-vm-icon { background: var(--navy-50); color: var(--navy); }
.about-vm-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.about-vm-card p, .about-vm-card li {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
}
.about-vm-card ul { padding-left: 0; }
.about-vm-card li {
    padding: 6px 0 6px 22px;
    position: relative;
}
.about-vm-card li::before {
    content: ''; position: absolute;
    left: 0; top: 14px;
    width: 12px; height: 2px; background: var(--navy);
    border-radius: 2px;
}

.about-values { margin-top: 36px; }
.about-values-title {
    font-family: var(--font-display);
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.about-values-grid { display: grid; gap: 14px; }
.about-value {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    text-align: center;
}
.about-value-mark {
    width: 36px; height: 4px;
    background: var(--grad-accent);
    border-radius: 2px;
    margin: 0 auto 12px;
}
.about-value h4 {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 600;
    margin-bottom: 6px;
}
.about-value p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* ===== REASONS ===== */
.section-reasons { background: var(--bg-soft); }
.reasons-banner {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 32px;
    padding: 28px 20px;
    color: #fff;
}
.reasons-banner-bg {
    position: absolute; inset: 0;
    background: var(--grad-primary);
    z-index: 0;
}
.reasons-banner-stats {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
}
.reasons-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--green-light);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.reasons-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }

.reasons-grid { display: grid; gap: 12px; }
.reason-card {
    background: #fff;
    padding: 18px;
    border-radius: var(--r);
    display: flex; gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: all var(--t);
}
.reason-check {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29, 158, 117, 0.3);
}
.reason-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.reason-desc { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; }

/* ===== PRICING - Carousel di mobile ===== */
.section-pricing { background: var(--bg); }
.pricing-swiper {
    overflow: visible !important;
    padding-bottom: 40px;
}
.pricing-swiper .swiper-wrapper {
    align-items: stretch;
}
.pricing-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    position: relative;
    transition: all var(--t);
    width: 100%;
    display: flex;
    flex-direction: column;
}
.pricing-card-featured {
    background: var(--grad-primary);
    color: #fff;
    border: 0;
    box-shadow: var(--shadow-lg);
}
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-darkest);
    font-size: 10px; font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: 0.08em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}
.pricing-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.pricing-card-featured .pricing-name { color: #fff; }
.pricing-tagline { font-size: 12.5px; color: var(--text-soft); margin-bottom: 18px; }
.pricing-card-featured .pricing-tagline { color: rgba(255,255,255,0.7); }
.pricing-price {
    padding: 16px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-price { border-color: rgba(255,255,255,0.15); }
.pricing-amount {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
}
.pricing-card-featured .pricing-amount { color: var(--green-light); }
.pricing-period { font-size: 13px; color: var(--text-mute); margin-left: 4px; }
.pricing-card-featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-features { margin-bottom: 22px; flex: 1; }
.pricing-features li {
    display: flex; align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.5;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features svg { color: var(--green-mid); flex-shrink: 0; margin-top: 4px; }
.pricing-card-featured .pricing-features svg { color: var(--green-light); }

.pricing-card-featured .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.pricing-card-featured .btn-primary { background: #fff; color: var(--navy-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.pricing-pagination {
    position: absolute !important;
    bottom: 0 !important;
    left: 0; right: 0;
}
.pricing-pagination .swiper-pagination-bullet { background: var(--navy); opacity: 0.3; }
.pricing-pagination .swiper-pagination-bullet-active { background: var(--green-mid); opacity: 1; width: 24px; border-radius: 4px; }

.pricing-note { text-align: center; margin-top: 24px; color: var(--text-soft); font-size: 13px; }
.pricing-note a { font-weight: 600; }

/* Info pembayaran */
.pricing-payment {
    margin-top: 36px;
    padding: 24px 20px;
    background: var(--bg-soft);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    text-align: center;
}
.pricing-payment h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}
.pricing-payment > p { font-size: 13.5px; color: var(--text-soft); margin-bottom: 18px; }
.pricing-payment-grid {
    display: grid; gap: 12px;
    text-align: left;
}
.payment-method {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
}
.payment-method-label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--green); margin-bottom: 6px;
}
.payment-method-value { font-size: 13.5px; color: var(--text); line-height: 1.5; }
.payment-method-value strong { color: var(--navy); font-size: 15px; }
.payment-method-value small { font-size: 12px; color: var(--text-mute); }

/* ===== PORTFOLIO Carousel ===== */
.section-portfolio { background: var(--bg-soft); }
.portfolio-swiper {
    padding: 0 0 48px !important;
    position: relative;
}
.portfolio-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.portfolio-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    width: 100%;
    transition: all var(--t);
    text-decoration: none;
    color: inherit;
}
.portfolio-card:active { transform: scale(0.98); }
.portfolio-logo-wrap {
    background: var(--bg-soft);
    border-radius: var(--r-sm);
    aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.portfolio-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
}
.portfolio-info { padding: 4px; }
.portfolio-name {
    font-size: 13px; font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}
.portfolio-cat {
    font-size: 11px;
    color: var(--green);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.portfolio-pagination {
    position: absolute !important;
    bottom: 12px !important;
    left: 0; right: 0;
    text-align: center;
}
.portfolio-pagination .swiper-pagination-bullet { background: var(--navy); opacity: 0.3; }
.portfolio-pagination .swiper-pagination-bullet-active { background: var(--green-mid); opacity: 1; width: 20px; border-radius: 4px; }
.portfolio-prev, .portfolio-next { display: none; }
.portfolio-cta { text-align: center; margin-top: 24px; }

/* Portfolio full grid */
.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials { background: var(--bg-soft); }
.testimonial-swiper {
    padding-bottom: 40px;
}
.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}
.testimonial-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    width: 100%;
}
.testimonial-quote-mark {
    position: absolute; top: 12px; right: 18px;
    font-family: var(--font-display);
    font-size: 60px; line-height: 1;
    color: var(--green-50);
    pointer-events: none;
}
.testimonial-rating { display: flex; gap: 2px; color: var(--gold); margin-bottom: 12px; }
.testimonial-text {
    font-size: 14px; line-height: 1.65;
    color: var(--text-soft);
    margin: 0 0 18px;
    font-style: italic;
    position: relative; z-index: 1;
}
.testimonial-author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
    flex-shrink: 0;
}
.testimonial-name { font-size: 13.5px; font-weight: 700; color: var(--navy-dark); }
.testimonial-role { font-size: 11.5px; color: var(--text-mute); }
.testimonial-pagination { position: absolute !important; bottom: 0 !important; left: 0; right: 0; }
.testimonial-pagination .swiper-pagination-bullet { background: var(--navy); opacity: 0.3; }
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--green-mid); opacity: 1; width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
.section-contact { background: var(--bg); }
.contact-grid { display: grid; gap: 20px; }
.contact-info-card {
    background: var(--grad-primary);
    color: #fff;
    padding: 28px 22px;
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--green-mid);
    filter: blur(60px); opacity: 0.4;
}
.contact-info-card h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.contact-item {
    display: flex; gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(135,207,164,0.15);
    color: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-label {
    font-size: 11px; color: rgba(255,255,255,0.6);
    margin-bottom: 3px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.contact-item-value { font-size: 13.5px; color: #fff; line-height: 1.5; word-break: break-word; }
.contact-item-value a { color: var(--green-light); font-weight: 500; }
.contact-wa-btn { margin-top: 18px; }

.contact-form-wrap {
    background: #fff;
    padding: 24px 20px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.alert {
    padding: 12px 16px;
    border-radius: var(--r);
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.5;
}
.alert-success { background: var(--green-50); color: var(--green-darkest); border: 1px solid var(--green-light); }
.alert-error { background: #FCEBEB; color: #791F1F; border: 1px solid #F09595; }

.form-row { display: grid; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.form-group label span { color: #E24B4A; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: all var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: 0;
    border-color: var(--green-mid);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; visibility: hidden; }
.form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-mute); }

/* ===== CTA ===== */
.section-cta { background: var(--bg); padding: 40px 0; }
.cta-banner {
    position: relative;
    border-radius: var(--r-xl);
    padding: 36px 24px;
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.cta-banner-bg {
    position: absolute; inset: 0;
    background: var(--grad-primary);
    z-index: 0;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: #fff; margin-bottom: 12px;
    line-height: 1.25;
}
.cta-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    margin: 0 auto 22px;
}
.cta-banner-actions {
    display: flex; flex-direction: column; gap: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-darkest);
    color: rgba(255,255,255,0.65);
    padding: 48px 0 0;
}
.footer-grid {
    display: grid; gap: 28px;
    padding-bottom: 36px;
}
.footer-brand .brand { margin-bottom: 14px; color: #fff; }
.footer-tagline {
    font-size: 13.5px; line-height: 1.65;
    margin-bottom: 16px;
}
.footer-col h4 {
    color: #fff;
    font-size: 14px; font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.footer-col address {
    font-style: normal;
    font-size: 13.5px; line-height: 1.7;
}
.footer-col address p { margin-bottom: 6px; }
.footer-col address a { color: rgba(255,255,255,0.7); }
.footer-col address strong { color: #fff; font-size: 14px; }
.footer-hours { font-size: 12.5px !important; color: rgba(255,255,255,0.5) !important; margin-top: 8px !important; }

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a {
    width: var(--touch); height: var(--touch);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t);
}
.socials a svg { width: 18px; height: 18px; }
.socials a:active { background: var(--green); color: #fff; }

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    background: rgba(0,0,0,0.2);
}
.legal-info {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.8;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 6px;
}
.legal-info strong { color: rgba(255,255,255,0.85); }
.legal-sep { opacity: 0.3; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    background: rgba(0,0,0,0.3);
}
.footer-bottom .container {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    font-size: 12.5px; text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 16px; right: 16px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all var(--t);
    animation: pulseWA 2.5s ease-in-out infinite;
}
.wa-float:active { transform: scale(0.95); }
@keyframes pulseWA {
    0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 12px 32px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== TABLET (≥640px) ===== */
@media (min-width: 640px) {
    .container { padding: 0 24px; }
    .hero-title { font-size: 40px; }
    .hero-cta { flex-direction: row; justify-content: center; }
    .hero-cta .btn { width: auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-banner-stats { grid-template-columns: repeat(4, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr; }
    .footer-col-services, .footer-col-pages { display: block; }
    .cta-banner-actions { flex-direction: row; justify-content: center; }
    .about-vm { grid-template-columns: 1fr 1fr; }
    .about-values-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-payment-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-full-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== DESKTOP (≥1024px) ===== */
@media (min-width: 1024px) {
    .section { padding: 100px 0; }
    .section-head { margin-bottom: 56px; }
    .section-title { font-size: 38px; }
    .section-desc { font-size: 16.5px; }

    .nav-toggle { display: none; }
    .nav-menu {
        display: flex; gap: 4px;
        margin-left: auto; margin-right: 24px;
    }
    .nav-menu a {
        padding: 8px 14px;
        font-size: 14px; font-weight: 500;
        color: rgba(255,255,255,0.75);
        border-radius: 8px;
        transition: all var(--t);
    }
    .nav-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .nav-menu a[aria-current="page"] { color: var(--green-light); background: rgba(29,158,117,0.12); }
    .nav-cta { display: inline-flex; padding: 10px 18px; font-size: 13px; min-height: auto; }
    .nav-inner { padding: 14px 24px; }

    /* Hero desktop */
    .hero { padding: 80px 0 100px; min-height: 88vh; display: flex; align-items: center; }
    .hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
    .hero-content { text-align: left; }
    .hero-title { font-size: 56px; margin-bottom: 20px; }
    .hero-desc { font-size: 17px; max-width: 540px; margin-bottom: 32px; }
    .hero-cta { justify-content: flex-start; margin-bottom: 48px; }
    .hero-stats { justify-content: flex-start; gap: 28px; }
    .hero-stat-num { font-size: 34px; }
    .hero-stat-label { font-size: 12px; }
    .hero-stat-divider { height: 36px; }
    .hero-orb-1 { width: 500px; height: 500px; opacity: 0.5; }
    .hero-orb-2 { width: 400px; height: 400px; opacity: 0.5; }

    .hero-visual { display: block; position: relative; height: 480px; }
    .hero-card { position: absolute; border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow-xl); overflow: hidden; }
    .hero-card-back { width: 80%; height: 70%; top: 0; right: 0; background: linear-gradient(135deg, #1D9E75, #0F6E56); padding: 24px; transform: rotate(3deg); opacity: 0.85; }
    .hero-card-bar { height: 8px; background: rgba(255,255,255,0.4); border-radius: 4px; margin-bottom: 12px; }
    .hero-card-bar.short { width: 60%; }
    .hero-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 24px; }
    .hero-card-grid > div { aspect-ratio: 1; background: rgba(255,255,255,0.25); border-radius: 8px; }
    .hero-card-front { width: 85%; height: 75%; bottom: 0; left: 0; transform: rotate(-2deg); animation: cardFloat 6s ease-in-out infinite; }
    @keyframes cardFloat { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }
    .hero-card-header { background: var(--bg-soft); padding: 12px 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
    .hero-card-dots { display: flex; gap: 5px; }
    .hero-card-dots span { width: 9px; height: 9px; border-radius: 50%; background: #d4d4d4; }
    .hero-card-dots span:first-child { background: #FF5F57; }
    .hero-card-dots span:nth-child(2) { background: #FEBC2E; }
    .hero-card-dots span:nth-child(3) { background: #28C840; }
    .hero-card-url { flex: 1; background: #fff; border-radius: 6px; padding: 4px 10px; font-size: 11px; color: var(--text-mute); }
    .hero-card-body { padding: 24px; }
    .hero-mock-hero { height: 80px; background: linear-gradient(135deg, var(--navy), var(--green)); border-radius: 8px; margin-bottom: 16px; }
    .hero-mock-line { height: 8px; background: var(--bg-soft); border-radius: 4px; margin-bottom: 8px; }
    .hero-mock-line.short { width: 65%; margin-bottom: 16px; }
    .hero-mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
    .hero-mock-tile { aspect-ratio: 1; background: var(--green-50); border-radius: 6px; }
    .hero-mock-cta { height: 28px; width: 100px; background: var(--grad-accent); border-radius: 6px; }
    .hero-floating { position: absolute; background: #fff; padding: 12px 16px; border-radius: var(--r); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 2px; animation: floatTag 4s ease-in-out infinite; }
    .hero-floating span { font-size: 10px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
    .hero-floating strong { font-size: 14px; color: var(--navy-dark); font-weight: 700; }
    .hero-floating-1 { top: 10%; left: -5%; }
    .hero-floating-2 { bottom: 12%; right: -3%; animation-delay: 2s; }
    @keyframes floatTag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

    .page-hero { padding: 100px 0 80px; }
    .page-hero h1 { font-size: 48px; margin-bottom: 16px; }
    .page-hero p { font-size: 17px; }

    .services-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Pricing: grid di desktop */
    .pricing-swiper { padding-bottom: 0; overflow: visible; }
    .pricing-swiper .swiper-pagination { display: none; }
    .pricing-swiper .swiper-wrapper { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; transform: none !important; }
    .pricing-swiper .swiper-slide { width: 100% !important; }
    .pricing-card { padding: 36px 32px; }
    .pricing-card-featured { transform: scale(1.04); z-index: 1; }
    .pricing-name { font-size: 22px; }
    .pricing-amount { font-size: 32px; }

    .testimonial-swiper .swiper-wrapper { /* tetap carousel di desktop */ }
    .testimonial-card { padding: 28px 24px; }

    /* Portfolio prev/next button di desktop */
    .portfolio-prev, .portfolio-next {
        display: flex !important;
        width: 40px; height: 40px;
        background: #fff;
        border-radius: 50%;
        box-shadow: var(--shadow-md);
        color: var(--navy);
        top: 50%; transform: translateY(-50%);
    }
    .portfolio-prev::after, .portfolio-next::after {
        font-size: 14px; font-weight: 700;
    }
    .portfolio-full-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .portfolio-card { padding: 20px; }

    /* Contact 2 kolom */
    .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: start; }
    .contact-info-card { padding: 36px 28px; }
    .contact-form-wrap { padding: 32px 28px; }

    /* CTA besar di desktop */
    .cta-banner { padding: 56px 48px; }
    .cta-banner h2 { font-size: 32px; }
    .cta-banner p { font-size: 16px; max-width: 580px; }

    /* Footer 4 kolom */
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
    .footer-bottom .container { flex-direction: row; justify-content: space-between; }

    .reasons-banner { padding: 40px 32px; }
    .reasons-stat-num { font-size: 48px; }

    .about-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
    .about-vm { gap: 24px; margin-top: 48px; }
    .about-values-grid { gap: 20px; }

    .wa-float { width: 60px; height: 60px; bottom: 24px; right: 24px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
