/* ============================================================
   APSIS — SERVICE PAGE STYLESHEET  (service.css)
   Shared across all /insights/ landing pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --blue-primary: #7c9bc1;
    --navy-deep: #1e3a56;
    --navy-mid: #254d72;
    --orange-primary: #f58220;
    --orange-secondary: #ff9f4a;
    --orange-light: #ffb64c;
    --text-main: #333333;
    --text-body: #555555;
    --text-muted: #666666;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f3f6fa;
    --bg-lighter: #f9fafc;
    --border-light: #e2e8f0;
    --border-card: #dde5f0;
    --radius-img: 14px;
    --radius-box: 12px;
    --radius-btn: 8px;
    --radius-pill: 50px;
    --shadow-img: 0 4px 20px rgba(30, 58, 86, 0.08);
    --shadow-card: 0 2px 12px rgba(30, 58, 86, 0.06);
    --shadow-btn: 0 2px 8px rgba(124, 155, 193, 0.18);
    --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    --container-max: 1180px;
    --prose-max: 800px;
    --transition: 0.22s 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-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-main);
    background: var(--bg-lighter);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.prose {
    width: 100%;
    max-width: var(--prose-max);
    margin: 0 auto;
}

/* ── Fade-in ── */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Reading progress ── */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    z-index: 200;
    transition: width 0.1s linear;
}

/* ── Header ── */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 6px rgba(30, 58, 86, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--navy-deep);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 20px;
    height: 20px;
}

.logo-accent {
    color: var(--orange-primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-primary);
    transition: width var(--transition);
}

.header-nav a:hover {
    color: var(--navy-deep);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a.active {
    color: var(--navy-deep);
}

.btn-header {
    background: var(--navy-deep);
    color: var(--text-white) !important;
    padding: 9px 20px;
    border-radius: var(--radius-btn);
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    transition: background var(--transition), color var(--transition) !important;
    letter-spacing: 0.01em;
}

.btn-header:hover {
    background: var(--orange-primary) !important;
    color: var(--text-white) !important;
}

.btn-header::after {
    display: none !important;
}

/* ── Hamburger ── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background var(--transition);
    flex-shrink: 0;
}

.hamburger-btn:hover {
    background: var(--bg-light);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 40, 64, 0.40);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-overlay.visible {
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 270px;
    height: 100%;
    background: var(--bg-white);
    z-index: 99;
    box-shadow: -4px 0 24px rgba(30, 58, 86, 0.10);
    display: flex;
    flex-direction: column;
    transition: right 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav__logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.mobile-nav__logo span {
    color: var(--orange-primary);
}

.mobile-nav__close {
    width: 34px;
    height: 34px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav__close svg {
    width: 16px;
    height: 16px;
    color: var(--navy-deep);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.mobile-nav__links a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition), background var(--transition);
    display: block;
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
    color: var(--navy-deep);
    background: var(--bg-light);
}

.mobile-nav__cta {
    padding: 20px 20px 28px;
}

.mobile-nav__cta a {
    display: block;
    text-align: center;
    background: var(--navy-deep);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 13px 20px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition);
}

.mobile-nav__cta a:hover {
    background: var(--orange-primary);
}

/* ── Service Hero ── */
.service-hero {
    background-color: #f0f4f9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='520' viewBox='0 0 900 520'%3E%3Cg fill='none' stroke='%231e3a56' stroke-linecap='round'%3E%3Cpath stroke-width='1' stroke-opacity='0.045' d='M-40 420 C60 390, 160 440, 280 400 S480 340, 600 380 S760 430, 940 400'/%3E%3Cpath stroke-width='1' stroke-opacity='0.055' d='M-40 370 C80 335, 200 385, 320 345 S500 285, 640 325 S800 375, 940 345'/%3E%3Cpath stroke-width='1' stroke-opacity='0.065' d='M-40 315 C100 278, 230 330, 360 288 S560 225, 700 268 S840 318, 940 290'/%3E%3Cpath stroke-width='1' stroke-opacity='0.06' d='M-40 260 C120 220, 260 272, 400 230 S610 163, 760 208 S880 258, 940 235'/%3E%3Cpath stroke-width='1' stroke-opacity='0.05' d='M-40 205 C140 162, 290 215, 440 172 S660 100, 820 148 S900 198, 940 178'/%3E%3Cpath stroke-width='0.8' stroke-opacity='0.038' d='M-40 150 C160 105, 320 158, 480 114 S710 38, 880 88 S920 140, 940 120'/%3E%3Cpath stroke-width='0.8' stroke-opacity='0.03' d='M-40 95 C180 48, 350 100, 520 56 S762 -24, 940 28'/%3E%3Cpath stroke-width='1' stroke-opacity='0.04' d='M-40 465 C50 445, 140 468, 260 448 S440 415, 560 438 S720 462, 940 445'/%3E%3Cpath stroke-width='0.7' stroke-opacity='0.028' d='M-40 498 C70 485, 180 500, 320 488 S520 470, 680 485 S840 498, 940 488'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 72px 0 60px;
    border-bottom: 1px solid var(--border-light);
}

.service-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

@media (min-width: 992px) {
    .service-hero__grid {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 48px;
    }
}

.service-hero__left {
    width: 100%;
}

.service-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-img);
    overflow: hidden;
    box-shadow: var(--shadow-img);
    border: 1px solid var(--border-card);
    background: var(--bg-white);
    aspect-ratio: 4 / 3;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 58, 86, 0.12);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.03);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--blue-primary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--orange-primary);
}

.breadcrumb-sep {
    color: var(--border-light);
    font-size: 0.75rem;
}

.hero-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-category::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--orange-primary);
    display: block;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    max-width: 820px;
}

.hero-rule {
    width: 40px;
    height: 2px;
    background: var(--orange-primary);
    margin-bottom: 24px;
}

.hero-intro {
    font-size: 1.075rem;
    color: var(--text-body);
    line-height: 1.80;
    max-width: 660px;
    margin-bottom: 32px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--navy-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition);
    letter-spacing: 0.01em;
}

.btn-hero-primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-hero-primary:hover {
    background: var(--orange-primary);
    color: #fff;
}

.btn-hero-primary:hover svg {
    transform: translateX(3px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 1px solid var(--border-card);
    transition: border-color var(--transition), color var(--transition);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    color: #25D366;
}

.btn-whatsapp:hover {
    border-color: #25D366;
    color: #1a9e4e;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    color: var(--blue-primary);
    flex-shrink: 0;
}

/* ── Article Layout ── */
.article-wrap {
    padding: 56px 0 72px;
    background: var(--bg-lighter);
}

.article-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 1024px) {
    .article-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }

    .article-layout .article-toc {
        flex: 0 0 260px;
        position: sticky;
        top: 88px;
        order: -1;
    }

    .article-layout .article-body {
        flex: 1;
        min-width: 0;
    }
}

/* ── Sticky TOC ── */
.article-toc {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-box);
    padding: 22px;
}

.article-toc__title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
}

.article-toc__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 0 !important;
}

.article-toc__list a {
    font-size: 0.8375rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    transition: color 0.18s ease;
    padding: 7px 0 7px 12px;

    border-bottom: 1px solid var(--border-light);
}

.article-toc__list li:last-child a {
    border-bottom: none;
}

.article-toc__list a:hover {
    color: var(--navy-deep);

}

.article-toc__list a.active {
    color: var(--navy-deep);
    font-weight: 600;

}

.article-toc__list li::before {
    display: none;
}

/* ── Inline CTA strip (TOC sidebar) ── */
.toc-cta {
    background: var(--navy-deep);
    border-radius: var(--radius-box);
    padding: 20px 18px;
    margin-top: 16px;
    text-align: center;
}

.toc-cta p {
    font-size: 0.8375rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
    line-height: 1.55;
}

.toc-cta a {
    display: block;
    background: var(--orange-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 11px 16px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: background var(--transition);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.toc-cta a:hover {
    background: var(--orange-secondary);
    color: #fff;
}

.toc-cta .wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 16px;
    border-radius: var(--radius-btn);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}

.toc-cta .wa-link:hover {
    border-color: #25D366;
    color: #fff;
}

.toc-cta .wa-link svg {
    width: 14px;
    height: 14px;
    color: #25D366;
}

/* ── Article Body ── */
.article-body {
    font-family: var(--font-body);
    font-size: 1.025rem;
    line-height: 1.84;
    color: var(--text-body);
}

.article-body em {
    font-style: italic;
    color: var(--navy-mid);
    font-weight: 400;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 3rem 0 1rem;
    padding-top: 1.5rem;

}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-mid);
    letter-spacing: -0.01em;
    margin: 2rem 0 0.6rem;
}

.article-body strong {
    color: var(--navy-deep);
    font-weight: 700;
}

.article-body a {
    color: var(--navy-mid);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(124, 155, 193, 0.40);
    text-underline-offset: 3px;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.article-body a:hover {
    color: var(--orange-primary);
    text-decoration-color: rgba(245, 130, 32, 0.45);
}

/* Lists */
.article-body ul {
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-body ul li {
    padding-left: 22px;
    position: relative;
    color: var(--text-body);
    line-height: 1.72;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-primary);
}

.article-body ol {
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    counter-reset: steps;
}

.article-body ol li {
    padding-left: 38px;
    position: relative;
    color: var(--text-body);
    line-height: 1.72;
    counter-increment: steps;
}

.article-body ol li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--navy-deep);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* ── Tip / Note Box ── */
.tip-box {
    background: var(--bg-light);

    border-radius: 0 0 var(--radius-box) var(--radius-box);
    padding: 20px 24px;
    margin: 2rem 0;
}

.tip-box__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-primary);
    margin-bottom: 6px;
}

.tip-box p {
    font-size: 0.925rem !important;
    color: var(--text-body);
    margin: 0 !important;
    line-height: 1.72;
}

/* ── Takeaways Box ── */
.takeaways-box {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-box);
    padding: 26px 30px;
    margin: 2.4rem 0;
}

.takeaways-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.takeaways-box__icon {
    width: 28px;
    height: 28px;
    background: var(--navy-deep);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.takeaways-box__icon svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.takeaways-box__title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.takeaways-box ul {
    margin: 0 !important;
    gap: 8px !important;
}

.takeaways-box ul li {
    color: var(--text-body) !important;
    font-size: 0.9375rem;
    font-weight: 500;
}

.takeaways-box ul li::before {
    background: var(--navy-deep) !important;
    top: 9px !important;
}

/* ── Mid-Page CTA ── */
.mid-cta {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-box);
    padding: 28px 32px;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;

}

.mid-cta__text {
    flex: 1;
}

.mid-cta__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.mid-cta__heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}

.mid-cta__sub {
    font-size: 0.875rem !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-deep);
    color: var(--text-white) !important;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: background var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.btn-primary svg {
    width: 15px;
    height: 15px;
    transition: transform var(--transition);
}

.btn-primary:hover {
    background: var(--orange-primary);
    color: var(--text-white) !important;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

/* ── FAQ Section ── */
.faq-section {
    padding: 64px 0;
    background: var(--bg-white);

}

.faq-section .section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.faq-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    text-align: left;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.35;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.faq-item.open .faq-icon svg {
    color: var(--orange-primary);
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 20px 0;
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ── Internal Links ── */
.internal-links-box {
    background: var(--bg-white);
    border-radius: var(--radius-box);
    padding: 22px 26px;
    margin: 2.5rem 0;
    border: 1px solid var(--border-card);

}

.internal-links-box__title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
}

.internal-links-box ul {
    margin: 0 !important;
    gap: 8px !important;
}

.internal-links-box ul li {
    padding-left: 0 !important;
}

.internal-links-box ul li::before {
    display: none !important;
}

.internal-links-box ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--navy-mid);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.internal-links-box ul li a::before {
    content: '→';
    color: var(--orange-primary);
    font-size: 0.8rem;
}

.internal-links-box ul li a:hover {
    color: var(--orange-primary);
}

/* ── Process Steps ── */
.process-steps {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-box);
    overflow: hidden;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--navy-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-body);
    margin-top: 2px;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── Final CTA ── */
.final-cta {
    background: var(--navy-deep);
    padding: 80px 0;
}

.final-cta__inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.final-cta__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 16px;
    display: inline-block;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 14px;
}

.final-cta__sub {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 36px;
}

.final-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange-primary);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: var(--radius-btn);
    text-decoration: none !important;
    transition: background var(--transition);
    letter-spacing: 0.01em;
}

.btn-cta-large svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.btn-cta-large:hover {
    background: var(--orange-secondary);
    color: #fff !important;
}

.btn-cta-large:hover svg {
    transform: translateX(3px);
}

.btn-wa-large {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    text-decoration: none !important;
    transition: border-color var(--transition), color var(--transition);
}

.btn-wa-large svg {
    width: 18px;
    height: 18px;
    color: #25D366;
}

.btn-wa-large:hover {
    border-color: #25D366;
    color: #fff !important;
}

.cta-trust {
    margin-top: 20px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-trust svg {
    width: 13px;
    height: 13px;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

/* ── Related / Services ── */
.related-section {
    background: var(--bg-white);

    padding: 64px 0;
}

.related-section .section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.related-section .section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-box);
    overflow: hidden;
}

.related-card {
    background: var(--bg-white);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: background var(--transition);
    position: relative;
}

.related-card:hover {
    background: var(--bg-light);
}

.related-cat {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.related-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1.40;
    transition: color var(--transition);
}

.related-card:hover .related-title {
    color: var(--orange-primary);
}

.related-meta {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: auto;
    padding-top: 10px;

}

/* ── Footer ── */
.site-footer {
    background: var(--navy-deep);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
}

.footer-logo span {
    color: var(--orange-primary);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ── Contact Form ── */
.contact-form-section {
    background: var(--bg-white);
    padding: 64px 0;

}

.contact-form-section .section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.contact-form-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.contact-form-section .section-sub {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-form {
    max-width: 620px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-deep);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 0.925rem;
    color: var(--text-body);
    background: var(--bg-lighter);
    transition: border-color 0.18s ease, background 0.18s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-mid);
    background: var(--bg-white);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.btn-submit {
    background: var(--orange-primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background var(--transition);
    letter-spacing: 0.01em;
}

.btn-submit:hover {
    background: var(--orange-secondary);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
}

.form-success {
    display: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-box);
    padding: 16px 20px;
    color: #15803d;
    font-weight: 600;
    margin-top: 16px;
    font-size: 0.9rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-nav a:not(.btn-header) {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mid-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }

    .site-header {
        position: static;
    }

    .header-inner {
        height: 60px;
    }

    .logo-text {
        display: none;
    }

    .service-hero {
        padding: 44px 0 36px;
    }

    .service-hero h1 {
        font-size: 1.7rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .article-wrap {
        padding: 36px 0 52px;
    }

    .article-body h2 {
        font-size: 1.2rem;
    }

    .mid-cta {
        padding: 22px 20px;
    }

    .final-cta {
        padding: 52px 0;
    }

    .final-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-large,
    .btn-wa-large {
        width: 100%;
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .takeaways-box {
        padding: 20px 18px;
    }

    .tip-box {
        padding: 16px 18px;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
    }
}

/* ── Floating WhatsApp Button ── */
.floating-consult {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.floating-consult svg {
    width: 30px;
    height: 30px;
}

.floating-consult:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.floating-consult::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .floating-consult {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-consult svg {
        width: 26px;
        height: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}