/* Stylesheet utama BuatWebsiteKu */

:root {
    --color-bg: #ffffff;
    --color-text: #1f2430;
    --color-muted: #5b6472;
    --color-primary: #2f6feb;
    --color-primary-dark: #1d4fb8;
    --color-border: #e5e8ee;
    --color-surface: #f7f8fa;
    --radius: 8px;
    --max-width: 1120px;

    --color-navy: #064EA6;
    --color-navy-light: #0B63CC;
    --color-orange: #ff8a1f;
    --color-orange-dark: #e97300;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    line-height: 1.25;
    margin: 0 0 0.5em;
}

p {
    margin: 0 0 1em;
}

/* Navbar */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(220deg, #66ccff, #1152d4);
    border-radius: 0;
    box-shadow: none;
    transition: border-radius 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
    border-radius: 0 0 24px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.site-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle:hover {
    background: none;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav .brand {
    display: flex;
    align-items: center;
}

.site-nav .brand:hover {
    text-decoration: none;
}

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
}

.site-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.site-nav ul a,
.site-nav ul .nav-dropdown-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #dfe3f5;
    font-weight: 500;
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.site-nav ul a::after,
.site-nav ul .nav-dropdown-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 1px;
    background: var(--color-orange);
    transition: width 0.25s ease;
}

.site-nav ul a:hover,
.site-nav ul .nav-dropdown-trigger:hover {
    text-decoration: none;
    color: var(--color-orange);
}

.site-nav ul a:hover::after,
.site-nav ul .nav-dropdown-trigger:hover::after {
    width: 100%;
}

.nav-dropdown-parent {
    position: relative;
}

.nav-dropdown-trigger svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.nav-dropdown-parent.is-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

/* Wrapper mencakup jarak/gap juga (transparan) supaya hover tidak putus
   saat kursor bergerak dari link menuju panel dropdown di bawahnya. */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.6rem;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown-parent:hover .nav-dropdown,
.nav-dropdown-parent:focus-within .nav-dropdown,
.nav-dropdown-parent.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-list {
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-nav .nav-dropdown-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    color: var(--color-text);
    font-weight: 500;
}

.nav-badge {
    display: inline-block;
    flex: 0 0 auto;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #fff;
    animation: nav-badge-blink 1.4s ease-in-out infinite;
}

.nav-badge-hot {
    background: #e5484d;
}

.nav-badge-new {
    background: #0b63cc;
}

.nav-badge-rank {
    background: #0f6848;
}

@keyframes nav-badge-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-badge {
        animation: none;
    }
}

.site-nav .nav-dropdown-list a::after {
    display: none;
}

.site-nav .nav-dropdown-list a:hover {
    background: var(--color-surface);
    color: var(--color-orange);
}

/* Generic page sections (fallback sizing — component sections below override this) */

.page-kontak,
section:not(.hero) {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Utilities */

.text-center {
    text-align: center;
}

.text-accent {
    color: #ffa940;
}

.js-typewriter {
    display: inline-block;
}

.js-typewriter::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    color: #000;
    font-weight: 300;
    animation: caret-blink 1s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .js-typewriter::after {
        animation: none;
    }
}

@keyframes caret-blink {
    50% {
        opacity: 0;
    }
}

.eyebrow {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
}

.eyebrow-light {
    color: #ffb020;
}

.lead-muted {
    color: var(--color-muted);
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--color-orange);
    color: #fff;
}

.btn-accent:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 10px 20px rgba(255, 138, 31, 0.3);
}

.btn-outline {
    border-color: var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero */

.hero {
    background: linear-gradient(220deg, #66ccff, #1152d4);
    padding: 4rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70px;
    width: 130%;
    height: 140px;
    background: var(--color-bg);
    border-radius: 50%;
    transform: translateX(-50%);
}

.hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #fff;
}

.hero-lead {
    color: #eaf3ff;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-page {
    padding-bottom: 5.5rem;
}

.hero-page h1 {
    font-size: 2.1rem;
}

/* Breadcrumb & meta row di hero artikel */

.article-breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: #cfe0ff;
    font-size: 0.85rem;
    margin: 0 0 1rem;
}

.article-breadcrumb a {
    color: #cfe0ff;
}

.article-breadcrumb a:hover {
    color: #fff;
}

.article-breadcrumb-current {
    color: #fff;
    font-weight: 600;
}

.article-meta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #dfe3f5;
    font-size: 0.85rem;
}

.article-meta-item svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Portfolio detail page */

section.portfolio-detail {
    max-width: 760px;
    text-align: center;
}

.portfolio-detail .split-image {
    margin-bottom: 2rem;
}

.portfolio-detail-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Blog */

.blog-index-header {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
}

.blog-index-header h1 {
    font-size: 2.3rem;
    color: var(--color-navy);
}

.blog-search-form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    max-width: 520px;
    margin: 1.5rem auto 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.blog-search-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: 0;
    background: #fff;
}

.blog-search-form button {
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 0;
    padding: 0 1.25rem;
    margin: 0;
}

.blog-search-form button:hover {
    background: var(--color-primary-dark);
}

.blog-search-form button svg {
    width: 20px;
    height: 20px;
}

.blog-filter-bar {
    background: var(--color-surface);
    box-shadow: 0 0 0 100vmax var(--color-surface);
    clip-path: inset(0 -100vmax);
}

.blog-filter-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-filter-select-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    max-width: none;
}

.blog-filter-select-form label {
    font-weight: 600;
    color: var(--color-text);
}

.blog-filter-select-form select {
    font: inherit;
    padding: 0.5rem 2.2rem 0.5rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 16px;
}

.blog-filter-count {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.blog-filter-count a {
    color: var(--color-orange);
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    text-align: left;
}

.blog-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

/* Layout blog: konten utama + sidebar */

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Pagination */

.blog-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.blog-pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    font-weight: 600;
    background: #fff;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination-item:hover {
    text-decoration: none;
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.blog-pagination-item.is-active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}

.blog-pagination-arrow svg {
    width: 16px;
    height: 16px;
}

/* Sidebar widgets */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.blog-sidebar-widget {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.blog-sidebar-title {
    margin: 0 0 1.1rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
}

.blog-sidebar-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-sidebar-recent-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.blog-sidebar-recent-thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.blog-sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar-recent-thumb svg {
    width: 22px;
    height: 22px;
}

.blog-sidebar-recent-info {
    min-width: 0;
}

.blog-sidebar-recent-name {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sidebar-recent-list a:hover .blog-sidebar-recent-name {
    color: var(--color-primary);
}

.blog-sidebar-recent-date {
    display: block;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.blog-sidebar-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.blog-sidebar-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.blog-sidebar-category-list li:last-child a {
    border-bottom: none;
}

.blog-sidebar-category-list a:hover,
.blog-sidebar-category-list a.is-active {
    color: var(--color-primary);
}

.blog-sidebar-count {
    background: var(--color-surface);
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    padding: 0 0.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-sidebar-tags .tag-pill {
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-sidebar-tags .tag-pill:hover,
.blog-sidebar-tags .tag-pill.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.blog-card {
    display: block;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    color: inherit;
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(6, 78, 166, 0.14);
}

/* Kartu artikel tidak boleh ikut gaya link bawaan (biru + underline) sama sekali,
   baik dalam keadaan normal maupun hover — termasuk semua teks di dalamnya. */
.blog-card,
.blog-card:hover,
.blog-card:visited,
.blog-card * {
    text-decoration: none !important;
}

.blog-card-title {
    color: var(--color-text);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-primary);
}

.blog-card-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    color: #fff;
}

.blog-card-thumb svg {
    width: 48px;
    height: 48px;
}

.blog-card-thumb-image {
    padding: 0;
}

.blog-card-thumb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-thumb-blue { background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy)); }
.blog-card-thumb-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.blog-card-thumb-orange { background: linear-gradient(135deg, #ffb066, var(--color-orange)); }
.blog-card-thumb-green { background: linear-gradient(135deg, #4ade80, #16a34a); }

.blog-card-body {
    padding: 1.5rem;
}

.blog-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.blog-badge-blue { background: #e5edff; color: var(--color-navy); }
.blog-badge-purple { background: #f1e9ff; color: #7c3aed; }
.blog-badge-orange { background: #ffe9d2; color: var(--color-orange-dark); }
.blog-badge-green { background: #dcfce7; color: #16a34a; }

.blog-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
}

.blog-card-excerpt {
    color: var(--color-muted);
    font-size: 0.92rem;
    margin: 0 0 1rem;
}

.blog-card-date {
    color: var(--color-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* Kartu blog versi besar (halaman daftar blog) */

.blog-card-large .blog-card-thumb {
    height: 220px;
}

.blog-card-large .blog-card-thumb svg {
    width: 60px;
    height: 60px;
}

.blog-card-large .blog-card-body {
    padding: 1.75rem;
}

.blog-card-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.85rem;
}

.blog-card-meta-row .blog-badge {
    margin-bottom: 0;
}

.blog-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.blog-card-meta-item svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.blog-card-title-large {
    font-size: 1.3rem;
}

.article-draft-banner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    font-size: 0.9rem;
    text-align: center;
}

section.article-detail {
    max-width: 760px;
}

.article-detail-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 1.75rem;
}

/* Isi artikel dibaca dari kiri seperti blog pada umumnya — jangan ikut
   text-align:center bawaan .content-section (itu hanya untuk blurb pendek). */
.article-detail-body {
    text-align: left;
}

.article-detail-body h2,
.article-detail-body h3,
.article-detail-body h4 {
    text-align: left;
    margin: 1.75rem 0 1rem;
}

.article-detail-body ul,
.article-detail-body ol {
    text-align: left;
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.article-detail p,
.article-detail-body p {
    color: var(--color-text);
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.article-detail-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.article-tags-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.92rem;
}

.tag-pill {
    display: inline-block;
    background: var(--color-surface);
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.article-share-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.92rem;
}

.article-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-share-btn svg {
    width: 18px;
    height: 18px;
}

.article-share-count {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.05rem 0.5rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.article-share-btn:hover {
    transform: translateY(-2px);
}

.article-share-wa {
    background: #25d366;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}

.article-share-fb {
    background: #1877f2;
    box-shadow: 0 8px 18px rgba(24, 119, 242, 0.3);
}

/* Service cards (floating over hero) */

section.service-cards {
    max-width: var(--max-width);
    margin: -3.5rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(24, 42, 110, 0.12);
    padding: 2rem 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(6, 78, 166, 0.1);
}

.service-icon {
    position: relative;
    width: 96px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: border-color 0.25s ease;
}

.service-card:hover .service-icon {
    border-color: var(--color-orange);
}

.service-icon-dots {
    display: flex;
    gap: 4px;
}

.service-icon-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c7cbe8;
    display: inline-block;
}

.service-icon-lines span {
    display: block;
    height: 5px;
    border-radius: 3px;
    background: #c7cbe8;
    margin-bottom: 4px;
}

.service-icon-lines span:last-child {
    width: 60%;
    margin-bottom: 0;
}

.service-icon-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-orange);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.service-icon-badge svg {
    width: 16px;
    height: 16px;
}

.service-icon-badge-blue { background: #2f6feb; }
.service-icon-badge-orange { background: var(--color-orange); }
.service-icon-badge-purple { background: #8b5cf6; }
.service-icon-badge-green { background: #16a34a; }

/* Keunggulan (advantages) section */

.adv-title {
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adv-subtitle {
    color: var(--color-text);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.adv-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(6, 78, 166, 0.14);
}

.adv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: #fdeee0;
    color: var(--color-orange);
}

.adv-icon svg {
    width: 22px;
    height: 22px;
}

.adv-card-title {
    color: var(--color-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin: 0 0 0.75rem;
}

.adv-card-desc {
    color: var(--color-muted);
    margin: 0;
}

/* Feature grid */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.feature-card.is-featured {
    border-color: var(--color-navy);
    box-shadow: 0 16px 32px rgba(6, 78, 166, 0.14);
    transform: translateY(-4px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: #fff;
    box-shadow: 0 6px 14px rgba(6, 78, 166, 0.25);
    animation: feature-icon-pulse 2.6s ease-in-out infinite;
    transition: transform 0.35s ease;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(-8deg);
}

@keyframes feature-icon-pulse {
    0%, 100% {
        box-shadow: 0 6px 14px rgba(6, 78, 166, 0.25), 0 0 0 0 rgba(11, 99, 204, 0.35);
    }
    50% {
        box-shadow: 0 6px 14px rgba(6, 78, 166, 0.25), 0 0 0 8px rgba(11, 99, 204, 0);
    }
}

.feature-icon.feature-icon-gif {
    width: 68px;
    height: 68px;
    background: none;
    box-shadow: none;
    animation: none;
    border-radius: 0;
}

.feature-icon.feature-icon-gif img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card:hover .feature-icon.feature-icon-gif {
    transform: scale(1.08);
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 0.8s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(7) .feature-icon { animation-delay: 1.2s; }
.feature-card:nth-child(8) .feature-icon { animation-delay: 1.4s; }

@media (prefers-reduced-motion: reduce) {
    .feature-icon {
        animation: none;
    }
}

.feature-card-title {
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 0.4rem;
}

.feature-card-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Split (text + visual) sections */

section.split-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.split-section-reverse {
    flex-direction: row-reverse;
}

.split-text,
.split-visual {
    flex: 1 1 320px;
}

.split-text h2 {
    font-size: 1.9rem;
}

.split-text p {
    color: var(--color-muted);
}

.split-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.split-illustration {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-services-title {
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.about-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-services-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text);
}

.about-services-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual-decorated {
    position: relative;
}

.split-visual-decorated::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, #f2f7ff 0%, #dcebff 55%, rgba(220, 235, 255, 0) 75%);
    border-radius: 50%;
    filter: blur(20px);
    transform: translate(-50%, -50%);
    animation: float-blob 6s ease-in-out infinite;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-52%, -55%) scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .split-visual-decorated::before {
        animation: none;
    }
}

.mock-window-bar {
    display: flex;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.15);
}

.mock-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

/* Generic content sections */

section.content-section {
    text-align: center;
    max-width: var(--max-width);
    margin: 3rem auto;
    padding: 3rem 1.5rem;
}

.content-section-muted {
    background: var(--color-surface);
    box-shadow: 0 0 0 100vmax var(--color-surface);
    clip-path: inset(0 -100vmax);
}

.content-section h2 {
    font-size: 1.9rem;
}

/* Artikel Terkait (halaman detail blog) */

.related-articles {
    max-width: var(--max-width);
}

.related-articles .blog-grid {
    margin-top: 2rem;
    text-align: left;
}

.related-articles-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Halaman 404 (full-page, tanpa nav & footer situs) */

.page-404-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    padding: 1.5rem;
}

.page-404 {
    max-width: 560px;
    margin: 0 auto;
}

.page-404-illustration {
    width: 170px;
    margin: 0 auto 1.5rem;
    animation: page-404-float 3s ease-in-out infinite;
}

.page-404-illustration svg {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes page-404-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.page-404 h1 {
    margin: 0 0 0.75rem;
}

.page-404-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Pricing */

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.price-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 36px rgba(6, 78, 166, 0.18);
}

.price-card-header {
    background: var(--color-navy);
    padding: 1.5rem 1rem;
    text-align: center;
}

.price-card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
}

.price-card-title a {
    color: inherit;
    text-decoration: none;
}

.price-card-title a:hover {
    text-decoration: underline;
}

.price-card-label {
    color: #dfe3f5;
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
}

.price-card-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.price-card-price {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-navy);
    margin: 0;
}

.price-currency {
    font-size: 0.85rem;
    font-weight: 700;
    vertical-align: top;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
}

.price-card-desc {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin: 0;
}

.price-card .btn {
    margin-top: auto;
}

/* Spec pricing table (paket detail) */

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: start;
    padding-top: 22px;
}

@media (max-width: 980px) {
    .spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

.spec-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(6, 78, 166, 0.16);
}

.spec-card-header {
    padding: 0.9rem 1rem;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.spec-card.is-highlight {
    border-width: 2px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.spec-card.is-highlight:hover {
    transform: translateY(-8px);
}

.spec-card.spec-highlight-gold {
    border-color: #f2b705;
}

.spec-card.spec-highlight-purple {
    border-color: #8b3dd1;
}

.spec-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.spec-badge-gold {
    background: linear-gradient(135deg, #f2b705, #e5a100);
}

.spec-badge-purple {
    background: linear-gradient(135deg, #a855f7, #8b3dd1);
}

.spec-header-green { background: #22a55e; }
.spec-header-cyan { background: #06b6d4; }
.spec-header-gold { background: #f2b705; }
.spec-header-purple { background: #8b3dd1; }
.spec-header-red { background: #e5484d; }

.spec-card-price {
    text-align: center;
    color: var(--color-navy);
    font-weight: 800;
    font-size: 1.9rem;
    margin: 1.25rem 0 0.5rem;
}

.spec-list {
    list-style: none;
    margin: 0.5rem 0 1.5rem;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.spec-list li {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text);
}

.spec-label {
    font-weight: 700;
}

.spec-yes,
.spec-no {
    font-size: 0.85rem;
}

.spec-cta {
    display: block;
    text-align: center;
    margin: 0 1.5rem 1.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: var(--color-orange);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.spec-cta:hover {
    background: var(--color-orange-dark);
    box-shadow: 0 10px 20px rgba(255, 138, 31, 0.3);
}

/* Discount pricing table (paket diskon) */

.discount-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
    padding-top: 22px;
}

@media (max-width: 980px) {
    .discount-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .discount-grid {
        grid-template-columns: 1fr;
    }
}

.discount-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discount-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(6, 78, 166, 0.16);
}

.discount-card.is-highlight {
    border-width: 2px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

.discount-card.is-highlight:hover {
    transform: translateY(-8px);
}

.discount-card.discount-highlight-gold {
    border-color: #f2b705;
}

.discount-card.discount-highlight-purple {
    border-color: #8b3dd1;
}

.discount-card-header {
    padding: 0.9rem 1rem;
    text-align: center;
    color: #fff;
    background: var(--color-navy);
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.discount-header-red {
    background: #e5484d;
}

.discount-price-before {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.78rem;
    margin: 0.5rem 0 0;
}

.discount-card-title {
    text-align: center;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.15rem;
    margin: 1.25rem 1rem 0.75rem;
}

.discount-price-old {
    text-align: center;
    color: #e5484d;
    text-decoration: line-through;
    font-size: 0.95rem;
    margin: 0;
}

.discount-price-new {
    text-align: center;
    color: var(--color-navy);
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0.15rem 0 0;
}

.discount-price-note {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.78rem;
    margin: 0 0 0.5rem;
}

.discount-feature-list {
    list-style: none;
    margin: 1rem 1.5rem 1rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.discount-feature-list li {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text);
}

.discount-feature-list li strong {
    display: inline-block;
    color: var(--color-navy);
    background: #eef5ff;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.discount-suitable {
    text-align: center;
    font-style: italic;
    color: var(--color-muted);
    font-size: 0.82rem;
    margin: 0 1.5rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--color-border);
}

/* Floating WhatsApp button */

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: wa-float-pulse 2.4s ease-in-out infinite;
}

.wa-float svg {
    width: 28px;
    height: 28px;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

@keyframes wa-float-pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float {
        animation: none;
    }
}

@media (max-width: 560px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .wa-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Teknologi yang Kami Gunakan */

.tech-section {
    background: #142a52;
    box-shadow: 0 0 0 100vmax #142a52;
    clip-path: inset(0 -100vmax);
}

.tech-section h2 {
    color: #fff;
}

.tech-marquee {
    overflow: hidden;
    margin-top: 2rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 3rem;
    animation: clients-marquee-scroll 45s linear infinite;
}

.tech-marquee:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

.tech-item:hover {
    opacity: 1;
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
}

.tech-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.tech-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
}

.tech-icon.tech-icon-wordmark {
    width: auto;
    height: 26px;
}

.tech-icon.tech-icon-wordmark svg {
    width: auto;
    height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .tech-track {
        animation: none;
    }
}

/* Social media plan cards (paket sosmed, tanpa header berwarna) */

.social-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(6, 78, 166, 0.16);
}

.social-card-title {
    text-align: center;
    color: var(--color-navy);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
}

.social-card-price {
    text-align: center;
    color: var(--color-navy);
    font-weight: 800;
    font-size: 1.9rem;
    margin: 0;
}

.social-card-period {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.8rem;
    margin: 0 0 1rem;
}

.social-feature-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.social-feature-list li {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text);
}

.social-feature-list li.is-muted {
    color: #e0932f;
}

.social-feature-list li.is-bonus {
    color: #1a9e6b;
    font-weight: 600;
}

.social-feature-list li.is-studio {
    color: #0b63cc;
}

.social-feature-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.35rem 1.5rem;
}

/* Klien Kami — logo marquee */

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffe0c2;
    transition: background 0.25s ease, transform 0.25s ease;
}

.testimonial-dot.is-active {
    background: var(--color-orange);
    transform: scale(1.25);
}

.clients-marquee-plain {
    margin-top: 4rem;
}

.clients-marquee {
    overflow: hidden;
    margin-top: 2rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2.5rem;
    animation: clients-marquee-scroll 28s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.clients-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 160px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.85rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clients-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.clients-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes clients-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}

/* Process */

.process-heading {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto 2rem;
    font-size: 1.9rem;
}

.process-wrap {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    text-align: left;
    flex-wrap: wrap;
}

.process-visual {
    flex: 1 1 320px;
}

.process-mock {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    max-width: 420px;
}

.process-mock-body {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.process-mock-panel {
    flex: 1;
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-mock-line {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(6, 78, 166, 0.18);
    width: 80%;
}

.process-mock-accent {
    display: block;
    height: 6px;
    width: 35%;
    border-radius: 3px;
    background: var(--color-orange);
}

.process-mock-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.process-mock-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.process-mock-support {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1.1;
}

.process-mock-support small {
    font-size: 0.65rem;
    color: var(--color-muted);
}

.process-mock-tile {
    flex: 1;
    height: 64px;
    border-radius: var(--radius);
    background: var(--color-surface);
}

.process-steps {
    flex: 1 1 380px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-step-item {
    display: block;
    width: 100%;
    background: var(--color-surface);
    border: none;
    border-radius: var(--radius);
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.process-step-item.is-active {
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.process-step-item:hover {
    background: var(--color-surface);
}

.process-step-item.is-active:hover {
    background: #fff;
}

.process-step-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.process-step-check {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-title {
    font-weight: 700;
    color: var(--color-text);
}

.process-step-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.process-step-item.is-active .process-step-body-wrap {
    grid-template-rows: 1fr;
}

.process-step-body-inner {
    overflow: hidden;
}

.process-step-body {
    display: block;
    padding: 0 1.25rem 1.25rem 3.25rem;
    color: var(--color-muted);
    font-size: 0.92rem;
}

/* Portfolio */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-card {
    display: block;
    text-align: left;
    color: inherit;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    text-decoration: none;
    color: inherit;
}

.portfolio-thumb {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-title {
    margin: 0.75rem 0 0;
    font-weight: 600;
    text-align: center;
}

/* Testimonials */

.testimonial-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    transition: transform 0.6s ease;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 300px;
    text-align: left;
    background: linear-gradient(160deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-navy);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(6, 78, 166, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(6, 78, 166, 0.18);
    border-top-color: var(--color-orange);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -0.75rem;
    right: 0.75rem;
    font-size: 5rem;
    font-weight: 700;
    font-family: Georgia, serif;
    color: rgba(6, 78, 166, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 auto;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(6, 78, 166, 0.25);
}

.testimonial-name {
    margin: 0;
    font-weight: 700;
}

.testimonial-stars {
    margin: 0;
    color: var(--color-orange);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonial-card p:last-child {
    color: var(--color-muted);
    margin: 0;
    position: relative;
    font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track {
        transition: none;
    }
}

/* FAQ */

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    display: block;
    width: 100%;
    background: var(--color-surface);
    color: var(--color-text);
    border: none;
    border-radius: var(--radius);
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-active {
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background: var(--color-surface);
}

.faq-item.is-active:hover {
    background: #fff;
}

.faq-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.faq-item-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.is-active .faq-item-icon {
    transform: rotate(180deg);
}

.faq-item-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-active .faq-item-body-wrap {
    grid-template-rows: 1fr;
}

.faq-item-body-inner {
    overflow: hidden;
}

.faq-item-body {
    display: block;
    padding: 0 1.5rem 1.25rem;
    color: var(--color-muted);
    font-weight: 400;
}

/* Responsive */

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 1.5rem;
        right: 1.5rem;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: var(--radius);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        padding: 0.5rem;
        z-index: 10;
    }

    .site-nav ul.is-open {
        display: flex;
    }

    .site-nav ul li {
        width: 100%;
    }

    .site-nav ul a,
    .site-nav ul .nav-dropdown-trigger {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.6rem 0.75rem;
        color: var(--color-text);
    }

    .site-nav ul a:hover,
    .site-nav ul .nav-dropdown-trigger:hover {
        color: var(--color-orange);
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
        padding: 0 0 0 1rem;
    }

    .nav-dropdown-parent.is-open .nav-dropdown {
        grid-template-rows: 1fr;
    }

    .site-nav .nav-dropdown-list {
        display: flex;
        position: static;
        overflow: hidden;
        min-height: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 0;
    }

    .site-nav .nav-dropdown-list a {
        padding: 0.45rem 0.75rem;
        font-size: 0.9rem;
        color: var(--color-muted);
    }

    section.split-section {
        flex-direction: column;
    }

    section.split-section-reverse {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    section.service-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -2.5rem;
        gap: 1rem;
    }

    .service-icon {
        width: 100%;
        max-width: 96px;
        margin: 0 auto;
    }

    .hero {
        padding: 3rem 1.25rem 5rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-lead {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    section.service-cards {
        grid-template-columns: 1fr 1fr;
        padding: 1.25rem 1rem;
    }

    .split-text h2,
    section.content-section h2 {
        font-size: 1.5rem;
    }

    .process-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-columns {
        text-align: left;
    }
}

/* Kontak */

.kontak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    text-align: left;
    align-items: start;
}

.kontak-list {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.kontak-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kontak-list-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--color-orange);
}

.kontak-list a {
    color: var(--color-text);
}

.kontak-list a:hover {
    color: var(--color-orange);
}

.kontak-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.kontak-map iframe {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
}

.kontak-form-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.kontak-form-card form {
    max-width: none;
    margin-top: 1.25rem;
}

.kontak-form-card h2 {
    margin: 0;
}

.kontak-form-lead {
    color: var(--color-text-light, #6b7280);
    margin-top: 0.5rem;
}

.kontak-wa-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.kontak-wa-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.kontak-wa-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.kontak-wa-form .required {
    color: #e11d48;
}

.kontak-wa-form input,
.kontak-wa-form select {
    font: inherit;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    color: var(--color-text);
    width: 100%;
}

.kontak-wa-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 18px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.kontak-wa-form input:focus,
.kontak-wa-form select:focus {
    outline: none;
    border-color: #0f6848;
    box-shadow: 0 0 0 3px rgba(15, 104, 72, 0.12);
}

.kontak-wa-form select:invalid {
    color: #6b7280;
}

.btn-wa-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    align-self: stretch;
    color: #fff;
    background: #0f6848;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: background 0.2s ease;
}

.btn-wa-submit svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.btn-wa-submit:hover {
    background: #0b5539;
}

@media (max-width: 560px) {
    .kontak-wa-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Forms */

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
}

input,
textarea {
    font: inherit;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-surface);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    font: inherit;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius);
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    align-self: flex-start;
}

button:hover {
    background: var(--color-primary-dark);
}

/* Footer */

.site-footer {
    background: var(--color-navy);
    color: #cdd3ec;
    font-size: 0.9rem;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-columns {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-col p {
    margin: 0 0 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #cdd3ec;
    max-width: 320px;
}

.footer-contact {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--color-orange);
}

.footer-contact a {
    color: #cdd3ec;
}

.footer-contact a:hover {
    text-decoration: none;
    color: var(--color-orange);
}

.footer-col-title {
    color: #fff;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #cdd3ec;
}

.footer-col a:hover {
    text-decoration: none;
    color: var(--color-orange);
}

.footer-social li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social li a:hover {
    text-decoration: none;
}

.footer-social-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social li a:hover .footer-social-icon {
    background: var(--color-orange);
    color: #fff;
}

.footer-copyright {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}
