/* =============================================
   SNADA STUDIO — MAIN CSS
   ============================================= */

:root {
    --oxford: #0f1f3d;
    --oxford-light: #1a2f52;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --teal: #1a8c8c;
    --off-white: #f8f7f4;
    --gray-100: #f1f0ed;
    --gray-200: #e2e0db;
    --gray-400: #a09e99;
    --gray-500: #6b6963;
    --gray-600: #4a4845;
    --gray-800: #1e1c1a;
    --text-body: #2d2b27;
    --text-light: #6b6963;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', 'Inter', system-ui, sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--oxford);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-sub {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--oxford);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,.35);
}

.btn-outline {
    background: transparent;
    color: var(--oxford);
    border-color: var(--oxford);
}

.btn-outline:hover {
    background: var(--oxford);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15,31,61,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 32px;
}

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

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--oxford);
    color: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
}

.site-header .logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.site-header .logo-placeholder {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--oxford);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 18px;
}

.logo-text em {
    font-style: italic;
    color: var(--teal);
}

.main-nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.header-cta-btn {
    padding: 10px 22px;
    font-size: 14px;
    margin-left: 8px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: auto;
    border-radius: 6px;
    transition: background var(--transition);
}

.hamburger-btn:hover {
    background: rgba(255,255,255,.1);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,.85);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE NAV
   ============================================= */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1099;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--oxford);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.mobile-nav-links {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    transition: all var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.mobile-nav-link.active {
    background: rgba(201,168,76,.12);
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: 12px;
    background: var(--gold);
    color: var(--oxford) !important;
    font-weight: 700;
    text-align: center;
}

.mobile-nav-cta:hover {
    background: var(--gold-light) !important;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    background: linear-gradient(135deg, var(--oxford) 0%, #1a2f52 60%, #0d2447 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(26,140,140,.25) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 65% 50%, rgba(44,79,140,.5) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,140,140,.2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 48px 80px;
    padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    z-index: 1;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-main-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal), #0a6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}

.hero-card-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

.hero-progress-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,.7);
}

.hero-progress-bar {
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.hero-mini-card {
    position: absolute;
    bottom: -24px;
    right: -20px;
    background: var(--oxford);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-mini-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-mini-label {
    font-size: 11px;
    color: rgba(255,255,255,.5);
}

.hero-mini-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

/* ── Browser Mockup ── */
.hero-browser {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    overflow: hidden;
    background: #18243f;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero-browser-bar {
    background: #202d4a;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.hero-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.hero-browser-url {
    flex: 1;
    background: rgba(0,0,0,.2);
    border-radius: 20px;
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,.4);
    padding: 3px 12px;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-browser-body { padding: 0; }
.hb-nav {
    height: 34px;
    background: #c9a84c;
    opacity: .9;
}
.hb-content {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hb-hero-block {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hb-line {
    background: rgba(255,255,255,.13);
    border-radius: 3px;
    display: block;
}
.hb-line-lg { height: 13px; }
.hb-line-sm { height: 8px; }
.hb-line-xs { height: 6px; }
.hb-btn {
    width: 76px;
    height: 20px;
    background: #c9a84c;
    border-radius: 4px;
    margin-top: 3px;
    opacity: .85;
}
.hb-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.hb-card {
    height: 48px;
    background: rgba(255,255,255,.06);
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,.05);
}
.hb-article {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-top: 2px;
}
.hb-article-thumb {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #1a8c8c;
    opacity: .75;
    flex-shrink: 0;
}
.hb-divider {
    height: 1px;
    background: rgba(255,255,255,.06);
}
.hb-article2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.hb-article2-thumb {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: rgba(201,168,76,.3);
    flex-shrink: 0;
}
.hb-footer {
    height: 28px;
    background: rgba(0,0,0,.25);
    margin: 4px -18px -16px;
}

/* =============================================
   TRUST STRIP
   ============================================= */

.trust-strip {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-strip-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.trust-strip-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-strip-logos span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

/* =============================================
   PROBLEM CARDS
   ============================================= */

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

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-top: 3px solid var(--oxford);
}

.problem-card-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(15,31,61,.08);
    margin-bottom: 12px;
}

.problem-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   SERVICES GRID
   ============================================= */

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--off-white);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(26,140,140,.1);
    color: var(--teal);
}

/* =============================================
   PORTFOLIO GRID
   ============================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--oxford);
}

.portfolio-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.portfolio-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.portfolio-card-body {
    padding: 24px;
}

.portfolio-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.portfolio-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--gray-100);
    color: var(--gray-600);
}

.portfolio-tag.featured {
    background: rgba(201,168,76,.15);
    color: #7a5c1a;
}

.portfolio-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.portfolio-card-metrics {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.portfolio-metric {
    display: flex;
    flex-direction: column;
}

.portfolio-metric-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--oxford);
}

.portfolio-metric-label {
    font-size: 11px;
    color: var(--text-light);
}

.portfolio-card-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    margin-top: 12px;
    transition: gap var(--transition);
}

.portfolio-card:hover .portfolio-card-arrow {
    gap: 10px;
}

/* =============================================
   BLOG GRID
   ============================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--oxford);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--oxford) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-category-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(26,140,140,.1);
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-read-time {
    font-size: 12px;
    color: var(--text-light);
}

.blog-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.blog-card:hover .blog-read-more {
    gap: 8px;
}

/* =============================================
   TENTANG PAGE
   ============================================= */
.tentang-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tentang-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tentang-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--oxford);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--oxford);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-light);
}

/* =============================================
   FAQ
   ============================================= */

/* =============================================
   PRICING PAGE
   ============================================= */

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
}

.pricing-card-featured {
    background: var(--oxford);
    border-color: var(--oxford);
    box-shadow: 0 16px 60px rgba(15,31,61,.25);
    transform: translateY(-8px);
}

.pricing-card-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 70px rgba(15,31,61,.3);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--oxford);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--oxford);
    line-height: 1;
}

.pricing-card-featured .pricing-price {
    color: var(--white);
}

.pricing-unit {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-card-featured .pricing-unit {
    color: rgba(255,255,255,.5);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-card-featured .pricing-desc {
    color: rgba(255,255,255,.6);
    border-bottom-color: rgba(255,255,255,.12);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.pricing-card-featured .pricing-feature-item {
    color: rgba(255,255,255,.85);
}

.pricing-check {
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
}

.pricing-card-featured .pricing-check {
    color: var(--gold);
}

/* Addon cards */
.addon-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.addon-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--oxford);
    text-align: left;
    cursor: pointer;
    background: var(--white);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--oxford);
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta-section {
    background: var(--oxford);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,140,140,.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-label {
    color: rgba(201,168,76,.8);
}

.cta-section .section-title {
    color: var(--white);
}

.cta-section .section-sub {
    color: rgba(255,255,255,.7);
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--oxford);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-brand .logo-img {
    height: 36px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.footer-brand .logo-placeholder {
    height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin: 12px 0 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--oxford);
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer-col {
    flex: 0 0 auto;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

.footer-bottom a {
    color: rgba(255,255,255,.35);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: rgba(255,255,255,.7);
}

/* =============================================
   UTILITY
   ============================================= */

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.badge-teal {
    background: rgba(26,140,140,.12);
    color: var(--teal);
}

.badge-gold {
    background: rgba(201,168,76,.15);
    color: #7a5c1a;
}

.badge-oxford {
    background: rgba(15,31,61,.1);
    color: var(--oxford);
}

.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-oxford { color: var(--oxford); }
.text-light { color: var(--text-light); }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */

.page-hero {
    background: var(--oxford);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(26,140,140,.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .section-label {
    color: rgba(201,168,76,.8);
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-title em {
    color: var(--gold);
    font-style: italic;
}

.page-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    max-width: 560px;
    line-height: 1.7;
}

/* =============================================
   FORM STYLES
   ============================================= */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--oxford);
}

.form-input,
.form-select,
.form-textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--oxford);
    box-shadow: 0 0 0 3px rgba(15,31,61,.08);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-error {
    font-size: 13px;
    color: #c0392b;
}

/* =============================================
   STATS STRIP
   ============================================= */

.stats-strip {
    background: var(--oxford);
    padding: 48px 0;
}

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

.stat-item-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-item-label {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-top: 6px;
}

/* =============================================
   PORTFOLIO DETAIL PAGE
   ============================================= */

.portfolio-detail-hero {
    background: var(--oxford);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(26,140,140,.2) 0%, transparent 70%);
}

.portfolio-detail-hero-img {
    width: 100%;
    border-radius: var(--radius-xl);
    aspect-ratio: 16/9;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-top: 40px;
}

.portfolio-detail-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 60px 0;
}

.portfolio-detail-content h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--oxford);
    margin: 32px 0 12px;
}

.portfolio-detail-content h2:first-child {
    margin-top: 0;
}

.portfolio-detail-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.portfolio-detail-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.portfolio-detail-content ul li {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 6px;
}

.portfolio-sidebar-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 88px;
}

.portfolio-sidebar-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 16px;
}

.portfolio-sidebar-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.portfolio-meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.portfolio-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--oxford);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.metric-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.metric-value {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--oxford);
}

.metric-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* =============================================
   BREADCRUMB
   ============================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: rgba(255,255,255,.9);
}

.breadcrumb-sep {
    opacity: 0.4;
}

/* =============================================
   ALERT / FLASH MESSAGES
   ============================================= */

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(26,140,100,.1);
    border: 1px solid rgba(26,140,100,.25);
    color: #0d6b43;
}

.alert-error {
    background: rgba(192,57,43,.1);
    border: 1px solid rgba(192,57,43,.25);
    color: #9b1e12;
}

/* =============================================
   PAGINATION
   ============================================= */

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
    text-decoration: none;
    background: var(--white);
}

.page-btn:hover {
    border-color: var(--oxford);
    color: var(--oxford);
}

.page-btn.active {
    background: var(--oxford);
    border-color: var(--oxford);
    color: var(--white);
}

/* =============================================
   ADMIN STYLES
   ============================================= */

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--oxford);
    padding: 24px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-logo {
    padding: 0 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 16px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.admin-content {
    padding: 40px;
    background: var(--off-white);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--oxford);
}

.admin-table {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--gray-100);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--off-white);
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 13px;
}

.btn-danger {
    background: #e74c3c;
    color: var(--white);
    border-color: #e74c3c;
}

.btn-danger:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* =============================================
   SINGLE ARTICLE PAGE
   ============================================= */

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 60px 0;
}

.article-content {
    min-width: 0;
}

.article-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--oxford);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.article-body h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oxford);
    margin: 32px 0 12px;
}

.article-body p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
}

.article-body ul, .article-body ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.article-body li {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 6px;
}

.article-body strong {
    font-weight: 700;
    color: var(--oxford);
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.article-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}

.sidebar-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--oxford);
    margin-bottom: 14px;
}

.related-post {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post:hover h5 {
    color: var(--teal);
}

.related-post h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--oxford);
    line-height: 1.4;
    transition: color var(--transition);
}

.related-post span {
    font-size: 12px;
    color: var(--text-light);
}

/* =============================================
   FILTERS
   ============================================= */

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 24px;
    border: 1.5px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--oxford);
    color: var(--oxford);
}

.filter-btn.active {
    background: var(--oxford);
    border-color: var(--oxford);
    color: var(--white);
}

/* =============================================
   EMPTY STATE
   ============================================= */

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--oxford);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-light);
}
