﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f4efe7;
    --bg-soft: #fffaf4;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #1d2433;
    --muted: #5f6878;
    --line: rgba(29, 36, 51, 0.08);
    --primary: #b85c38;
    --primary-dark: #8d452b;
    --accent: #123c69;
    --success: #1f7a53;
    --shadow: 0 20px 60px rgba(31, 35, 48, 0.12);
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(184, 92, 56, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(18, 60, 105, 0.14), transparent 30%),
        linear-gradient(180deg, #f8f3ed 0%, #f4efe7 52%, #fbf8f4 100%);
}

main {
    flex: 1 0 auto;
    padding-top: 0px;
}

a {
    transition: all .2s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.03em;
    color: var(--text);
}

p, li, summary, small {
    color: var(--muted);
    line-height: 1.7;
}

.btn {
    border-radius: 999px;
    padding-top: .8rem;
    padding-bottom: .8rem;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d67b56 100%);
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(184, 92, 56, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-color: transparent;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: rgba(18, 60, 105, 0.2);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--accent);
    border-color: var(--accent);
}

.section-block {
    padding: 72px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(29, 36, 51, 0.05);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(18, 60, 105, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
    font-size: 1.05rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(255, 250, 244, 0.82);
    z-index: 9999;
    border-bottom: 1px solid rgba(29, 36, 51, 0.08);
    box-shadow: 0 8px 24px rgba(29, 36, 51, 0.05);
}

.logo img {
    height: 42px;
    width: auto;
    aspect-ratio: 534 / 140;
    display: block;
}

.menu a {
    margin-left: 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}

.menu a:hover {
    color: var(--primary);
}

.menu a.is-active,
.mobile-menu a.is-active {
    color: var(--primary);
}

.menu a.is-active {
    position: relative;
}

.menu a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, #d67b56 100%);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #205a95 100%);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(18, 60, 105, 0.18);
}

.hamburger {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background: rgba(255, 250, 244, 0.96);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
}

.mobile-menu.aktif {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 12px;
    padding: 12px 16px !important;
    border: none !important;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #d67b56 100%);
    color: #fff !important;
    text-align: center;
}

.hero-section {
    position: relative;
    padding: 54px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.76) 100%);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 52px;
}

.hero-copy::before,
.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto auto -40px -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(184, 92, 56, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(18, 60, 105, 0.08);
    color: var(--accent);
    font-size: .9rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    line-height: 1.02;
    margin-bottom: 20px;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 28px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    font-size: .92rem;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(29, 36, 51, 0.06);
}

.hero-panel {
    padding: 28px;
    background: linear-gradient(160deg, rgba(18, 60, 105, 0.96) 0%, rgba(16, 31, 61, 0.92) 100%);
    color: #fff;
}

.hero-panel strong,
.hero-panel span,
.hero-panel p {
    color: inherit;
}

.hero-panel-top {
    margin-bottom: 26px;
}

.panel-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-metrics {
    display: grid;
    gap: 16px;
}

.metric-card,
.hero-mini-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.metric-card {
    padding: 18px 18px 16px;
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.hero-mini-card {
    margin-top: 18px;
    padding: 18px;
}

.mini-label {
    margin-bottom: 10px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .75;
}

.mini-plan {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.mini-plan strong,
.mini-price {
    font-size: 1.05rem;
}

.mini-plan span {
    display: block;
    margin-top: 4px;
    font-size: .9rem;
    opacity: .85;
}

.box {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    transition: all .3s ease;
    box-shadow: 0 14px 40px rgba(29, 36, 51, 0.08);
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(29, 36, 51, 0.14);
}

.feature-card,
.value-card,
.pricing-card {
    height: 100%;
}

.feature-tag,
.pricing-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.feature-tag {
    background: rgba(184, 92, 56, 0.1);
    color: var(--primary-dark);
}

.value-card {
    text-align: left;
}

.value-card h3 {
    margin-bottom: 10px;
}

.pricing-card {
    position: relative;
}

.pricing-featured {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(252,245,238,0.98) 100%);
    border-color: rgba(184, 92, 56, 0.22);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #205a95 100%);
    color: #fff;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
}

details {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(29, 36, 51, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

summary {
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 14px 34px rgba(29, 36, 51, 0.08);
}

.article-card .card-body {
    padding: 24px;
}

.card-title {
    font-weight: 600;
}

.card-text {
    font-size: 15px;
    line-height: 1.5;
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    min-width: 72px;
    text-align: center;
    background: linear-gradient(135deg, var(--success) 0%, #31b978 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 18px;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.3);
    z-index: 99999;
}

.footer {
    background: rgba(255, 250, 244, 0.92);
    color: var(--text);
    margin-top: auto;
    border-top: 1px solid rgba(29, 36, 51, 0.08) !important;
}

.footer a {
    color: var(--text);
}

.footer a:hover {
    text-decoration: underline;
}

.footer-cta {
    border-radius: 999px;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 34px 26px;
    }

    .hero-panel {
        padding: 24px;
    }

    .contact-grid,
    .story-grid,
    .service-hero,
    .service-list-grid,
    .service-steps {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 28px;
    }

    .service-hero-note {
        min-height: auto;
    }

    .article-hero,
    .blog-hero-copy,
    .article-banner,
    .article-body {
        padding: 28px;
    }

    .pricing-featured {
        transform: none;
    }
}

@media (max-width: 576px) {
    .section-block {
        padding: 56px 0;
    }

    .hero-section {
        padding-top: 30px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .mini-plan {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy,
    .hero-panel,
    .service-hero,
    .article-hero,
    .blog-hero-copy,
    .article-banner,
    .article-body,
    .contact-card,
    .story-panel {
        padding: 22px;
    }

    .service-hero-copy h1,
    .article-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.12;
    }

    .service-hero-note {
        padding: 20px;
        border-radius: 20px;
    }

    .service-list-card,
    .service-step {
        padding: 20px !important;
    }

    .service-step span {
        width: 38px;
        height: 38px;
        margin-bottom: 12px;
    }

    .contact-grid,
    .story-grid,
    .service-hero,
    .service-list-grid,
    .service-steps,
    .related-articles-grid {
        gap: 16px;
    }

    .article-breadcrumb {
        padding-left: 12px;
        padding-right: 12px;
    }

    .breadcrumb {
        font-size: .9rem;
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .ramadhan-bar {
        height: 36px;
    }

    .ramadhan-text {
        font-size: .84rem;
    }

    .wa-float {
        right: 16px;
        bottom: 16px;
    }
}


.article-chip {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(184, 92, 56, 0.1);
    color: var(--primary-dark);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-hero {
    display: block;
}

.blog-hero-copy,
.blog-hero-stats,
.empty-state {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
}

.blog-hero-copy {
    padding: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 100%);
}

.pagination-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.pagination-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(29, 36, 51, 0.08);
}

.pagination-link.is-active {
    background: linear-gradient(135deg, var(--primary) 0%, #d67b56 100%);
    color: #fff;
}

.empty-state {
    padding: 40px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.84);
}



.page-cta {
    margin-top: 32px;
}

.contact-grid,
.story-grid {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.contact-card,
.story-panel {
    height: 100%;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-list span {
    color: var(--muted);
    line-height: 1.7;
}


.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr);
    gap: 24px;
    padding: 34px;
    align-items: stretch;
}

.service-hero-copy p,
.service-hero-note span {
    font-size: 1.02rem;
}

.service-hero-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(18, 60, 105, 0.96) 0%, rgba(16, 31, 61, 0.92) 100%);
}

.service-hero-note strong,
.service-hero-note span {
    color: #fff;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-list-card,
.service-step {
    height: 100%;
}

.service-list-card strong,
.service-step strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.service-list-card span {
    color: var(--muted);
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(18, 60, 105, 0.08);
    color: var(--accent);
    font-weight: 800;
}

.article-top {
    padding-bottom: 20px;
}

.article-hero {
    padding: 38px;
}

.article-breadcrumb {
    max-width: 980px;
}

.article-shell {
    max-width: 1100px;
}

.article-frame {
    border: 1px solid rgba(255,255,255,0.66);
    box-shadow: var(--shadow);
}

.article-banner {
    padding: 34px;
    background: linear-gradient(160deg, rgba(18, 60, 105, 0.96) 0%, rgba(16, 31, 61, 0.92) 100%);
}

.article-banner-title,
.article-banner-copy {
    color: #fff;
}

.article-banner-title {
    max-width: 720px;
    margin: 12px 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.article-banner-copy {
    max-width: 680px;
    opacity: .92;
}

.article-body {
    padding: 34px;
}

.article-body p,
.article-body li {
    font-size: 1.02rem;
    line-height: 1.85;
}

.article-body h2,
.article-body h3 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.article-body ul,
.article-body ol {
    padding-left: 22px;
}

.article-highlight,
.article-cta {
    margin: 24px 0;
    padding: 20px 22px;
    border-radius: 22px;
}

.article-highlight {
    background: rgba(18, 60, 105, 0.06);
    border: 1px solid rgba(18, 60, 105, 0.08);
}

.article-highlight strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
}

.article-highlight span {
    color: var(--muted);
    line-height: 1.75;
}

.article-cta {
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.1) 0%, rgba(214, 123, 86, 0.12) 100%);
    border: 1px solid rgba(184, 92, 56, 0.12);
}

.related-articles {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(29, 36, 51, 0.08);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.related-article-card {
    display: block;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(29, 36, 51, 0.08);
    background: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(31, 35, 48, 0.08);
}

.related-article-card:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 92, 56, 0.25);
    box-shadow: 0 20px 44px rgba(31, 35, 48, 0.12);
}

.related-article-card strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
}

.related-article-card p {
    margin-bottom: 0;
    font-size: .96rem;
}

@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .contact-grid,
    .story-grid,
    .service-hero,
    .service-list-grid,
    .service-steps,
    .related-articles-grid {
        grid-template-columns: 1fr !important;
    }

    .service-hero,
    .hero-grid {
        gap: 18px !important;
    }

    .service-hero {
        padding: 28px !important;
    }

    .service-hero-note {
        min-height: auto !important;
    }
}

@media (max-width: 576px) {
    .hero-copy,
    .hero-panel,
    .service-hero,
    .article-hero,
    .blog-hero-copy,
    .article-banner,
    .article-body,
    .contact-card,
    .story-panel,
    .service-list-card,
    .service-step {
        padding: 22px !important;
    }

    .service-hero-copy h1,
    .article-hero h1 {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
        line-height: 1.12 !important;
    }

    .service-hero-note {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .service-step span {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 12px !important;
    }

    .article-breadcrumb {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .breadcrumb {
        font-size: .9rem !important;
        flex-wrap: wrap !important;
        row-gap: 6px !important;
    }

    .ramadhan-bar {
        height: 36px !important;
    }

    .ramadhan-text {
        font-size: .84rem !important;
    }
}

