:root {
    --bg: #28282B;
    --bg-soft: #2E2E31;
    --text: #FAF9F6;
    --muted: #DEDEDE;
    --muted-2: #B9B9BA;

    --gold: #E5CA83;
    --gold-deep: #BC9554;
    --gold-line: #4B4430;
    --gold-line-hover: #C9A961;

    --grad-gold: linear-gradient(110deg, rgba(175, 132, 69, 1) 0%, rgba(232, 201, 136, 1) 33%, rgba(229, 202, 131, 1) 66%, rgba(175, 132, 69, 1) 100%);
    --grad-gold-text: linear-gradient(100deg, #BC9554 0%, #E9CE8B 45%, #E5CA83 60%, #C09A5C 100%);

    --container: 1242px;
    --radius: 16px;
    --radius-lg: 22px;

    --ease: cubic-bezier(.22, .61, .36, 1);

    --card: #202022;
    --gold2: #efcb73;
    --line: #4a4538;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Neue Montreal', 'Helvetica Now', Canela, 'PP Editorial', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
}

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

.container,
.service-page-container,
.wrap {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 64px;
    box-sizing: border-box;
}

@media (max-width: 640px) {

    .container,
    .service-page-container,
    .wrap {
        padding-inline: 18px;
    }
}

/* ---------- Global Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    padding: 14px 26px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
    transition: transform .25s var(--ease);
}

.btn-gold {
    background: var(--grad-gold);
    background-size: 180% 100%;
    color: #24201A;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.btn-gold:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(196, 155, 84, .32);
}

.btn-gold:hover svg {
    transform: translateX(4px);
}

.gold-btn {
    display: inline-block;
    background: linear-gradient(110deg, #b98d37, #efca72);
    color: #161616;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
}

.hero {
    min-height: 600px;
    background: url("assets/pdf/asset-12.png") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 100px 0 40px;
}

.hero .service-page-container,
.hero .container {
    width: 100%;
}

.hero-box {
    width: 100%;
    padding: 62px 55px 55px;
    background: rgba(50, 51, 55, 0.76);
    backdrop-filter: blur(9px);
    border-radius: 18px;
}

.hero-box span {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 12px;
}

.label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #AF8445 0%, #E8C988 34%, #E5CA83 67%, #AF8445 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 12px;
}

h1 {
    font-size: 36px;
    line-height: 1.15;
    margin: 10px 0 25px;
}

.hero-box p {
    max-width: 650px;
    margin: 0 0 25px;
    color: #e1e0dd;
    font-size: 16px;
    line-height: 1.65;
}

.overview {
    padding: 72px 0 35px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 75px;
}

.overview .label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #AF8445 0%, #E8C988 34%, #E5CA83 67%, #AF8445 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 14px;
}

.overview p {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
}

.overview h3 {
    font-size: 18px;
    margin-top: 30px;
    background: linear-gradient(90deg, #AF8445 0%, #E8C988 34%, #E5CA83 67%, #AF8445 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.overview ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.overview li {
    margin: 10px 0;
}

.overview li:before {
    content: "•";
    color: var(--gold);
    margin-right: 10px;
}

.overview-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.overview-img-wrapper img,
.overview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    position: absolute;
    top: 0;
    left: 0;
}

.benefits {
    padding: 25px 0 30px;
}

.benefit-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 35px;
}

.benefit-head h2 {
    font-size: 35px;
    line-height: 1.17;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.benefits.animate-in .benefit-head h2 {
    opacity: 1;
    transform: translateY(0);
}

.benefit-head p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 520px;
    color: #c9c7c4;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out 0.1s, transform 0.4s ease-out 0.1s;
}

.benefits.animate-in .benefit-head p {
    opacity: 1;
    transform: translateY(0);
}

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

.cards article {
    background: #202022;
    border: 1px solid #4d4632;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    padding: 35px 30px;
    min-height: 285px;
}

.benefits.animate-in .cards article {
    opacity: 1;
    transform: translateY(0);
}

.benefits.animate-in .cards article:nth-child(1) {
    transition-delay: 0.05s;
}

.benefits.animate-in .cards article:nth-child(2) {
    transition-delay: 0.15s;
}

.benefits.animate-in .cards article:nth-child(3) {
    transition-delay: 0.25s;
}

.benefits.animate-in .cards article:nth-child(4) {
    transition-delay: 0.35s;
}

.benefits.animate-in .cards article:nth-child(5) {
    transition-delay: 0.45s;
}

.benefits.animate-in .cards article:nth-child(6) {
    transition-delay: 0.55s;
}



.cards i {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 13px;
    background: transparent;
    color: #f1c568;
    font-size: 24px;
    font-style: normal;
    transition: background 0.3s ease;
}

.cards article:hover i {
    background: #4c4a46;
}

.cards i img,
.cards i svg {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.cards h3 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.cards p {
    font-size: 16px;
    line-height: 1.75;
    color: #c3c1bc;
}


.pricing {
    padding: 30px 0 15px;
}

.center {
    text-align: center;
    margin-bottom: 45px;
}

.center h2 {
    font-size: 35px;
    margin: 0;
}

.center em {
    color: var(--gold2);
    font-style: normal;
}

.center p {
    font-size: 16px;
    line-height: 1.65;
    color: #c9c7c4;
}

.plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.plans article {
    border: 1px solid #665837;
    border-radius: 18px;
    padding: 30px 25px;
    min-height: auto;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: 35px;
    right: 16px;
    background: linear-gradient(90deg, #B0854A 0%, #E8C988 42%, #E4C982 58%, #BB9362 100%);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, color 0.3s ease;
}

.plans h3 {
    font-size: 21px;
    margin: 0;
    transition: color 0.3s ease;
    word-break: break-word;
}

.plan-badge+h3 {
    padding-right: 115px;
}

.plans article>p,
.plans article p {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    transition: color 0.3s ease;
}

.plans article>p:first-of-type {
    min-height: 52px;
}

.plans strong {
    display: block;
    font-size: 19px;
    margin: 23px 0 16px;
    transition: color 0.3s ease;
}

.plans strong small {
    font-size: 11px;
    font-weight: 400;
}

.plans article>a {
    display: block;
    text-align: center;
    border: 1px solid var(--gold);
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plans ul {
    list-style: none;
    padding: 15px 0 0;
}

.plans li {
    font-size: 13px;
    margin: 12px 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.plans li:before {
    content: "•";
    margin-right: 8px;
}

.plans h4 {
    font-size: 14px;
    margin: 25px 0 0;
    transition: color 0.3s ease;
}

@media (hover: hover) and (min-width: 992px) {
    .plans article:hover {
        background: linear-gradient(155deg, #f0ce81, #d1a955);
        border-color: #f0ce81;
        color: #383838;
    }

    .plans article:hover h3,
    .plans article:hover strong,
    .plans article:hover strong small,
    .plans article:hover h4,
    .plans article:hover ul,
    .plans article:hover li,
    .plans article:hover p,
    .plans article:hover>p {
        color: #383838;
    }

    .plans article:hover>a {
        background: #28282B;
        color: #E5CA83;
        border-color: #28282B;
    }

    .plans article:hover>a:hover {
        background: #000;
        border-color: #000;
    }

    .plans article:hover .plan-badge {
        background: #28282B;
        color: #E5CA83;
    }
}



.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-style: normal;
    vertical-align: middle;
    margin-right: 6px;
}

.plan-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.faq {
    padding: 10px 0 5px;
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    font-family: Montserrat, sans-serif;
}

.faq details {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 22px 10px;
    outline: none !important;
}

.faq details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    outline: none !important;
    user-select: none;
    transition: color 0.25s ease;
}

.faq summary::-webkit-details-marker,
.faq summary::marker {
    display: none;
}

.faq summary:focus,
.faq summary:focus-visible,
.faq details:focus,
.faq details:focus-visible,
summary:focus,
summary:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.faq summary:hover {
    color: #d8b168;
}

.faq-icon-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #2b2d32;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-icon-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke: currentColor;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq summary:hover .faq-icon-btn {
    background: #d8b168;
    border-color: #d8b168;
    color: #141517;
}

.faq details[open] .faq-icon-btn {
    background: #d8b168;
    border-color: #d8b168;
    color: #141517;
}

.faq details[open] .faq-icon-btn svg {
    transform: rotate(45deg);
}

.faq details p {
    font-size: 16px;
    line-height: 1.7;
    width: 60%;
    margin-left: 40%;
    color: #d2d2d6;
    padding-top: 14px;
    margin-bottom: 0;
}

.cta {
    width: 100%;
    height: 440px;
    border-radius: 22px;
    background: url("assets/pdf/asset-15.png") center/cover;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-block: 20px 60px;
    box-sizing: border-box;
}

.cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #08111b55;
}

.cta div {
    position: relative;
}

.cta h2 {
    font-size: 34px;
    margin: 0 0 6px;
}

.cta p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 25px;
    color: #eaeaea;
}

@media (max-width: 800px) {
    .hero {
        height: 530px;
        padding: 0 5%;
    }

    .hero-box {
        padding: 35px 25px;
    }

    h1 {
        font-size: 30px;
    }

    .overview,
    .benefit-head {
        grid-template-columns: 1fr;
    }

    .overview {
        gap: 35px;
    }

    .benefits {
        padding-bottom: 10px;
    }

    .overview-img-wrapper {
        min-height: 350px;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .plans {
        grid-template-columns: 1fr 1fr;
    }

    .plans article {
        min-height: auto;
    }

    .plans article:hover {
        background: transparent !important;
        border-color: #665837 !important;
        color: inherit !important;
        transform: none !important;
    }

    .plans article:hover h3,
    .plans article:hover strong,
    .plans article:hover strong small,
    .plans article:hover h4,
    .plans article:hover ul,
    .plans article:hover li,
    .plans article:hover p,
    .plans article:hover>p {
        color: inherit !important;
    }

    .plans article:hover>a {
        background: transparent !important;
        color: #fff !important;
        border-color: var(--gold) !important;
    }

    .faq details p {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 520px) {
    .hero {
        height: 510px;
    }

    .hero-box {
        border-radius: 12px;
    }

    h1 {
        font-size: 27px;
    }

    .benefit-head h2,
    .center h2 {
        font-size: 27px;
    }

    .cards,
    .plans {
        grid-template-columns: 1fr;
    }

    .cards article {
        min-height: auto;
    }

    .cta {
        height: 330px;
    }

    .cta h2 {
        font-size: 26px;
    }
}

/* =========================================================
   PROCESS SECTION (Figma Pixel-Perfect Match)
   ========================================================= */
.process-section {
    background: transparent;
    padding: 5px 0 40px;
    position: relative;
    overflow: hidden;
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-left-content {
    flex: 0 0 240px;
    max-width: 240px;
    z-index: 2;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-left-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

.process-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d6a754;
    margin-bottom: 12px;
    font-family: Montserrat, sans-serif;
}

.process-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.18;
    color: #ffffff;
    margin: 0;
    font-family: Montserrat, sans-serif;
    letter-spacing: -0.01em;
}

.process-visual-wrapper {
    flex: 1;
    position: relative;
    height: 600px;
    max-width: 860px;
}

.process-arc-svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gold-crescent {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gold-crescent.revealed {
    stroke-dashoffset: 0;
}

.dashed-orbit {
    opacity: 0;
    transition: opacity 1s ease 0.3s;
}

.dashed-orbit.revealed {
    opacity: 0.85;
}

/* SVG Connector Lines Animation */
.conn-line {
    opacity: 0;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: opacity 0.35s ease, stroke-dashoffset 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.conn-line.revealed {
    opacity: 0.85;
    stroke-dashoffset: 0;
}

/* SVG Gold Nodes Animation */
.gold-node {
    opacity: 0;
    transform: scale(0);
    transform-box: fill-box;
    transform-origin: center center;
    transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gold-node.revealed {
    opacity: 1;
    transform: scale(1);
}

.process-cards-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Step Pill Cards Animation */
.process-step-pill {
    position: absolute;
    display: flex;
    align-items: center;
    width: 460px;
    height: 80px;
    background: #191b1e;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 9999px;
    padding: 8px 24px 8px 34px;
    box-sizing: border-box;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    cursor: default;
    opacity: 0;
    transform: translateX(-40px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.45s cubic-bezier(0.2, 0.9, 0.25, 1.15),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.process-step-pill.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.process-step-pill.revealed:hover {
    transform: translateX(6px) scale(1.01);
    border-color: #d8b168;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(216, 177, 104, 0.2);
}

.process-step-pill.step-1 {
    left: 210px;
    top: 12px;
}

.process-step-pill.step-2 {
    left: 280px;
    top: 136px;
}

.process-step-pill.step-3 {
    left: 310px;
    top: 260px;
}

.process-step-pill.step-4 {
    left: 280px;
    top: 384px;
}

.process-step-pill.step-5 {
    left: 210px;
    top: 508px;
}

.step-num-badge {
    position: absolute;
    left: -22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ececf0;
    color: #141517;
    font-size: 17px;
    font-weight: 800;
    font-family: Montserrat, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 3;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step-pill:hover .step-num-badge {
    background: #ffffff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}

.step-text {
    flex: 1;
    min-width: 0;
}

.step-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #d8b168;
    margin: 0 0 2px;
    font-family: Montserrat, sans-serif;
    line-height: 1.2;
}

.step-desc {
    font-size: 14px;
    line-height: 1.35;
    color: #d2d2d6;
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
}

.step-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-left: 12px;
    color: #d8b168;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    display: block;
    stroke: #d8b168;
}

.process-step-pill:hover .step-icon {
    transform: scale(1.1);
    color: #f7dba0;
}

.process-step-pill:hover .step-icon svg {
    stroke: #f7dba0;
}

/* Responsive Styles */
@media (max-width: 1160px) and (min-width: 992px) {
    .process-visual-wrapper {
        transform: scale(0.85);
        transform-origin: left center;
        margin-right: -80px;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: 500px;
        padding: 100px 0 20px;
    }

    .hero-box {
        padding: 40px 24px 35px;
    }

    .hero-box h1 {
        font-size: 30px;
    }

    .process-section {
        padding: 0px 0 30px;
    }

    .process-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }

    .process-left-content {
        max-width: 100%;
        text-align: center;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    .process-left-content .process-title {
        font-size: 32px;
        margin-bottom: 0;
    }

    .process-visual-wrapper {
        min-width: 0;
        max-width: 100%;
        height: auto;
        margin-top: -88px;
    }

    .process-arc-svg {
        display: none;
    }

    .process-cards-list {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-left: 0;
    }

    .process-cards-list::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        bottom: 0;
        width: 2px;
        border-left: 2px dashed rgba(255, 255, 255, 0.35);
        z-index: 0;
    }

    .process-step-pill {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: auto;
        min-height: 80px;
        border-radius: 24px;
        padding: 35px 20px 20px 20px;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        flex-direction: column;
        text-align: center;
        z-index: 1;
        background: #191b1e;
    }

    .step-num-badge {
        left: 50%;
        transform: translateX(-50%);
        top: -20px !important;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .process-step-pill:hover .step-num-badge {
        transform: translateX(-50%) scale(1.1);
    }

    .step-text {
        text-align: center;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc {
        font-size: 13.5px;
    }

    .step-icon {
        margin: 12px auto 0;
    }
}

@media (max-width: 540px) {
    .process-left-content .process-title {
        font-size: 26px;
    }

    .process-step-pill {
        padding: 30px 16px 16px 16px;
        border-radius: 18px;
    }

    .step-num-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: -18px !important;
    }

    .step-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        margin-left: 0;
    }

    .step-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Figma-matched benefit cards */

.cards {
    gap: 44px;
}

.cards article {
    width: 100%;
    max-width: 388px;
    height: 350px;
    border: 1px solid #66552e;
    border-radius: 26px;
    background: #202021;
    padding: 44px 36px;
    box-sizing: border-box;
    margin: 0 auto;
}

.cards i {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: #464648;
    margin: 0;
    display: grid;
    place-items: center;
}

.cards i svg {
    width: 48px;
    height: 48px;
    display: block;
    fill: none;
    stroke: #e5bb64;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cards h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 27px 0 22px;
}

.cards p {
    font-size: 16px;
    line-height: 1.9;
    color: #c9c7c4;
    margin: 0;
}

.cards article:nth-child(1) i svg>path:first-child,
.cards article:nth-child(2) i svg>path:first-child,
.cards article:nth-child(3) i svg>* {
    fill: #e5bb64;
    stroke: #e5bb64;
}

.cards article:nth-child(1) i svg>path:last-child,
.cards article:nth-child(4) i svg>path:last-child,
.cards article:nth-child(5) i svg>path:last-child {
    stroke: #464648;
    fill: none;
    stroke-width: 4;
}

.cards article:nth-child(4) i svg>path:first-child,
.cards article:nth-child(5) i svg>circle {
    fill: #e5bb64;
    stroke: #e5bb64;
}

.cards article:nth-child(6) i svg {
    stroke-width: 5;
}

@media (max-width: 800px) {
    .benefits {
        width: 90%;
    }

    .cards {
        gap: 16px;
    }

    .cards article {
        min-height: 330px;
        padding: 30px 24px;
    }

    .cards i {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .cards i svg {
        width: 40px;
        height: 40px;
    }

    .cards h3 {
        font-size: 18px;
    }

    .cards p {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .cards article {
        min-height: auto;
    }
}

.cards i img {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

@media (max-width: 760px) {
    body {
        font-size: 13px;
        overflow-x: hidden;
    }

    .hero {
        min-height: 510px;
        height: auto;
        padding: 60px 20px 80px;
    }

    .hero-box {
        height: auto !important;
        padding: 34px 24px;
        margin-bottom: 6px;
    }

    .hero-box span {
        font-size: 9px;
    }

    .hero-box h1 {
        display: block !important;
        font-size: 26px !important;
        color: #fff !important;
        line-height: 1.2 !important;
        margin: 10px 0 20px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-box p {
        font-size: 13px;
    }

    .gold-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .overview {
        padding: 25px 0 30px;
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .overview p {
        font-size: 12px;
    }

    .overview img {
        border-radius: 12px;
    }

    .benefits {
        padding: 8px 0 60px;
    }

    .benefit-head {
        display: block;
        margin-bottom: 36px;
    }

    .benefit-head h2 {
        font-size: 29px;
        line-height: 1.12;
    }

    .benefit-head p {
        font-size: 12px;
        margin-top: 18px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cards article {
        height: auto;
        padding: 30px 24px 24px;
        border-radius: 22px;
    }

    .cards i {
        border-radius: 9px;
        width: 66px;
        height: 66px;
    }

    .cards i svg {
        width: 36px;
        height: 36px;
        overflow: visible;
        stroke-width: 2.5;
    }

    .cards h3 {
        font-size: 18px;
        margin: 24px 0 16px;
    }

    .cards p {
        font-size: 13px;
        line-height: 1.8;
    }


    .pricing {
        padding: 65px 0;
    }

    .center {
        margin-top: -50px;
        margin-bottom: 32px;
    }

    .center h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .plans {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plans article {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 16px;
    }

    .plans .featured {
        transform: none;
    }

    .plans article>p {
        min-height: 0;
    }

    .plans li {
        margin: 11px 0;
    }

    .faq {
        padding: 20px 0 60px;
    }

    .faq h2 {
        font-size: 26px;
    }

    .faq details {
        padding: 18px 4px;
    }

    .faq details p {
        width: 100%;
        margin: 12px 0 0;
    }

    .cta {
        height: 320px;
        border-radius: 16px;
        padding: 24px;
    }

    .cta h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .cta p br {
        display: none;
    }
}

.hero {
    background-image: url("/assets/pdf/asset-12.png");
}

.cta {
    background-image: url("/assets/pdf/asset-15.png");
}

/* Shared Blade header/footer components */
.container,
.service-page-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    box-sizing: border-box;
}





/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
    padding-block: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.news-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
}

.newsletter h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 1;
    color: var(--text);
}

.news-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.news-form input {
    width: 100%;
    max-width: 449px;
    height: 60px;
    min-width: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    padding: 0 22px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color .25s var(--ease);
}

.news-form input::placeholder {
    color: #B6B6B7;
}

.news-form input:focus {
    border-color: var(--gold);
}

.news-form .btn {
    border-radius: 8px;
    height: 62px;
    padding-inline: 32px;
    font-size: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    --gold: #E5CA83;
    --gold-deep: #BC9554;
    --grad-gold: linear-gradient(110deg, rgba(175, 132, 69, 1) 0%, rgba(232, 201, 136, 1) 33%, rgba(229, 202, 131, 1) 66%, rgba(175, 132, 69, 1) 100%);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding-top: 0;
    background: var(--bg);
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1.15fr 1.1fr;
    gap: 44px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.foot-logo {
    width: 217px;
    height: 54px;
    margin-bottom: 20px;
}

.foot-brand p {
    margin: 0 0 26px;
    max-width: 360px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #28282B;
    display: grid;
    place-items: center;
    transition: .28s var(--ease);
}

.socials svg {
    width: 17px;
    height: 17px;
}

.socials a:hover {
    transform: translateY(-3px);
}

.foot-col h4 {
    margin: 0 0 24px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .03em;
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.foot-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.foot-col li {
    margin-bottom: 14px;
}

.foot-col a {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    transition: color .22s var(--ease), padding-left .22s var(--ease);
}

.foot-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text);
}

.contact-list a {
    color: var(--text);
    transition: color .22s var(--ease);
}

.contact-list a:hover {
    color: var(--gold);
}

.ci {
    width: 22px;
    height: 22px;
    flex: none;
    color: var(--gold);
    display: grid;
    place-items: center;
    margin-top: 1px;
}

.ci svg {
    width: 19px;
    height: 19px;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-block: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.foot-bottom p {
    margin: 0;
    font-size: 15px;
    color: var(--text);
}

.pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .news-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .news-form {
        flex: 1 1 auto;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        gap: 12px;
    }

    .newsletter h2 {
        text-align: center;
        white-space: normal;
        font-size: 18px;
        margin-bottom: 24px;
    }

    .news-form {
        flex-direction: row;
        padding: 0;
        gap: 0;
    }

    .news-form input {
        border: 1px solid white;
        border-right: none;
        border-radius: 8px 0 0 8px;
        height: 50px;
        background: transparent;
        flex: 1 1 auto;
    }

    .news-form .btn {
        border-radius: 0 8px 8px 0;
        height: 50px;
        box-shadow: none !important;
        padding-inline: 18px;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .foot-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .foot-brand p {
        text-align: justify;
        text-align-last: center;
        font-size: 13.5px;
    }

    .foot-logo {
        margin-inline: auto;
    }

    .socials {
        justify-content: center;
    }

    .foot-col:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .foot-col:last-child h4 {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .foot-bottom {
        flex-direction: column;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 8px rgba(229, 202, 131, 0.3);
}

.custom-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 202, 131, 0.15);
}

.custom-cursor.cursor-black {
    border-color: #000;
}

.custom-cursor.cursor-primary {
    border-color: var(--gold) !important;
}