:root {
    --blue-900: #0f2b46;
    --blue-800: #153a5e;
    --blue-700: #1a4a77;
    --blue-600: #1e5a8f;
    --blue-500: #2271b1;
    --blue-400: #3d8fd4;
    --blue-300: #6fb3e8;
    --blue-100: #dceefb;
    --blue-50: #f0f7fd;
    --gray-900: #1a1a2e;
    --gray-700: #4a4a5a;
    --gray-500: #7a7a8a;
    --gray-300: #c8c8d4;
    --gray-100: #f4f4f8;
    --white: #ffffff;
    --green-500: #16a34a;
    --green-100: #dcfce7;
    --red-500: #dc2626;
    --red-100: #fef2f2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 72px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
    padding: 0 2rem;
}
nav .inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
nav .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-700);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
nav .logo .logo-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 22px;
}
nav .logo .logo-icon i {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: var(--blue-500);
}
nav .logo .logo-text span { color: var(--blue-400); }
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
nav ul a {
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul a:hover { color: var(--blue-600); }

/* HERO */
.hero {
    padding: 7rem 2rem 3.5rem;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-100) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-wave {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    opacity: 0.6;
    pointer-events: none;
}
.hero-wave svg {
    width: 100%;
    height: 120px;
}
.hero > *:not(.hero-wave) { position: relative; z-index: 1; }
.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-900);
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto 1rem;
}
.hero p {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 560px;
    margin: 0 auto 1.5rem;
}
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--blue-600);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.btn:hover { background: var(--blue-700); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
    margin-left: 1rem;
}
.btn-outline:hover { background: var(--blue-50); }
.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
}

.hero-badges {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}
.hero-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* SECTIONS */
section { padding: 3rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-title h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

/* HOW IT WORKS */
.steps { background: var(--gray-100); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-card:nth-child(2) { transition-delay: 0.12s; }
.step-card:nth-child(3) { transition-delay: 0.24s; }
.step-number {
    width: 40px;
    height: 40px;
    background: var(--blue-100);
    color: var(--blue-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}
.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--blue-900);
}
.step-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* UPLOAD */
.upload-section { background: var(--white); }
.upload-area {
    max-width: 640px;
    margin: 0 auto;
    border: 2px dashed var(--blue-300);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--blue-50);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.upload-area:hover,
.upload-area.dragover {
    border-color: var(--blue-500);
    background: var(--blue-100);
}
.upload-area svg {
    width: 36px;
    height: 36px;
    color: var(--blue-400);
    margin-bottom: 1rem;
}
.upload-area h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--blue-900);
}
.upload-area p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.upload-area input[type="file"] { display: none; }

.upload-form {
    max-width: 640px;
    margin: 1.5rem auto 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(34,113,177,0.1);
}
.file-list {
    max-width: 640px;
    margin: 1rem auto;
    font-size: 0.9rem;
}
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    background: var(--gray-100);
    border-radius: 6px;
    margin-bottom: 0.4rem;
}
.file-item .name { color: var(--gray-700); font-weight: 500; }
.file-item .size { color: var(--gray-500); font-size: 0.85rem; }
.file-item .duration { color: var(--blue-500); font-size: 0.85rem; font-weight: 500; }
.file-item .remove {
    color: var(--red-500);
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    font-size: 1.1rem;
}
.upload-msg {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    display: none;
}
.upload-msg.success { display: block; background: var(--green-100); color: var(--green-500); }
.upload-msg.error { display: block; background: var(--red-100); color: var(--red-500); }
.progress-wrap {
    max-width: 640px;
    margin: 1rem auto 0;
    display: none;
}
.progress-wrap.active { display: block; }
.progress-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.progress-bar .fill {
    height: 100%;
    width: 0%;
    background: var(--blue-500);
    border-radius: 4px;
    transition: width 0.2s;
}
.progress-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.4rem;
}

/* PRICE ESTIMATE */
.price-estimate {
    max-width: 640px;
    margin: 1rem auto 0;
    padding: 0.8rem 1rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--blue-700);
    display: none;
}
.price-estimate.active { display: block; }
.price-estimate strong { font-size: 1.05rem; }

/* PRICING */
.pricing { background: var(--gray-100); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(24px);
}
.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.price-card:nth-child(2) { transition-delay: 0.12s; }
.price-card:nth-child(3) { transition-delay: 0.24s; }
.price-card.featured {
    border-color: var(--blue-500);
    position: relative;
}
.price-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-500);
    color: var(--white);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.price-card h3 {
    font-size: 1.15rem;
    color: var(--blue-900);
    margin-bottom: 0.5rem;
}
.price-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-700);
    margin-bottom: 0.3rem;
}
.price-card .unit {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
}
.price-card ul li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.price-card ul li::before {
    content: '\2713';
    color: var(--green-500);
    font-weight: 700;
    flex-shrink: 0;
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--blue-400);
    flex-shrink: 0;
}

/* FREE TRIAL BANNER */
.trial-banner {
    max-width: 640px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background: var(--green-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.trial-banner p {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}
.trial-banner p strong { color: var(--green-500); }

/* FAQ */
.faq { background: var(--white); }
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-100);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-900);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--blue-400);
    transition: transform 0.2s;
}
.faq-q.active::after { content: '\2212'; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-a p { padding-bottom: 1.2rem; }

/* CONTACT */
.contact { background: var(--blue-900); color: var(--white); }
.contact .section-title h2 { color: var(--white); }
.contact .section-title p { color: rgba(255,255,255,0.6); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
}
.contact-card svg {
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}
.contact-card strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}
.contact-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.5;
}
.contact-card a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.contact-form .upload-msg { margin-top: 1rem; }
.contact-form .form-group label { color: var(--blue-300); }
.contact-form .form-group input,
.contact-form .form-group textarea {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(61,143,212,0.2);
}

/* FOOTER */
footer {
    background: var(--gray-900);
    color: var(--gray-500);
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
}
footer a { color: var(--gray-500); }

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--blue-600);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    z-index: 99;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--blue-700); }

/* SUCCESS ANIMATION */
.upload-msg.success .checkmark {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-500);
    position: relative;
    vertical-align: middle;
    margin-right: 0.5rem;
    animation: pop 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.upload-msg.success .checkmark::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}
@keyframes pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* HAMBURGER */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* BLOG */
.blog-list { max-width: 720px; margin: 0 auto; }
.blog-card {
    display: block;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.1s;
}
.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-2px); }
.blog-card h3 { color: var(--blue-900); font-size: 1.15rem; margin-bottom: 0.4rem; }
.blog-card p { color: var(--gray-500); font-size: 0.9rem; }
.blog-card .meta { color: var(--gray-300); font-size: 0.8rem; margin-top: 0.5rem; }

/* ORDER STATUS */
.status-box {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.status-box .order-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}
.status-box .order-detail:last-child { border-bottom: none; }
.status-box .order-detail .label { color: var(--gray-500); }
.status-box .order-detail .value { color: var(--gray-900); font-weight: 500; }
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-badge.received { background: var(--blue-100); color: var(--blue-700); }
.status-badge.processing { background: #fef3c7; color: #92400e; }
.status-badge.done { background: var(--green-100); color: var(--green-500); }

/* SIMPLE PAGE LAYOUT */
.page { max-width: 720px; margin: 0 auto; padding: 6rem 2rem 4rem; }
.page h1 { font-size: 2rem; color: var(--blue-900); margin-bottom: 1.5rem; }
.page h2 { font-size: 1.2rem; color: var(--blue-700); margin: 1.5rem 0 0.5rem; }
.page p, .page ul { margin-bottom: 1rem; color: var(--gray-700); }
.page ul { padding-left: 1.5rem; }
.page a { color: var(--blue-500); }
.back { display: inline-block; margin-bottom: 2rem; color: var(--blue-500); text-decoration: none; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .steps-grid, .pricing-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-badges { flex-direction: column; gap: 0.8rem; }
    .btn-outline { margin-left: 0; margin-top: 0.8rem; display: block; }
    .trust-badges { gap: 1rem; }
    .trial-banner { flex-direction: column; text-align: center; }
    .hamburger { display: block; }
    nav ul {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    nav ul.open { display: flex; }
    nav ul li a {
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--gray-100);
    }
    nav ul li:last-child a { border-bottom: none; }
}
