@font-face {
    font-family: 'MomoTrustSans';
    src: url('../fonts/MomoTrustSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Palette utama — turunan dari #29cdbc (teal) */
    --teal-700: #1a9e90;   /* teal gelap — navbar, footer bg */
    --teal-600: #22b5a5;   /* teal vivid — hover, gradient */
    --teal-500: #29cdbc;   /* teal segar — tombol, link */
    --teal-300: #9de8e2;   /* teal muda — aksen, border, badge */
    --white: #ffffff;
    --cream: #f0fdfb;        /* near-white teal tint — background */
    --tint-50: #edfaf9;    /* sangat terang — bg metric/pill */
    --tint-100: #e3f6f5;   /* terang — bg gradient akhir */
    --border-light: #b8e2df; /* border tipis — card, metric */
    --border-medium: #9fd8d4; /* border hover */
    --color-rgb: 41, 205, 188; /* RGB primary — untuk rgba() */
    --slate-900: #1f2937;
    --slate-700: #374151;
    --slate-500: #6b7280;
    --slate-400: #9ca3af;
    --shadow-sm: 0 2px 8px rgba(41, 205, 188, 0.09);
    --shadow: 0 12px 34px rgba(41, 205, 188, 0.15);
    --shadow-lg: 0 24px 60px rgba(41, 205, 188, 0.18);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

/* Ionicons: pastikan elemen custom element ter-render dengan benar */
ion-icon {
    display: inline-block;
    pointer-events: none;
    flex-shrink: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--slate-900);
    background: linear-gradient(165deg, #fdfffe 0%, #f0fdfb 35%, #e8faf8 70%, #d9f5f2 100%);
    min-height: 100vh;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 72px 0;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f07a10" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23p)"/></svg>');
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin: 0 0 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: #1a2634;
}

.section-lead {
    margin: 0 0 28px;
    color: var(--slate-700);
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--color-rgb), 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand strong {
    display: block;
    color: var(--teal-700);
    font-size: 1.8rem;
    font-family: 'MomoTrustSans', sans-serif;
}

.brand small {
    display: block;
    color: var(--slate-500);
    line-height: 0.4;
    font-size: 0.6rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand:hover .brand-icon {
    transform: scale(1.05) rotate(-5deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    color: var(--slate-700);
    font-weight: 600;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--teal-700);
    border-color: var(--teal-500);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--teal-700);
    font-size: 1.8rem;
}

.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(140deg, var(--teal-600), var(--teal-500));
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(var(--color-rgb), 0.25);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    background: var(--white);
    color: var(--teal-700);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--teal-500);
    background: var(--cream);
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* Tombol CTA di navbar — override border-bottom dari .main-nav a */
.main-nav .nav-cta,
.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
    border-bottom: none;
    color: var(--white);
    padding: 9px 20px;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
}
.main-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--color-rgb), 0.3);
}

.hero {
    padding: 78px 0 56px;
    background: linear-gradient(135deg, rgba(var(--color-rgb), 0.02) 0%, rgba(204, 93, 0, 0.01) 100%);
    /* background-image: url('/upgden/assets/images/hero-pattern.jpeg'), linear-gradient(135deg, rgba(var(--color-rgb), 0.02) 0%, rgba(204, 93, 0, 0.01) 100%); */
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    border-bottom: 1px solid rgba(var(--color-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--color-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 93, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.hero-card {
    background: #fafafae0;
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 30px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: slideInRight 0.7s ease-out 0.2s both;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--color-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-500) 60%, #29cdbc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
}

.hero p {
    margin: 0 0 24px;
    color: var(--slate-700);
    max-width: 680px;
    font-size: 1.1rem;
    line-height: 1.7;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.pill {
    background: linear-gradient(135deg, var(--tint-50) 0%, var(--tint-100) 100%);
    border: 1.4px solid var(--border-light);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 0.9rem;
    color: var(--teal-700);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.pill:hover {
    border-color: var(--border-medium);
    background: linear-gradient(135deg, var(--cream) 0%, #fefffd 100%);
    transform: translateY(-2px);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.metric {
    background: linear-gradient(135deg, var(--tint-50) 0%, var(--tint-100) 100%);
    border-radius: 14px;
    padding: 18px;
    border: 1.4px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--color-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.metric:hover {
    border-color: var(--border-medium);
    box-shadow: 0 6px 20px rgba(var(--color-rgb), 0.12);
}

.metric strong {
    display: block;
    font-size: 1.65rem;
    color: var(--teal-700);
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.metric span {
    color: var(--slate-700);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1.2px solid var(--border-light);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(var(--color-rgb), 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.card-service,
.card-article {
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color-rgb), 0.05), transparent);
    transition: left 0.5s ease;
}

.card:hover {
    border-color: var(--border-medium);
    box-shadow: 0 12px 28px rgba(var(--color-rgb), 0.14);
    transform: translateY(-8px);
}

.card:hover::before {
    left: 100%;
}

.card h3 {
    margin: 0;
    color: var(--teal-700);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
}

.card p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.65;
    font-size: 0.95rem;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.card-body > .btn,
.card-body > .pill-row {
    margin-top: auto;
}

.service-image,
.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px 14px 0 0;
    display: block;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    transition: transform 0.3s ease;
}

.card:hover .service-image,
.card:hover .article-image {
    transform: scale(1.02);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--slate-500);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.article-meta ion-icon {
    font-size: 0.9rem;
}

.icon-chip {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(140deg, var(--teal-600), var(--teal-500));
    font-size: 1.5rem;
    box-shadow: 0 6px 18px rgba(46, 144, 96, 0.22);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    align-self: flex-start;
}

.icon-chip ion-icon {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.icon-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .icon-chip {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(46, 144, 96, 0.3);
}

/* ── Google Maps-style Review Cards ──────────────────────────────────────── */
.section-reviews {
    background: var(--gray-50, #f9fafb);
}

.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid #dadce0;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #3c4043;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    white-space: nowrap;
}

.reviews-google-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-left: 8px;
    border-left: 1px solid #dadce0;
}

.reviews-google-stars {
    color: #F9AB00;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Google Maps Review Card */
.gmap-review-card {
    background: var(--white);
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06), 0 0 1px rgba(0,0,0,.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.gmap-review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.11), 0 0 1px rgba(0,0,0,.07);
    transform: translateY(-3px);
}

.gmap-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gmap-avatar-wrap {
    flex-shrink: 0;
}

.gmap-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.gmap-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.gmap-review-meta {
    flex: 1;
    min-width: 0;
}

.gmap-reviewer-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #202124;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gmap-review-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
    align-items: center;
}

.gmap-google-icon {
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.8;
}

.gmap-review-text {
    color: #3c4043;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.gmap-review-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--slate-500);
    margin-top: 4px;
}

/* Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    padding: 8px 0 4px;
    cursor: grab;
    user-select: none;
}

.testimonial-slider.dragging {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-track.no-transition {
    transition: none;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 640px) {
    .testimonial-slide {
        flex: 0 0 85%;
    }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #b8e0c3;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.testimonial-dot.active {
    background: var(--teal-500);
    width: 24px;
    border-radius: 4px;
}

.section-cta {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

/* Maps section */
.section-maps .maps-embed {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
    line-height: 0;
}
.section-maps .maps-embed iframe {
    display: block;
    width: 100%;
}

.band {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 50%, var(--teal-600) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 50px rgba(46, 144, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.band .pill-row {
    margin-bottom: 0;
}

.band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.band::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.band h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.band p {
    position: relative;
    z-index: 2;
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 12px;
}

.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--slate-700);
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.list-check ion-icon {
    color: var(--teal-500);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
    animation: fadeInUp 0.6s ease-out;
}

.page-head {
    padding: 56px 0 0;
    border-bottom: 1px solid rgba(46, 144, 96, 0.08);
    background: linear-gradient(135deg, rgba(46, 144, 96, 0.03) 0%, transparent 100%);
}

.page-head .section-lead {
    margin-bottom: 28px;
}

.page-head h1 {
    margin: 0 0 14px;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    border: 1.5px solid #b8e0c3;
    border-radius: 12px;
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #a8d5b2;
    box-shadow: 0 8px 24px rgba(46, 144, 96, 0.1);
}

.faq-btn {
    width: 100%;
    padding: 18px 18px;
    text-align: left;
    background: var(--white);
    border: 0;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--slate-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-btn {
    background: linear-gradient(135deg, rgba(46, 144, 96, 0.08) 0%, rgba(46, 144, 96, 0.04) 100%);
    color: var(--teal-700);
}

.faq-btn ion-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-btn ion-icon {
    transform: rotate(180deg);
    color: var(--teal-600);
}

.faq-content {
    display: none;
    padding: 0 18px 18px;
    color: var(--slate-700);
    line-height: 1.75;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.3s ease-out;
}

.faq-item.active .faq-content {
    display: block;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
}

.contact-card {
    background: var(--white);
    border: 1.3px solid #c8e8d1;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(46, 144, 96, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #a8d5b2;
    box-shadow: 0 12px 28px rgba(46, 144, 96, 0.12);
}

.contact-card h2 {
    margin-top: 0;
    color: var(--teal-700);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
}

.contact-card h3 {
    color: var(--teal-700);
    margin: 20px 0 12px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.contact-card p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
}

form {
    display: grid;
    gap: 14px;
}

label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--slate-900);
    letter-spacing: 0.2px;
}

input,
textarea,
select {
    width: 100%;
    border: 1.4px solid #f7cfa4;
    background: linear-gradient(135deg, #fafefe 0%, #f5fdf9 100%);
    border-radius: 12px;
    padding: 13px 15px;
    font: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: 0;
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 144, 96, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf3 0%, #f0fdf4 100%);
    border: 1.5px solid #9de8bf;
    color: #15803d;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.alert-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #dc2626;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-weight: 500;
}

.field-hint {
    font-size: 12px;
    margin-top: 4px;
    display: block;
    min-height: 16px;
}
.field-hint--ok  { color: #16a34a; }
.field-hint--err { color: #dc2626; }

.site-footer {
    margin-top: 70px;
    background: linear-gradient(180deg, #1a1e26 0%, #0f1218 100%);
    color: #f5f7fb;
    padding: 52px 0 20px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 144, 96, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.footer-grid h3 {
    margin-top: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
    color: #d8dde6;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-grid ul {
    margin: 0;
    padding-left: 18px;
}

.footer-grid a {
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--teal-500);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 2;
}

.footer-bottom small {
    color: #8a93a2;
    font-size: 0.88rem;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-icons a {
    color: #8a93a2;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-icons a:hover {
    color: var(--teal-500);
    transform: translateY(-2px);
}

/* Shared floating button group */
.float-group {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}
.float-group > * {
    pointer-events: auto;
}

.float-cta {
    position: relative;
    padding: 13px 22px;
    font-size: 1.4rem;
    gap: 9px;
    animation: subtle-float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(46, 144, 96, 0.35) !important;
}

.float-cta ion-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Pulse ring */
.float-cta::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(46, 144, 96, 0.5);
    animation: cta-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes cta-pulse {
    0%   { opacity: 1; transform: scale(1); }
    70%  { opacity: 0; transform: scale(1.18); }
    100% { opacity: 0; transform: scale(1.18); }
}

.article-detail {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(46, 144, 96, 0.1);
    border: 1px solid #d8f0e2;
}

.article-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
}

.article-header {
    padding: 44px;
}

.article-header h1 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-header .article-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--slate-500);
    font-size: 0.9rem;
}

.article-content {
    padding: 0 44px 44px;
    color: var(--slate-700);
    line-height: 1.8;
    font-size: 1rem;
}

.article-content h3 {
    color: var(--teal-700);
    margin: 28px 0 14px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-footer {
    padding: 24px 44px;
    border-top: 1px solid #ddf2e6;
    background: #f6fdfb;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 980px) {
    .hero-grid,
    .contact-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-wrap {
        aspect-ratio: 16 / 9;
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 16px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .card-grid--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .card-grid,
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-top: 1px solid #f5e3cf;
        border-bottom: 1px solid #f5e3cf;
        padding: 10px 4%;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 11px 0;
        border-bottom: 1px solid #f7ece0;
    }

    .main-nav a.btn {
        width: auto;
        margin-top: 10px;
        border-bottom: 0;
    }
}

@media (max-width: 540px) {
    .section {
        padding: 52px 0;
    }

    .hero {
        padding: 52px 0 32px;
    }

    .stats-band {
        padding: 0 0 28px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 10px 16px;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid var(--border-light);
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
        padding-top: 14px;
    }

    .stat-item > div strong {
        font-size: 1.2rem;
    }

    .pill-row {
        flex-direction: column;
    }

    .pill-row .btn {
        width: 100%;
        justify-content: center;
    }

    .card-grid--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-image,
    .article-image {
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: contain;
        object-position: center;
        background: #f8fafc;
    }

    .card-body {
        padding: 14px;
    }

    .card-body h3 {
        font-size: 0.88rem;
    }

    .card-body p {
        font-size: 0.82rem;
    }

    .card-body .btn,
    .card-body .btn-sm {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 9px 10px;
    }

    .article-hero {
        height: 253px;
    }

    .article-header,
    .article-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .band {
        padding: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ── Hero badge ───────────────────────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tint-50);
    border: 1.5px solid var(--teal-300);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: var(--teal-700);
    font-weight: 600;
    margin-bottom: 18px;
    animation: fadeInUp 0.5s ease-out;
}

.hero-badge ion-icon {
    font-size: 0.95rem;
}

/* ── Hero features (3 items horizontal row) ──────────────────────────────── */
.hero-features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease-out 0.15s both;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--slate-700);
}

.hero-features ion-icon {
    color: var(--teal-500);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ── Hero image (replaces hero-card) ─────────────────────────────────────── */
.hero-img-wrap {
    position: relative;
    overflow: visible;
    aspect-ratio: 4 / 3;
    background: transparent;
    animation: slideInRight 0.7s ease-out 0.2s both;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    clip-path: url(#hero-clip);
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.16)) drop-shadow(0 6px 16px rgba(41, 205, 188, 0.12));
}

.hero-float-tooth {
    position: absolute;
    top: 28px;
    left: 28px;
    right: auto;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(41, 205, 188, 0.18), 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: subtle-float 3s ease-in-out infinite;
    z-index: 2;
}

.hero-float-tooth img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ── Stats band ───────────────────────────────────────────────────────────── */
.stats-band {
    background: transparent;
    border: none;
    padding: 28px 0 40px;
    position: relative;
    z-index: 1;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-icon--star    { background: #fef9ec; color: #f6a623; }
.stat-icon--patients{ background: var(--tint-50); color: var(--teal-600); }
.stat-icon--reviews { background: #f0f4ff; color: #6366f1; }
.stat-icon--speed   { background: var(--tint-50); color: var(--teal-500); }

.stat-item > div strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: #1a2634;
    line-height: 1.15;
}

.stat-item > div span {
    font-size: 0.8rem;
    color: var(--slate-500);
    font-weight: 500;
    display: block;
    margin-top: 1px;
}

/* ── Services section ─────────────────────────────────────────────────────── */
.section-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--teal-600);
    text-transform: uppercase;
    margin: 0 0 10px;
}

.section-title--center {
    text-align: center;
}

.section-lead--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* 5-column grid */
.card-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

/* 6th service card: hidden on desktop (5-col), visible on mobile */
.service-card--6th {
    display: none;
}

/* Icon-only service card */
.card-service-icon {
    padding: 0;
    gap: 0;
}

.card-service-icon:hover {
    transform: translateY(-6px);
}

/* Larger icon chip for service cards */
.icon-chip--xl {
    width: 72px;
    height: 72px;
    font-size: 2.1rem;
    border-radius: 20px;
    flex-shrink: 0;
    align-self: center;
    background: rgba(34, 181, 165, 0.1);
    color: var(--teal-600);
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.icon-chip--xl ion-icon {
    font-size: 2.1rem;
    width: 2.1rem;
    height: 2.1rem;
}

.card:hover .icon-chip--xl {
    background: linear-gradient(140deg, var(--teal-600), var(--teal-500));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(41, 205, 188, 0.3);
}

/* ── Promo Popup ──────────────────────────────────────────────────────────── */
.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* kompensasi sticky navbar */
    animation: ppFadeIn 0.25s ease;
}
.promo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.promo-popup__box {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 520px);
    max-height: calc(100vh - 90px); /* tidak melewati batas layar */
    width: 100%;
    border-radius: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    animation: ppScaleIn 0.28s cubic-bezier(0.34, 1.36, 0.64, 1);
}
.promo-popup__img {
    display: block;
    width: 100%;
    height: auto;
}
a .promo-popup__img { cursor: pointer; }
.promo-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.18s;
}
.promo-popup__close:hover { background: rgba(0, 0, 0, 0.82); }
.promo-popup--out {
    animation: ppFadeOut 0.28s ease forwards;
}
@keyframes ppFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes ppFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes ppScaleIn { from { transform: scale(0.82); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (max-width: 540px) {
    .promo-popup__box { max-width: 92vw; border-radius: 12px; }
}

/* Tombol mini popup (muncul setelah close) */
.promo-min-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 66px;
    padding: 0 5px 7px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: #f7873d;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(14px) scale(0.82);
    transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
    pointer-events: none;
    position: relative;
    overflow: visible;
    gap: 2px;
    color: #fff;
}

/* Icon */
.promo-min-btn__icon {
    font-size: 1.45rem;
    color: #fff;
    line-height: 1;
    margin-top: 8px;
}

/* Label */
.promo-min-btn__label {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    line-height: 1;
}

/* Pulse ring — aktif saat tombol muncul */
.promo-min-btn--in::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    border: 2px solid rgba(247, 135, 61, 0.65);
    animation: promo-pulse 2.2s ease-out 0.5s infinite;
    pointer-events: none;
}

.promo-min-btn--in {
    animation:
        ppMinIn 0.38s cubic-bezier(0.34, 1.36, 0.64, 1) forwards,
        subtle-float 3s ease-in-out 0.38s infinite;
    pointer-events: auto;
}
.promo-min-btn:hover {
    background: #f99655;
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow:
        0 8px 24px rgba(247, 135, 61, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.25);
}
@keyframes ppMinIn {
    from { opacity: 0; transform: translateY(14px) scale(0.82); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes promo-pulse {
    0%   { opacity: 0.9; transform: scale(1); }
    70%  { opacity: 0;   transform: scale(1.4); }
    100% { opacity: 0;   transform: scale(1.4); }
}

/* ── Lazy-load images: prevent layout shift ────────────────────────────── */
img[loading="lazy"] {
    content-visibility: auto;
}

/* ── Section offscreen rendering hint ─────────────────────────────────── */
.section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ── Respect reduced motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Disable heavy effects on low-end/mobile ───────────────────────────── */
@media (max-width: 540px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.99);
    }

    .hero-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        animation: none;
    }

    .hero h1,
    .hero p {
        animation: none;
    }

    .hero::before,
    .hero::after {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE PER LAYANAN (/layanan/{slug})
═══════════════════════════════════════════════════════════════════════════ */
.landing-hero {
    padding: 64px 0 56px;
    background: linear-gradient(135deg, var(--tint-50, #edfaf9) 0%, #fff 60%);
    border-bottom: 1px solid var(--gray-100, #f3f4f6);
}
.landing-hero-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
}
.landing-hero-text { max-width: 600px; }
.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tint-50, #edfaf9);
    color: var(--teal-500, #29cdbc);
    border: 1px solid var(--border-light, #b8e2df);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.landing-badge ion-icon { font-size: 15px; }
.landing-hero h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900, #111827);
    margin-bottom: 16px;
}
.landing-hero-lead {
    font-size: 17px;
    color: var(--gray-600, #4b5563);
    line-height: 1.65;
    margin-bottom: 20px;
}
.landing-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tint-50, #edfaf9);
    color: var(--teal-700, #1a9e90);
    border: 1px solid var(--border-light, #b8e2df);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 28px;
}
.landing-price-tag ion-icon { font-size: 16px; }
.landing-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.btn-landing-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-landing-primary:hover { background: #1ebe5e; transform: translateY(-1px); }
.btn-landing-primary ion-icon { font-size: 18px; }
.btn-landing-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--teal-500, #29cdbc);
    border: 2px solid var(--teal-500, #29cdbc);
    border-radius: 10px;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s;
}
.btn-landing-secondary:hover { background: var(--tint-50, #edfaf9); }
.btn-landing-secondary--invert {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn-landing-secondary--invert:hover { background: rgba(255,255,255,.15); }
.btn-landing-secondary ion-icon { font-size: 17px; }
.landing-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray-500, #6b7280);
}
.landing-trust-row span { display: flex; align-items: center; gap: 4px; }
.landing-trust-row ion-icon { color: var(--teal-500, #29cdbc); font-size: 14px; }
.landing-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    object-fit: cover;
}

/* Two-column content layout */
.landing-two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: flex-start;
}
.landing-desc-section .landing-desc-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gray-900, #111827);
}
.landing-content-prose {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700, #374151);
}
.landing-sidebar-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    position: sticky;
    top: 80px;
}
.landing-sidebar-icon {
    width: 52px; height: 52px;
    background: var(--tint-50, #edfaf9);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-500, #29cdbc);
    font-size: 24px;
    margin-bottom: 14px;
}
.landing-sidebar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.landing-sidebar-card p  { font-size: 14px; color: var(--gray-600, #4b5563); line-height: 1.6; }
.landing-aside-price {
    background: var(--tint-50, #edfaf9);
    color: var(--teal-700, #1a9e90);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
}
.landing-aside-contact {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500, #6b7280);
}
.landing-aside-contact a {
    display: flex; align-items: center; gap: 5px;
    color: var(--teal-500, #29cdbc);
    text-decoration: none;
    font-weight: 600;
}

/* Why us grid */
.landing-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.landing-why-item {
    background: #fff;
    border: 1px solid var(--gray-100, #f3f4f6);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
}
.landing-why-icon {
    width: 52px; height: 52px;
    background: var(--tint-50, #edfaf9);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-500, #29cdbc);
    font-size: 24px;
    margin: 0 auto 12px;
}
.landing-why-item strong { display: block; font-size: 14px; margin-bottom: 6px; }
.landing-why-item p { font-size: 13px; color: var(--gray-500, #6b7280); line-height: 1.5; margin: 0; }

/* CTA band */
.landing-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--teal-600, #22b5a5);
    color: #fff;
    border-radius: 16px;
    padding: 32px 36px;
}
.landing-cta-band h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.landing-cta-band p  { font-size: 15px; opacity: .9; margin: 0; }
.landing-cta-band .btn-outline {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}
.landing-cta-band .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── Hero Checklist ─────────────────────────────────────────────────────── */
.landing-hero-checklist {
    list-style: none;
    margin: 18px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.landing-hero-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--gray-700, #374151);
    line-height: 1.4;
}
.landing-hero-checklist li ion-icon {
    color: var(--teal-600, #0d9488);
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Section heading shared ─────────────────────────────────────────────── */
.landing-section-title {
    text-align: center;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gray-900, #111827);
}
.landing-section-lead {
    text-align: center;
    font-size: 15px;
    color: var(--gray-500, #6b7280);
    margin: 0 auto 40px;
    max-width: 560px;
}

/* ── Steps / Proses ─────────────────────────────────────────────────────── */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.landing-step {
    text-align: center;
    position: relative;
}
.landing-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: var(--teal-300, #9de8e2);
}
.landing-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-600, #0d9488);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(var(--color-rgb), .3);
}
.landing-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gray-800, #1f2937);
}
.landing-step p {
    font-size: 13px;
    color: var(--gray-500, #6b7280);
    line-height: 1.55;
    margin: 0;
}

/* ── Testimonials ───────────────────────────────────────────────────────── */
.landing-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}
.landing-testi-card {
    background: #fff;
    border: 1px solid var(--gray-100, #f3f4f6);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
}
.landing-testi-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.landing-testi-card blockquote {
    flex: 1;
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-700, #374151);
    margin: 0 0 18px;
    font-style: italic;
}
.landing-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.landing-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tint-100, #e3f6f5);
    color: var(--teal-700, #0f766e);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-testi-name  { font-weight: 700; font-size: 14px; color: var(--gray-800, #1f2937); }
.landing-testi-label { font-size: 12px; color: var(--gray-400, #9ca3af); margin-top: 2px; }

/* ── FAQ Accordion ──────────────────────────────────────────────────────── */
.landing-faq {
    max-width: 800px;
    margin: 0 auto;
}
.landing-faq-item {
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}
.landing-faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800, #1f2937);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.5;
}
.landing-faq-q:hover { color: var(--teal-700, #0f766e); }
.landing-faq-q ion-icon { flex-shrink: 0; font-size: 20px; transition: transform .25s; }
.landing-faq-item.open .landing-faq-q { color: var(--teal-700, #0f766e); }
.landing-faq-item.open .landing-faq-q ion-icon { transform: rotate(180deg); }
.landing-faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-600, #4b5563);
}
.landing-faq-item.open .landing-faq-a { display: block; }

/* ── Sticky CTA bar ─────────────────────────────────────────────────────── */
.landing-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--gray-200, #e5e7eb);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.10);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.landing-sticky-cta.visible { transform: translateY(0); }
/* Dorong footer ke atas saat sticky CTA muncul */
body.has-sticky-cta .site-footer { padding-bottom: 80px; }
@media (max-width: 480px) { body.has-sticky-cta .site-footer { padding-bottom: 110px; } }
.landing-sticky-cta-text strong { font-size: 15px; color: var(--gray-900, #111827); line-height: 1.3; display: block; }
.landing-sticky-cta-text p { font-size: 13px; color: var(--gray-500, #6b7280); margin: 2px 0 0; }
.landing-sticky-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .landing-hero-inner { grid-template-columns: 1fr; }
    .landing-hero-image { display: none; }
    .landing-why-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-steps { grid-template-columns: repeat(2, 1fr); }
    .landing-step:not(:last-child)::after { display: none; }
    .landing-testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .landing-hero { padding: 40px 0 36px; }
    .landing-two-col { grid-template-columns: 1fr; }
    .landing-sidebar-card { position: static; }
    .landing-cta-band { flex-direction: column; text-align: center; padding: 24px 20px; }
    .landing-testi-grid { grid-template-columns: 1fr; }
    .landing-sticky-cta { padding: 10px 16px; gap: 10px; }
    .landing-sticky-cta-text strong { font-size: 14px; }
    .landing-sticky-cta-text p { display: none; }
}
@media (max-width: 480px) {
    .landing-why-grid { grid-template-columns: 1fr; }
    .landing-steps { grid-template-columns: 1fr; }
    .landing-cta-group { flex-direction: column; }
    .btn-landing-primary, .btn-landing-secondary { justify-content: center; }
    .landing-trust-row { flex-direction: column; gap: 8px; }
    .landing-sticky-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .landing-sticky-cta-btns { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE RESPONSIVE OVERRIDES
   Must be at end of file so they correctly override component base styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet (≤980px) */
@media (max-width: 980px) {
    .hero-img-wrap {
        aspect-ratio: 16 / 9;
        max-width: 580px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 12px 60px 60px 30px;
    }

    .hero-photo {
        clip-path: none;
        filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14));
        border-radius: 0;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 18px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        padding-top: 18px;
    }

    .card-grid--5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

/* Small tablet (≤820px) */
@media (max-width: 820px) {
    .card-grid--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .service-card--6th {
        display: flex;
    }
}

/* Mobile (≤540px) */
@media (max-width: 540px) {
    .hero {
        padding: 48px 0 24px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 22px;
    }

    .hero-features span {
        font-size: 0.88rem;
    }

    .hero-img-wrap {
        aspect-ratio: 16 / 10;
        max-width: 100%;
        border-radius: 16px 32px 32px 16px;
        margin-top: 20px;
        overflow: hidden;
    }

    .hero-photo {
        clip-path: none;
        filter: none;
        border-radius: 0;
    }

    .hero-float-tooth {
        top: 12px;
        left: 12px;
        width: 52px;
        height: 52px;
    }

    .hero-float-tooth {
        width: 48px;
        height: 48px;
    }

    .hero-float-tooth img {
        width: 28px;
        height: 28px;
    }

    .stats-band {
        padding: 0 0 28px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 16px;
    }

    .stat-item {
        padding: 14px 12px;
        gap: 10px;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 14px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        padding-top: 14px;
        border-bottom: none;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .stat-item > div strong {
        font-size: 1.1rem;
    }

    .stat-item > div span {
        font-size: 0.72rem;
    }

    .pill-row {
        flex-direction: column;
        gap: 10px;
    }

    .pill-row .btn {
        width: 100%;
        justify-content: center;
    }

    .card-grid--5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .icon-chip--xl {
        width: 54px;
        height: 54px;
        font-size: 1.65rem;
        border-radius: 14px;
    }

    .section-services .section-lead {
        font-size: 0.9rem;
    }
}
