/* 
Venture Plan Solutions
Primary: Navy #0F172A
Gold: #C8A75D
Background: #F8FAFC
*/

:root {
    --navy: #0F172A;
    --navy-2: #16213A;
    --gold: #C8A75D;
    --gold-dark: #B08E45;
    --soft: #F8FAFC;
    --text: #1E293B;
    --muted: #64748B;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.15;
}

a {
    text-decoration: none;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    padding: 14px 0;
}

.brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: "Poppins", sans-serif;
    color: var(--navy);
    font-weight: 800;
    font-size: 1.55rem;
}

.brand-sub {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: .80rem;
    font-weight: 800;
    margin-top: 4px;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 12px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link.active {
    font-weight: 800;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
}

.custom-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 22px;
    transition: all 0.2s ease;
}

.btn-sm-rounded {
    padding: 10px 18px;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

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

.btn-outline-navy {
    border: 1px solid rgba(15, 23, 42, 0.2);
    color: var(--navy);
    background: var(--white);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-light-outline {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    background: transparent;
}

.btn-light-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
    background:
        radial-gradient(circle at 8% 12%, rgba(200,167,93,0.12), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 80px;
    background: rgba(200, 167, 93, 0.12);
}

.hero-shape-two {
    width: 240px;
    height: 240px;
    left: -120px;
    bottom: -90px;
    background: rgba(15, 23, 42, 0.06);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero-section h1 {
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    max-width: 850px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 1.14rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-trust {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-trust span {
    color: var(--gold);
    margin: 0 7px;
}

.hero-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 167, 93, 0.20);
    border-radius: 24px;
    pointer-events: none;
}

.hero-card-header,
.hero-card-footer,
.progress-row,
.estimate-line,
.estimate-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.hero-card-header {
    margin-bottom: 28px;
}

.hero-card-header i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: rgba(200, 167, 93, 0.17);
    border-radius: 18px;
    font-size: 1.7rem;
}

.mini-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero-card h2 {
    font-size: 1.35rem;
    margin: 5px 0 0;
}

.progress-area {
    margin-bottom: 20px;
}

.progress-row {
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 700;
}

.progress {
    height: 9px;
    background: #EEF2F7;
    border-radius: 999px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--navy), var(--gold));
    border-radius: 999px;
}

.hero-card-footer {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 22px;
}

.hero-card-footer span {
    color: var(--muted);
    display: block;
    font-size: 0.86rem;
}

.hero-card-footer strong {
    color: var(--navy);
}

.hero-card-footer a {
    color: var(--gold-dark);
    font-weight: 900;
}

/* Sections */
.section-pad {
    padding: 86px 0;
}

.bg-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
}

.section-heading h2,
.section-pad h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.lead-text {
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 26px;
}

.value-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 167, 93, 0.15);
    color: var(--gold-dark);
    border-radius: 16px;
    font-size: 1.45rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.service-pill:hover {
    border-color: rgba(200, 167, 93, 0.65);
    color: var(--gold-dark);
}

.service-pill i {
    color: var(--gold-dark);
    font-size: 1.25rem;
}

/* Quote Highlight */
.quote-highlight {
    background: var(--white);
}

.quote-panel {
    background: linear-gradient(135deg, var(--navy) 0%, #15233E 100%);
    color: var(--white);
    border-radius: 34px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.quote-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(200, 167, 93, 0.13);
    border-radius: 50%;
    right: -90px;
    top: -70px;
}

.quote-panel h2,
.quote-panel h3 {
    color: var(--white);
}

.quote-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.gold-kicker {
    color: var(--gold);
}

.quote-bullets {
    display: grid;
    gap: 10px;
    margin: 24px 0 16px;
    color: var(--white);
    font-weight: 700;
}

.quote-bullets i {
    color: var(--gold);
    margin-right: 8px;
}

.small-note {
    font-size: 0.9rem;
}

.estimate-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    color: var(--text);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.estimate-card h3 {
    color: var(--navy);
    margin-bottom: 22px;
}

.estimate-line {
    padding: 11px 0;
    color: var(--muted);
}

.estimate-line strong,
.estimate-total strong {
    color: var(--navy);
}

.estimate-total {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
}

/* Checks */
.check-list {
    display: grid;
    gap: 14px;
}

.check-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
    font-weight: 700;
}

.check-list i {
    color: var(--gold-dark);
    font-size: 1.25rem;
}

/* Process */
.process-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.process-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 1.08rem;
}

.process-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* Who We Help */
.who-panel {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 42px;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audience-tags span {
    display: inline-flex;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 0.95rem;
}

/* Final CTA */
.final-cta {
    background:
        radial-gradient(circle at 10% 10%, rgba(200, 167, 93, 0.18), transparent 26%),
        linear-gradient(135deg, var(--navy), #121E35);
    padding: 86px 0;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-cta p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    max-width: 650px;
    margin: 14px auto 28px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Footer */
.site-footer {
    background: #0B1120;
    color: rgba(255,255,255,0.72);
    padding: 64px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col h3 {
    font-size: 1.35rem;
}

.footer-col h4 {
    font-size: 1rem;
}

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

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    color: rgba(255,255,255,0.72);
}

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

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold) !important;
    font-weight: 900;
    margin-top: 8px;
}

.footer-bottom {
    padding-top: 22px;
    text-align: center;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 18px;
    }

    .nav-item.ms-lg-3 {
        margin-top: 10px;
    }

    .hero-section {
        padding: 74px 0 64px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(200, 167, 93, 0.12);
        border-radius: 12px;
        padding-left: 14px !important;
    }
}

@media (max-width: 767px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    .section-pad {
        padding: 64px 0;
    }

    .hero-card,
    .quote-panel,
    .who-panel {
        border-radius: 24px;
        padding: 26px;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }
}

.mobile-bottom-quote {
    display: none;
}

@media (max-width: 991px) {
    .mobile-bottom-quote {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 14px;
        z-index: 9999;
        display: flex;
        justify-content: center;
        padding: 0 16px;
        pointer-events: none;
    }

    .mobile-bottom-quote .btn {
        pointer-events: auto;
        width: 100%;
        max-width: 420px;
        padding: 14px 20px;
        box-shadow: 0 14px 35px rgba(15, 23, 42, 0.25);
    }

    body {
        padding-bottom: 82px;
    }
}

/* Modal */
.selected-package-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.quote-package-modal[hidden] {
	display: none;
}

.quote-package-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.quote-package-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .58);
	backdrop-filter: blur(3px);
}

.quote-package-modal-box {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 680px;
	max-height: 82vh;
	overflow: auto;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
}

.quote-package-modal-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: #f1f5f9;
	color: var(--navy);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.quote-package-modal-close:hover {
	background: rgba(200, 167, 93, .18);
	color: var(--gold-dark);
}

.quote-package-modal-box h3 {
	color: var(--navy);
	font-size: 1.55rem;
	margin: 8px 0 14px;
}

.quote-package-modal-body {
	color: var(--text);
	font-size: .95rem;
	line-height: 1.65;
}

.inclusion-section {
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 14px 16px;
	margin-bottom: 12px;
	background: #fcfcfd;
}

.inclusion-section-title {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	color: var(--navy);
	font-weight: 900;
	margin-bottom: 8px;
}

.inclusion-section-title span:last-child {
	color: var(--gold-dark);
	white-space: nowrap;
}

.inclusion-section ul {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
}

.inclusion-section li {
	margin-bottom: 5px;
}

.inclusion-empty {
	color: var(--muted);
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.selected-package-actions {
		width: 100%;
	}

	.selected-package-actions .btn {
		width: 100%;
	}

	.quote-package-modal-box {
		padding: 24px 20px;
	}
}
.inclusion-summary-total {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 16px 0 18px;
}

.inclusion-summary-total div {
	background: rgba(200, 167, 93, .12);
	border: 1px solid rgba(200, 167, 93, .24);
	border-radius: 16px;
	padding: 14px 16px;
}

.inclusion-summary-total span {
	display: block;
	color: var(--muted);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
}

.inclusion-summary-total strong {
	display: block;
	color: var(--navy);
	font-size: 1.15rem;
	font-weight: 900;
}

@media (max-width: 767px) {
	.inclusion-summary-total {
		grid-template-columns: 1fr;
	}
}
/* close Modal */

/* Request Own Section */
/* Own Sections Tabs */
.section-mode-tabs {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: #f1f5f9;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 5px;
	margin: 4px 0 18px;
}

.section-mode-tab {
	border: 0;
	background: transparent;
	color: var(--muted);
	font-weight: 900;
	font-size: .9rem;
	border-radius: 999px;
	padding: 10px 18px;
	cursor: pointer;
	transition: all .2s ease;
}

.section-mode-tab.active {
	background: var(--navy);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(15, 23, 42, .16);
}

.section-mode-tab:hover {
	color: var(--navy);
}

.section-mode-tab.active:hover {
	color: var(--white);
}

.own-sections-wrap {
	margin-top: 12px;
}

.own-sections-card {
	background: var(--white);
	border: 1px dashed rgba(200, 167, 93, .75);
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.own-sections-card .form-label {
	color: var(--navy);
	font-weight: 900;
	margin-bottom: 10px;
}

.own-sections-card .form-control {
	border-radius: 14px;
	border-color: var(--border);
	padding: 12px 14px;
	min-height: 190px;
}

.own-sections-card .form-control:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 .2rem rgba(200, 167, 93, .18);
}

.own-sections-note {
	color: var(--muted);
	font-size: .9rem;
	margin: 12px 0 0;
}

@media (max-width: 767px) {
	.section-mode-tabs {
		display: grid;
		grid-template-columns: 1fr;
		border-radius: 18px;
		width: 100%;
	}

	.section-mode-tab {
		width: 100%;
		border-radius: 14px;
	}
}

/* Close Request own section*/

/* Live Estimate Package Inclusions Link */
.summary-inclusions-link-wrap {
	margin: 12px 0 6px;
	text-align: right;
}

.summary-inclusions-link {
	border: 0;
	background: transparent;
	color: var(--gold-dark);
	font-size: .92rem;
	font-weight: 900;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.summary-inclusions-link:hover {
	color: var(--navy);
}

/* Close Live Estimate Package Inclusions Link */

/* Own Sections Validation */
.own-sections-error {
	color: #b91c1c;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	padding: 10px 12px;
	font-size: .9rem;
	font-weight: 800;
	margin: 12px 0 0;
}

.own-sections-card .form-control.is-invalid {
	border-color: #dc2626;
	box-shadow: 0 0 0 .2rem rgba(220, 38, 38, .12);
}
/* Close Own Sections Validation */

/* Anti-Spam Honeypot */
.quote-hp-wrap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.quote-hp-wrap input {
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
}
/* Close Anti-Spam Honeypot */

/* Direct links to individual services */
.service-anchor {
    scroll-margin-top: 110px;
}

/* Make the selected service easier to recognize */
.service-anchor:target .value-card {
    border-color: rgba(200, 167, 93, 0.85);
    background:
        linear-gradient(
            145deg,
            rgba(200, 167, 93, 0.13),
            #ffffff 70%
        );
    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.13),
        0 0 0 3px rgba(200, 167, 93, 0.10);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .service-anchor {
        scroll-margin-top: 90px;
    }
}

/* Page-specific hero backgrounds
   Shared layout remains consistent; only the visual tone changes. */
.hero-home {
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(200, 167, 93, .28),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(15, 23, 42, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fffdf7 0%,
            #f7ecd0 56%,
            #f4f7fb 100%
        );
}

.hero-home .hero-shape-one {
    background: rgba(200, 167, 93, .22);
}

.hero-home .hero-shape-two {
    background: rgba(15, 23, 42, .075);
}

.hero-services {
    background:
        radial-gradient(
            circle at 88% 14%,
            rgba(59, 130, 246, .11),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 84%,
            rgba(15, 23, 42, .045),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #edf5fb 100%
        );
}

.hero-pricing {
    background:
        radial-gradient(
            circle at 10% 14%,
            rgba(200, 167, 93, .22),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(176, 142, 69, .07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fffefb 0%,
            #f8efd9 100%
        );
}

.hero-about {
    background:
        radial-gradient(
            circle at 86% 14%,
            rgba(15, 118, 110, .12),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 82%,
            rgba(15, 23, 42, .04),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #edf8f5 100%
        );
}

.hero-contact {
    background:
        radial-gradient(
            circle at 10% 14%,
            rgba(71, 85, 105, .11),
            transparent 31%
        ),
        radial-gradient(
            circle at 88% 18%,
            rgba(59, 130, 246, .07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #eef2f7 100%
        );
}

/* Homepage hero card carousel */
.home-hero-carousel {
    position: relative;
}

.home-hero-carousel-track {
    display: grid;
}

.home-hero-slide {
    grid-area: 1 / 1;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(20px) scale(.985);
    transition:
        opacity .48s ease,
        transform .48s ease,
        visibility .48s ease;
}

.home-hero-slide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.home-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.home-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .84);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    cursor: pointer;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible {
    border-color: rgba(200, 167, 93, .8);
    background: var(--white);
    transform: translateY(-2px);
}

.home-carousel-arrow:focus-visible,
.home-carousel-dot:focus-visible {
    outline: 3px solid rgba(15, 118, 110, .28);
    outline-offset: 3px;
}

.home-carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .23);
    cursor: pointer;
    transition:
        width .25s ease,
        background .25s ease,
        transform .25s ease;
}

.home-carousel-dot:hover {
    transform: scale(1.15);
}

.home-carousel-dot.active {
    width: 28px;
    background: var(--gold-dark);
}

@media (max-width: 767px) {
    .home-carousel-controls {
        margin-top: 14px;
    }

    .home-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .home-hero-slide .hero-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide,
    .home-carousel-arrow,
    .home-carousel-dot {
        transition: none;
    }
}

/* Approved homepage hero layout + image carousel */
.brand-wrap {
    flex-shrink: 0;
}

.brand-logo-horizontal {
    display: block;
    width: clamp(230px, 24vw, 360px);
    height: auto;
    max-height: 82px;
    object-fit: contain;
}

.hero-home {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 4% 20%, rgba(200, 167, 93, .12), transparent 18%),
        radial-gradient(circle at 48% 8%, rgba(200, 167, 93, .08), transparent 10%),
        radial-gradient(circle at 52% 74%, rgba(200, 167, 93, .10), transparent 10%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-dotted-pattern {
    position: absolute;
    top: 24px;
    left: 0;
    width: 112px;
    height: 160px;
    opacity: .45;
    background-image: radial-gradient(rgba(200, 167, 93, .55) 1.3px, transparent 1.3px);
    background-size: 10px 10px;
    pointer-events: none;
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(200, 167, 93, .45);
    border-radius: 999px;
    pointer-events: none;
}

.hero-ring-one {
    top: 38px;
    left: 42%;
    width: 58px;
    height: 58px;
}

.hero-ring-two {
    left: -42px;
    bottom: 190px;
    width: 96px;
    height: 96px;
}

.hero-home .row {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: var(--gold-dark);
}

.hero-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 6px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    font-size: .9rem;
    box-shadow: 0 10px 22px rgba(200, 167, 93, .28);
}

.hero-home h1 {
    max-width: 760px;
    letter-spacing: -.045em;
    color: #081a34;
}

.hero-home .hero-subtitle {
    max-width: 650px;
    color: #475569;
}

.hero-home .btn-gold {
    box-shadow: 0 12px 28px rgba(176, 142, 69, .22);
}

.hero-home .btn-outline-navy {
    border: 1.5px solid rgba(15, 23, 42, .85);
    color: #081a34;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.home-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.home-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: .92rem;
    line-height: 1.25;
    font-weight: 500;
}

.home-trust-item i {
    color: var(--gold-dark);
    font-size: 1.6rem;
}

.home-trust-dot {
    width: 4px;
    height: 4px;
    background: var(--gold-dark);
    border-radius: 999px;
    opacity: .82;
}

.home-hero-carousel {
    position: relative;
    isolation: isolate;
}

.home-hero-carousel-track {
    position: relative;
    min-height: 560px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 560px;
    border: 3px solid rgba(255, 255, 255, .94);
    border-radius: 30px;
    box-shadow:
        0 28px 70px rgba(15, 23, 42, .18),
        0 0 0 1px rgba(15, 23, 42, .06);
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 18, 37, .98) 0%,
            rgba(5, 18, 37, .92) 36%,
            rgba(5, 18, 37, .62) 58%,
            rgba(5, 18, 37, .18) 100%
        ),
        var(--slide-image);
    background-size: cover;
    background-position: center right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px) scale(.992);
    transition:
        opacity 1.35s ease,
        transform 1.35s ease,
        visibility 1.35s ease;
}

.home-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(200, 167, 93, .18), transparent 28%),
        radial-gradient(circle at 84% 88%, rgba(200, 167, 93, .09), transparent 24%);
    pointer-events: none;
}

.home-hero-slide.active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.home-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(100%, 620px);
    min-height: 560px;
    padding: 38px 38px 34px;
    color: var(--white);
}

.home-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 10px 18px;
    margin-bottom: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    font-size: .82rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .045em;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .22);
}

.home-slide-badge i {
    font-size: .95rem;
}

.home-slide-content h2 {
    color: var(--white);
    margin: 0 0 8px;
    font-size: clamp(2.25rem, 3.1vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.04em;
    text-shadow: 0 4px 22px rgba(0, 0, 0, .25);
}

.home-slide-subtitle {
    color: #f7c866;
    margin: 0 0 28px;
    font-size: 1.08rem;
    font-weight: 800;
}

.home-slide-list {
    display: grid;
    gap: 19px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-slide-list li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, .94);
    font-size: 1rem;
    line-height: 1.48;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .18);
}

.home-slide-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: var(--gold);
    border: 2px solid rgba(200, 167, 93, .9);
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
}

.home-slide-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: auto;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .62);
}

.home-slide-best {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 14px;
}

.home-slide-best i {
    color: var(--gold);
    font-size: 2rem;
}

.home-slide-best span {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 2px;
}

.home-slide-best strong {
    display: block;
    color: var(--white);
    font-size: .98rem;
    line-height: 1.35;
}

.home-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 230px;
    padding: 16px 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
    white-space: nowrap;
}

.home-slide-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.home-carousel-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.home-carousel-arrow {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    color: var(--white);
    background: #08203f;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, .28);
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition:
        background .22s ease,
        transform .22s ease,
        box-shadow .22s ease;
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible {
    color: var(--white);
    background: #0e2b52;
    transform: translateY(-50%) scale(1.04);
}

.home-carousel-prev {
    left: -29px;
}

.home-carousel-next {
    right: -29px;
}

.home-carousel-arrow i {
    font-size: 1.65rem;
}

.home-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 13px;
    pointer-events: auto;
    transform: translateX(-50%);
}

.home-carousel-dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition:
        background .24s ease,
        transform .24s ease,
        width .24s ease;
}

.home-carousel-dot.active {
    width: 18px;
    background: var(--gold);
}

.home-carousel-dot:hover {
    transform: scale(1.18);
}

.home-carousel-arrow:focus-visible,
.home-carousel-dot:focus-visible {
    outline: 3px solid rgba(200, 167, 93, .5);
    outline-offset: 4px;
}

@media (min-width: 1400px) {
    .hero-home .container {
        max-width: 1400px;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 590px;
    }
}

@media (max-width: 1199px) {
    .brand-logo-horizontal {
        width: clamp(210px, 25vw, 300px);
    }

    .home-slide-content {
        width: min(100%, 560px);
        padding: 34px 32px 32px;
    }

    .home-slide-footer {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-slide-cta {
        justify-self: start;
    }
}

@media (max-width: 991px) {
    .brand-logo-horizontal {
        width: 250px;
        max-height: 66px;
    }

    .hero-home {
        min-height: auto;
        padding: 72px 0 64px;
    }

    .home-trust-row {
        margin-bottom: 14px;
    }

    .home-hero-carousel {
        margin-top: 8px;
    }

    .home-carousel-prev {
        left: 12px;
    }

    .home-carousel-next {
        right: 12px;
    }
}

@media (max-width: 767px) {
    .brand-logo-horizontal {
        width: min(230px, 72vw);
        max-height: 58px;
    }

    .hero-home h1 {
        font-size: clamp(2.25rem, 11vw, 3.15rem);
    }

    .hero-eyebrow {
        align-items: flex-start;
        line-height: 1.4;
    }

    .home-trust-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .home-trust-dot {
        display: none;
    }

    .home-trust-item {
        align-items: flex-start;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 690px;
    }

    .home-hero-slide {
        border-radius: 26px;
        background-image:
            linear-gradient(
                180deg,
                rgba(5, 18, 37, .94) 0%,
                rgba(5, 18, 37, .86) 52%,
                rgba(5, 18, 37, .58) 100%
            ),
            var(--slide-image);
        background-position: center;
    }

    .home-slide-content {
        padding: 28px 24px 84px;
    }

    .home-slide-badge {
        margin-bottom: 22px;
        font-size: .72rem;
    }

    .home-slide-content h2 {
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .home-slide-subtitle {
        font-size: 1rem;
    }

    .home-slide-list {
        gap: 15px;
    }

    .home-slide-list li {
        font-size: .95rem;
    }

    .home-slide-footer {
        padding-top: 22px;
    }

    .home-slide-cta {
        width: 100%;
        min-width: 0;
        padding: 15px 18px;
        white-space: normal;
        text-align: center;
    }

    .home-carousel-arrow {
        width: 46px;
        height: 46px;
    }

    .home-carousel-arrow i {
        font-size: 1.35rem;
    }

    .home-carousel-dots {
        bottom: 28px;
    }
}

@media (max-width: 420px) {
    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 735px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide,
    .home-carousel-arrow,
    .home-carousel-dot,
    .home-slide-cta {
        transition: none;
    }
}

/* Homepage mockup-match refinement v3
   This layer adjusts the carousel proportions to match the approved screenshot more closely. */
@media (min-width: 1200px) {
    .hero-home .container {
        max-width: 1420px;
    }

    .hero-home {
        min-height: calc(100vh - 96px);
        padding: 74px 0 54px;
    }

    .hero-home .row {
        column-gap: 0;
    }

    .hero-home h1 {
        max-width: 650px;
        font-size: clamp(3.35rem, 4.65vw, 4.9rem);
        line-height: 1.08;
        letter-spacing: -.052em;
        margin-bottom: 24px;
    }

    .hero-home .hero-subtitle {
        max-width: 610px;
        font-size: 1.13rem;
        line-height: 1.68;
        margin-bottom: 32px;
    }

    .home-hero-carousel {
        margin-left: 14px;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 650px;
    }

    .home-hero-slide {
        border-radius: 30px;
        background-image:
            linear-gradient(
                90deg,
                rgba(5, 18, 37, .99) 0%,
                rgba(5, 18, 37, .94) 37%,
                rgba(5, 18, 37, .66) 58%,
                rgba(5, 18, 37, .20) 100%
            ),
            var(--slide-image);
        background-position: center right;
        box-shadow:
            0 26px 72px rgba(15, 23, 42, .17),
            0 0 0 1px rgba(15, 23, 42, .05);
    }

    .home-slide-content {
        width: min(100%, 610px);
        padding: 36px 36px 34px;
    }

    .home-slide-badge {
        padding: 10px 18px;
        margin-bottom: 26px;
        font-size: .81rem;
    }

    .home-slide-content h2 {
        max-width: 440px;
        font-size: clamp(2.55rem, 3.05vw, 3.45rem);
        line-height: 1.02;
        margin-bottom: 10px;
    }

    .home-slide-subtitle {
        font-size: 1.08rem;
        margin-bottom: 30px;
    }

    .home-slide-list {
        gap: 24px;
        max-width: 445px;
    }

    .home-slide-list li {
        grid-template-columns: 34px 1fr;
        gap: 15px;
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .home-slide-footer {
        grid-template-columns: 1fr minmax(260px, auto);
        gap: 22px;
        padding-top: 26px;
        margin-top: auto;
    }

    .home-slide-cta {
        min-width: 260px;
        padding: 16px 24px;
    }

    .home-carousel-prev {
        left: -26px;
    }

    .home-carousel-next {
        right: -26px;
    }

    .home-carousel-dots {
        bottom: 26px;
    }
}

@media (min-width: 1400px) {
    .hero-home .container {
        max-width: 1480px;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 675px;
    }

    .home-slide-content {
        padding: 40px 40px 36px;
    }

    .home-slide-content h2 {
        font-size: clamp(2.7rem, 3.1vw, 3.65rem);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-home {
        padding: 72px 0 60px;
    }

    .hero-home h1 {
        font-size: clamp(2.75rem, 4.6vw, 3.65rem);
        line-height: 1.08;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 610px;
    }

    .home-slide-content {
        padding: 32px 30px 32px;
    }

    .home-slide-footer {
        grid-template-columns: 1fr;
    }
}

/* Header logo match */
@media (min-width: 992px) {
    .site-header .navbar {
        min-height: 96px;
        padding: 8px 0;
    }

    .brand-logo-horizontal {
        width: 360px;
        max-height: 86px;
    }

    .nav-link {
        font-size: 1rem;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .btn-sm-rounded {
        padding: 13px 24px;
    }
}

/* Desktop trust row spacing like approved mockup */
@media (min-width: 1200px) {
    .home-trust-row {
        margin-top: 36px;
        gap: 17px;
    }

    .home-trust-item {
        font-size: .92rem;
    }

    .home-trust-item i {
        font-size: 1.75rem;
    }
}

/* Homepage hero spacing refinement v4 */
@media (min-width: 1200px) {
    .hero-home {
        min-height: auto;
        padding-top: 46px;
        padding-bottom: 44px;
    }

    .hero-home h1 {
        max-width: 640px;
        font-size: clamp(3rem, 4vw, 4.25rem);
        line-height: 1.09;
        margin-bottom: 22px;
    }

    .hero-home .hero-subtitle {
        max-width: 610px;
        font-size: 1.08rem;
        line-height: 1.62;
        margin-bottom: 28px;
    }

    .home-trust-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        margin-top: 28px;
    }

    .home-trust-item {
        gap: 8px;
        font-size: .86rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .home-trust-item i {
        font-size: 1.55rem;
    }

    .home-trust-dot {
        flex: 0 0 4px;
    }

    .home-hero-carousel {
        width: min(100%, 730px);
        margin-left: auto;
        margin-right: 0;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 575px;
    }

    .home-slide-content {
        width: min(100%, 540px);
        padding: 34px 34px 32px;
    }

    .home-slide-content h2 {
        max-width: 410px;
        font-size: clamp(2.35rem, 2.7vw, 3.05rem);
        line-height: 1.03;
    }

    .home-slide-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .home-slide-list {
        gap: 18px;
        max-width: 420px;
    }

    .home-slide-list li {
        font-size: .95rem;
        line-height: 1.45;
    }

    .home-slide-footer {
        grid-template-columns: 1fr minmax(230px, auto);
        gap: 18px;
        padding-top: 23px;
    }

    .home-slide-cta {
        min-width: 230px;
        padding: 15px 20px;
        font-size: .94rem;
    }
}

@media (min-width: 1400px) {
    .hero-home {
        padding-top: 50px;
        padding-bottom: 48px;
    }

    .hero-home h1 {
        font-size: clamp(3.05rem, 4.15vw, 4.45rem);
    }

    .home-hero-carousel {
        width: min(100%, 760px);
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 595px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-home {
        padding-top: 44px;
        padding-bottom: 50px;
    }

    .hero-home h1 {
        font-size: clamp(2.65rem, 4.4vw, 3.45rem);
        line-height: 1.08;
    }

    .home-hero-carousel {
        width: min(100%, 660px);
        margin-left: auto;
        margin-right: 0;
    }

    .home-hero-carousel-track,
    .home-hero-slide,
    .home-slide-content {
        min-height: 560px;
    }
}

/* Carousel CTA alignment fix v6 */
@media (min-width: 768px) {
    .home-slide-footer {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        padding-bottom: 44px;
    }

    .home-slide-cta {
        justify-self: end;
        margin-left: auto;
        margin-right: 0;
        align-self: end;
    }

    .home-carousel-dots {
        bottom: 24px;
    }
}

@media (min-width: 1200px) {
    .home-slide-footer {
        grid-template-columns: minmax(0, 1fr) auto;
        padding-bottom: 40px;
    }

    .home-slide-cta {
        justify-self: end;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .home-slide-footer {
        padding-bottom: 52px;
    }

    .home-slide-cta {
        margin-left: auto;
        margin-right: auto;
    }

    .home-carousel-dots {
        bottom: 24px;
    }
}

/* Carousel timing update v7 */
.home-hero-slide {
    transition:
        opacity 1.35s ease,
        transform 1.35s ease,
        visibility 1.35s ease;
}

/* Carousel timing update v8 */
.home-hero-slide {
    transition:
        opacity 1.35s ease,
        transform 1.35s ease,
        visibility 1.35s ease;
}

/* Carousel dots outside card v9 */
.home-hero-carousel {
    padding-bottom: 42px;
}

.home-carousel-dots {
    bottom: 4px;
}

.home-carousel-arrow {
    top: calc(50% - 21px);
}

@media (min-width: 768px) {
    .home-slide-footer {
        padding-bottom: 0;
    }

    .home-carousel-dots {
        bottom: 4px;
    }
}

@media (min-width: 1200px) {
    .home-slide-footer {
        padding-bottom: 0;
    }

    .home-carousel-dots {
        bottom: 4px;
    }
}

@media (max-width: 767px) {
    .home-hero-carousel {
        padding-bottom: 46px;
    }

    .home-slide-footer {
        padding-bottom: 0;
    }

    .home-carousel-dots {
        bottom: 8px;
    }

    .home-carousel-arrow {
        top: calc(50% - 23px);
    }
}

/* Premium Services Hero */
.services-premium-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 82px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 16%, rgba(200, 167, 93, .28), transparent 30%),
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .08), transparent 24%),
        linear-gradient(135deg, #07152b 0%, #0f172a 52%, #17233d 100%);
}

.services-premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045), transparent 42%),
        radial-gradient(circle at 78% 82%, rgba(200, 167, 93, .15), transparent 28%);
    pointer-events: none;
}

.services-premium-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.services-hero-glow-one {
    width: 280px;
    height: 280px;
    right: -110px;
    top: 40px;
    background: rgba(200, 167, 93, .14);
}

.services-hero-glow-two {
    width: 150px;
    height: 150px;
    left: 44%;
    bottom: -56px;
    border: 1px solid rgba(200, 167, 93, .34);
}

.services-hero-dots {
    position: absolute;
    left: 0;
    top: 48px;
    width: 140px;
    height: 190px;
    opacity: .22;
    background-image: radial-gradient(rgba(255, 255, 255, .75) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    pointer-events: none;
}

.services-hero-eyebrow {
    color: var(--gold);
}

.services-hero-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    font-size: .95rem;
    box-shadow: 0 12px 24px rgba(200, 167, 93, .22);
}

.services-premium-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(2.55rem, 5vw, 4.85rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.services-hero-subtitle {
    max-width: 680px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
    line-height: 1.72;
    margin-bottom: 30px;
}

.services-hero-actions {
    margin-bottom: 30px;
}

.services-premium-hero .btn-gold {
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(200, 167, 93, .24);
}

.btn-services-outline {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(10px);
}

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

.services-hero-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
}

.services-hero-trust div {
    display: grid;
    gap: 9px;
    align-content: start;
    min-height: 104px;
    padding: 16px 14px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    font-size: .86rem;
    line-height: 1.3;
    font-weight: 750;
}

.services-hero-trust i {
    color: var(--gold);
    font-size: 1.35rem;
}

.services-hero-card {
    position: relative;
    overflow: hidden;
    width: min(100%, 590px);
    margin-left: auto;
    padding: 30px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94)),
        radial-gradient(circle at 92% 12%, rgba(200, 167, 93, .18), transparent 32%);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 30px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .28),
        0 0 0 1px rgba(200, 167, 93, .16) inset;
}

.services-hero-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 167, 93, .18);
    border-radius: 24px;
    pointer-events: none;
}

.services-hero-card-header,
.services-hero-service-list,
.services-hero-card-footer {
    position: relative;
    z-index: 2;
}

.services-hero-card-header {
    padding: 4px 2px 18px;
}

.services-hero-card-header h2 {
    margin: 4px 0 10px;
    color: var(--navy);
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.services-hero-card-header p {
    color: var(--muted);
    margin: 0;
}

.services-hero-service-list {
    display: grid;
    gap: 12px;
}

.services-hero-service-list a {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 15px;
    color: var(--text);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.services-hero-service-list a:hover {
    transform: translateY(-2px);
    color: var(--navy);
    background: #ffffff;
    border-color: rgba(200, 167, 93, .62);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.services-hero-service-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--gold-dark);
    background: rgba(200, 167, 93, .14);
    border-radius: 16px;
    font-size: 1.35rem;
}

.services-hero-service-list strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

.services-hero-service-list small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
    margin-top: 3px;
}

.services-hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
    padding: 18px 2px 0;
    border-top: 1px solid var(--border);
}

.services-hero-card-footer span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.services-hero-card-footer strong {
    display: block;
    color: var(--navy);
    margin-top: 3px;
}

.services-hero-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    padding: 12px 17px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(176, 142, 69, .22);
}

.services-hero-card-footer a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

@media (max-width: 1199px) {
    .services-hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 600px;
    }

    .services-hero-trust div {
        min-height: 82px;
    }
}

@media (max-width: 991px) {
    .services-premium-hero {
        padding: 70px 0 68px;
    }

    .services-premium-hero h1 {
        font-size: clamp(2.35rem, 9vw, 3.8rem);
    }

    .services-hero-card {
        margin: 8px auto 0;
    }
}

@media (max-width: 767px) {
    .services-premium-hero {
        padding: 58px 0 58px;
    }

    .services-hero-actions .btn {
        width: 100%;
    }

    .services-hero-trust {
        grid-template-columns: 1fr;
    }

    .services-hero-trust div {
        display: flex;
        align-items: center;
        min-height: auto;
    }

    .services-hero-card {
        padding: 22px;
        border-radius: 24px;
    }

    .services-hero-service-list a {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 13px;
    }

    .services-hero-service-list i {
        width: 44px;
        height: 44px;
    }

    .services-hero-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-hero-card-footer a {
        width: 100%;
        justify-content: center;
    }
}

/* Signature Services Hero v2 - distinct from Quote Builder */
.services-signature-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 18%, rgba(200, 167, 93, .22), transparent 27%),
        radial-gradient(circle at 84% 18%, rgba(15, 23, 42, .075), transparent 28%),
        linear-gradient(135deg, #fffdf7 0%, #f7ecd0 46%, #f4f7fb 100%);
}

.services-signature-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .045));
    pointer-events: none;
}

.services-signature-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 280px;
    height: 260px;
    opacity: .22;
    background-image:
        linear-gradient(rgba(15, 23, 42, .20) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .20) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: radial-gradient(circle at 100% 0%, #000 0, transparent 72%);
    pointer-events: none;
}

.services-signature-ring {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.services-ring-one {
    width: 96px;
    height: 96px;
    left: -42px;
    top: 120px;
    border: 1px solid rgba(200, 167, 93, .45);
}

.services-ring-two {
    width: 150px;
    height: 150px;
    right: 40%;
    bottom: -72px;
    background: rgba(200, 167, 93, .12);
}

.services-signature-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .88fr);
    gap: 58px;
    align-items: center;
}

.services-signature-eyebrow {
    color: var(--gold-dark);
}

.services-signature-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    font-size: .95rem;
    box-shadow: 0 12px 24px rgba(176, 142, 69, .24);
}

.services-signature-hero h1 {
    max-width: 810px;
    margin: 0 0 22px;
    color: #081a34;
    font-size: clamp(2.65rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.services-signature-subtitle {
    max-width: 720px;
    color: #475569;
    font-size: 1.14rem;
    line-height: 1.72;
    margin-bottom: 30px;
}

.services-signature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.services-signature-hero .btn-navy {
    box-shadow: 0 16px 34px rgba(15, 23, 42, .16);
}

.services-signature-hero .btn-gold {
    box-shadow: 0 16px 34px rgba(176, 142, 69, .20);
}

.services-signature-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 690px;
}

.services-signature-metrics div {
    min-height: 104px;
    padding: 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
    backdrop-filter: blur(10px);
}

.services-signature-metrics strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 9px;
}

.services-signature-metrics span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.35;
    font-weight: 800;
}

.services-suite-panel {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .88)),
        radial-gradient(circle at 92% 8%, rgba(200, 167, 93, .22), transparent 34%);
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 34px;
    box-shadow:
        0 32px 80px rgba(15, 23, 42, .18),
        0 0 0 1px rgba(200, 167, 93, .18) inset;
}

.services-suite-panel::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(200, 167, 93, .20);
    border-radius: 27px;
    pointer-events: none;
}

.services-suite-header,
.services-suite-feature,
.services-suite-map,
.services-suite-footer {
    position: relative;
    z-index: 2;
}

.services-suite-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.services-suite-header span {
    color: var(--gold-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.services-suite-header strong {
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.25;
    text-align: right;
}

.services-suite-feature {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(200, 167, 93, .18), transparent 28%),
        linear-gradient(135deg, #0f172a, #172544);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .22);
}

.services-suite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    color: var(--gold);
    background: rgba(200, 167, 93, .12);
    border: 1px solid rgba(200, 167, 93, .28);
    border-radius: 20px;
    font-size: 2rem;
}

.services-suite-feature span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 5px;
}

.services-suite-feature strong {
    display: block;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 1.45rem;
    line-height: 1.18;
    margin-bottom: 8px;
}

.services-suite-feature p {
    color: rgba(255, 255, 255, .76);
    margin: 0;
    line-height: 1.58;
}

.services-suite-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 18px;
}

.suite-map-card {
    display: grid;
    gap: 12px;
    align-content: space-between;
    min-height: 136px;
    padding: 18px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.suite-map-card:hover {
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

.suite-map-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.28rem;
}

.suite-map-card span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

.suite-card-gold {
    background: linear-gradient(145deg, #fffdf7, #f6e8c6);
    border-color: rgba(176, 142, 69, .30);
}

.suite-card-gold i {
    color: #8b682a;
    background: rgba(200, 167, 93, .22);
}

.suite-card-blue {
    background: linear-gradient(145deg, #fbfdff, #dbeafe);
    border-color: rgba(37, 99, 235, .22);
}

.suite-card-blue i {
    color: #1d4ed8;
    background: rgba(37, 99, 235, .12);
}

.suite-card-green {
    background: linear-gradient(145deg, #fbfffd, #d9f5e7);
    border-color: rgba(15, 118, 110, .22);
}

.suite-card-green i {
    color: #0f766e;
    background: rgba(15, 118, 110, .12);
}

.suite-card-purple {
    background: linear-gradient(145deg, #fffbff, #eee4ff);
    border-color: rgba(126, 34, 206, .18);
}

.suite-card-purple i {
    color: #7e22ce;
    background: rgba(126, 34, 206, .11);
}

.services-suite-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.services-suite-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: .84rem;
    font-weight: 850;
}

.services-suite-footer i {
    color: var(--gold-dark);
}

@media (max-width: 1199px) {
    .services-signature-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
        gap: 38px;
    }

    .services-signature-metrics {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .services-signature-metrics div {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .services-signature-hero {
        padding: 72px 0 68px;
    }

    .services-signature-layout {
        grid-template-columns: 1fr;
    }

    .services-suite-panel {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .services-signature-hero {
        padding: 58px 0 58px;
    }

    .services-signature-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.45rem);
    }

    .services-signature-actions .btn {
        width: 100%;
    }

    .services-signature-metrics,
    .services-suite-map {
        grid-template-columns: 1fr;
    }

    .services-suite-panel {
        padding: 22px;
        border-radius: 26px;
    }

    .services-suite-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-suite-header strong {
        text-align: left;
    }

    .services-suite-feature {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .suite-map-card {
        min-height: auto;
    }
}

/* Premium Pricing Hero - package comparison identity */
.pricing-signature-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 84px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 16%, rgba(200, 167, 93, .22), transparent 30%),
        linear-gradient(135deg, #08111f 0%, #101827 46%, #182238 100%);
}

.pricing-signature-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045), transparent 36%),
        radial-gradient(circle at 86% 18%, rgba(200, 167, 93, .12), transparent 25%);
    pointer-events: none;
}

.pricing-hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .55) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
    pointer-events: none;
}

.pricing-hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.pricing-hero-orb-one {
    width: 260px;
    height: 260px;
    right: -90px;
    top: 40px;
    background: rgba(200, 167, 93, .14);
}

.pricing-hero-orb-two {
    width: 150px;
    height: 150px;
    left: 45%;
    bottom: -70px;
    border: 1px solid rgba(200, 167, 93, .34);
}

.pricing-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
    gap: 54px;
    align-items: center;
}

.pricing-hero-eyebrow {
    color: var(--gold);
}

.pricing-hero-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    font-size: .95rem;
    box-shadow: 0 12px 24px rgba(200, 167, 93, .22);
}

.pricing-signature-hero h1 {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(2.65rem, 5.15vw, 5rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.pricing-hero-subtitle {
    max-width: 700px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.13rem;
    line-height: 1.72;
    margin-bottom: 30px;
}

.pricing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.pricing-signature-hero .btn-gold {
    color: var(--navy);
    box-shadow: 0 16px 34px rgba(200, 167, 93, .24);
}

.btn-pricing-outline {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .30);
    backdrop-filter: blur(10px);
}

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

.pricing-hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 720px;
}

.pricing-hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 14px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.pricing-hero-assurance i {
    color: var(--gold);
}

.pricing-board {
    position: relative;
    overflow: hidden;
    padding: 28px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 92% 10%, rgba(200, 167, 93, .20), transparent 34%);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 32px;
    box-shadow:
        0 34px 86px rgba(0, 0, 0, .30),
        0 0 0 1px rgba(200, 167, 93, .16) inset;
}

.pricing-board::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 167, 93, .18);
    border-radius: 25px;
    pointer-events: none;
}

.pricing-board-header,
.pricing-board-packages,
.pricing-board-custom,
.pricing-board-note,
.pricing-board-divider {
    position: relative;
    z-index: 2;
}

.pricing-board-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.pricing-board-header span {
    display: block;
    color: var(--gold-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 5px;
}

.pricing-board-header strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    line-height: 1.18;
}

.pricing-board-header a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    color: var(--navy);
    background: rgba(200, 167, 93, .16);
    border: 1px solid rgba(200, 167, 93, .30);
    border-radius: 999px;
    padding: 10px 13px;
    font-size: .84rem;
    font-weight: 900;
}

.pricing-board-header a:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.pricing-board-packages {
    display: grid;
    gap: 12px;
}

.pricing-board-package {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 16px;
    min-height: 92px;
    padding: 17px 18px;
    color: var(--text);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.pricing-board-package:hover {
    color: var(--text);
    transform: translateY(-2px);
    background: var(--white);
    border-color: rgba(200, 167, 93, .62);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .09);
}

.pricing-board-package.featured {
    color: var(--white);
    background:
        radial-gradient(circle at 92% 15%, rgba(200, 167, 93, .20), transparent 28%),
        linear-gradient(135deg, var(--navy), #172544);
    border-color: rgba(200, 167, 93, .42);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .20);
}

.pricing-board-name {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
}

.pricing-board-package.featured .pricing-board-name {
    color: var(--white);
}

.pricing-board-package strong {
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 900;
    text-align: right;
}

.pricing-board-package.featured strong {
    color: var(--gold);
}

.pricing-board-package small {
    grid-column: 1 / -1;
    color: var(--muted);
    font-weight: 800;
}

.pricing-board-package.featured small {
    color: rgba(255, 255, 255, .70);
}

.pricing-board-badge {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    width: auto;
    padding: 5px 9px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.pricing-board-divider {
    height: 1px;
    margin: 18px 0;
    background: var(--border);
}

.pricing-board-custom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pricing-board-custom div {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(200, 167, 93, .12);
    border: 1px solid rgba(200, 167, 93, .24);
    border-radius: 18px;
}

.pricing-board-custom i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--gold-dark);
    background: rgba(255, 255, 255, .68);
    border-radius: 13px;
    font-size: 1.1rem;
}

.pricing-board-custom span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pricing-board-custom strong {
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
}

.pricing-board-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.55;
}

#pricingPackages {
    scroll-margin-top: 110px;
}

@media (max-width: 1199px) {
    .pricing-hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
        gap: 38px;
    }
}

@media (max-width: 991px) {
    .pricing-signature-hero {
        padding: 72px 0 68px;
    }

    .pricing-hero-layout {
        grid-template-columns: 1fr;
    }

    .pricing-signature-hero h1 {
        font-size: clamp(2.35rem, 9vw, 3.8rem);
    }

    .pricing-board {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .pricing-signature-hero {
        padding: 58px 0 58px;
    }

    .pricing-hero-actions .btn {
        width: 100%;
    }

    .pricing-hero-assurance {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pricing-board {
        padding: 22px;
        border-radius: 26px;
    }

    .pricing-board-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-board-header a {
        width: 100%;
        justify-content: center;
    }

    .pricing-board-package {
        grid-template-columns: 1fr;
    }

    .pricing-board-package strong {
        text-align: left;
    }

    .pricing-board-custom {
        grid-template-columns: 1fr;
    }

    #pricingPackages {
        scroll-margin-top: 90px;
    }
}

/* Pricing Hero v2 - light champagne theme, distinct from Quote Builder */
.pricing-signature-hero {
    color: var(--text);
    background:
        radial-gradient(circle at 10% 16%, rgba(200, 167, 93, .30), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(15, 118, 110, .10), transparent 26%),
        linear-gradient(135deg, #fffdf7 0%, #f7ead0 45%, #ffffff 100%);
}

.pricing-signature-hero::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .22), transparent 44%),
        radial-gradient(circle at 84% 80%, rgba(15, 23, 42, .055), transparent 26%);
}

.pricing-hero-grid-bg {
    opacity: .18;
    background-image:
        linear-gradient(rgba(176, 142, 69, .30) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 142, 69, .30) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.pricing-hero-orb-one {
    background: rgba(200, 167, 93, .20);
}

.pricing-hero-orb-two {
    border-color: rgba(15, 118, 110, .22);
    background: rgba(15, 118, 110, .055);
}

.pricing-hero-eyebrow {
    color: var(--gold-dark);
}

.pricing-hero-eyebrow i {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 12px 24px rgba(176, 142, 69, .24);
}

.pricing-signature-hero h1 {
    color: #081a34;
}

.pricing-hero-subtitle {
    color: #475569;
}

.pricing-signature-hero .btn-gold {
    box-shadow: 0 16px 34px rgba(176, 142, 69, .22);
}

.btn-pricing-outline {
    color: var(--navy);
    background: rgba(255, 255, 255, .70);
    border: 1.5px solid rgba(15, 23, 42, .18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.btn-pricing-outline:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.pricing-hero-assurance span {
    color: var(--navy);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
}

.pricing-hero-assurance i {
    color: var(--gold-dark);
}

.pricing-board {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 92% 10%, rgba(200, 167, 93, .22), transparent 34%);
    border: 1px solid rgba(255, 255, 255, .90);
    box-shadow:
        0 34px 86px rgba(15, 23, 42, .18),
        0 0 0 1px rgba(200, 167, 93, .18) inset;
}

.pricing-board::before {
    border-color: rgba(200, 167, 93, .20);
}

.pricing-board-package.featured {
    background:
        radial-gradient(circle at 92% 15%, rgba(200, 167, 93, .18), transparent 28%),
        linear-gradient(135deg, #0f766e, #0b5f59);
    border-color: rgba(15, 118, 110, .45);
    box-shadow: 0 18px 42px rgba(15, 118, 110, .18);
}

.pricing-board-package.featured strong {
    color: #f9df9d;
}

.pricing-board-badge {
    color: #0f172a;
    background: #f6d781;
}

.pricing-board-header a:hover {
    color: var(--white);
    background: #0f766e;
    border-color: #0f766e;
}

.pricing-board-custom div {
    background:
        linear-gradient(145deg, rgba(200, 167, 93, .15), rgba(255, 255, 255, .86));
}

@media (max-width: 767px) {
    .pricing-signature-hero {
        background:
            radial-gradient(circle at 16% 10%, rgba(200, 167, 93, .26), transparent 30%),
            linear-gradient(180deg, #fffdf7 0%, #f8ecd4 100%);
    }
}

/* Premium Contact Hero - clean support desk identity */
.contact-signature-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 82px;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(200, 167, 93, .18), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(59, 130, 246, .11), transparent 27%),
        linear-gradient(135deg, #ffffff 0%, #eef2f7 52%, #f8fafc 100%);
}

.contact-signature-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.42), transparent 48%);
    pointer-events: none;
}

.contact-hero-grid {
    position: absolute;
    right: 0;
    top: 0;
    width: 340px;
    height: 310px;
    opacity: .14;
    background-image:
        linear-gradient(rgba(15,23,42,.30) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.30) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at 100% 0%, #000 0, transparent 74%);
    pointer-events: none;
}

.contact-hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.contact-glow-one {
    width: 230px;
    height: 230px;
    right: -90px;
    top: 96px;
    background: rgba(59,130,246,.09);
}

.contact-glow-two {
    width: 120px;
    height: 120px;
    left: -44px;
    bottom: 80px;
    border: 1px solid rgba(200,167,93,.36);
}

.contact-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
    gap: 58px;
    align-items: center;
}

.contact-hero-eyebrow {
    color: var(--gold-dark);
}

.contact-hero-eyebrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 999px;
    font-size: .95rem;
    box-shadow: 0 12px 24px rgba(176,142,69,.24);
}

.contact-signature-hero h1 {
    max-width: 830px;
    margin: 0 0 22px;
    color: #081a34;
    font-size: clamp(2.6rem, 5vw, 4.85rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.contact-hero-subtitle {
    max-width: 700px;
    color: #475569;
    font-size: 1.14rem;
    line-height: 1.72;
    margin-bottom: 30px;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.btn-contact-outline {
    color: var(--navy);
    background: rgba(255,255,255,.72);
    border: 1.5px solid rgba(15,23,42,.18);
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

.btn-contact-outline:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.contact-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 11px 14px;
    color: var(--navy);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15,23,42,.055);
    font-size: .9rem;
    font-weight: 850;
}

.contact-hero-trust i {
    color: var(--gold-dark);
}

.contact-options-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)),
        radial-gradient(circle at 92% 10%, rgba(59,130,246,.12), transparent 34%);
    border: 1px solid rgba(255,255,255,.90);
    border-radius: 34px;
    box-shadow:
        0 34px 86px rgba(15,23,42,.16),
        0 0 0 1px rgba(15,23,42,.06) inset;
}

.contact-options-card::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(200,167,93,.16);
    border-radius: 27px;
    pointer-events: none;
}

.contact-options-header,
.contact-option-feature,
.contact-option-grid,
.contact-detail-list,
.contact-email-button {
    position: relative;
    z-index: 2;
}

.contact-options-header {
    margin-bottom: 20px;
}

.contact-options-header span {
    display: inline-flex;
    color: var(--gold-dark);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 7px;
}

.contact-options-header strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.35rem, 2.3vw, 1.95rem);
    line-height: 1.18;
}

.contact-option-feature {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 12%, rgba(200,167,93,.16), transparent 28%),
        linear-gradient(135deg, #0f172a, #172544);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(15,23,42,.18);
}

.contact-option-feature > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--gold);
    background: rgba(200,167,93,.12);
    border: 1px solid rgba(200,167,93,.28);
    border-radius: 18px;
    font-size: 1.7rem;
}

.contact-option-feature span {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 4px;
}

.contact-option-feature strong {
    display: block;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.18;
    word-break: break-word;
}

.contact-option-feature p {
    color: rgba(255,255,255,.76);
    margin: 8px 0 0;
    line-height: 1.55;
    font-size: .92rem;
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.contact-option-grid a {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 148px;
    padding: 18px;
    color: var(--navy);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all .2s ease;
}

.contact-option-grid a:hover {
    color: var(--navy);
    transform: translateY(-3px);
    background: var(--white);
    border-color: rgba(200,167,93,.58);
    box-shadow: 0 14px 30px rgba(15,23,42,.09);
}

.contact-option-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--gold-dark);
    background: rgba(200,167,93,.14);
    border-radius: 15px;
    font-size: 1.22rem;
}

.contact-option-grid strong {
    display: block;
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: .98rem;
    line-height: 1.24;
}

.contact-option-grid small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.42;
    margin-top: 4px;
}

.contact-detail-list {
    display: grid;
    gap: 9px;
    margin-top: 16px;
}

.contact-detail-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    background: rgba(15,23,42,.035);
    border: 1px solid rgba(15,23,42,.065);
    border-radius: 14px;
    padding: 11px 13px;
    font-size: .9rem;
    font-weight: 800;
}

.contact-detail-list i {
    color: #2563eb;
    font-size: 1.05rem;
}

.contact-email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    padding: 14px 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #172544);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(15,23,42,.16);
}

.contact-email-button:hover {
    color: var(--white);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .contact-signature-hero {
        padding: 72px 0 68px;
    }

    .contact-hero-layout {
        grid-template-columns: 1fr;
    }

    .contact-options-card {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-signature-hero {
        padding: 58px 0;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-hero-trust,
    .contact-option-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-options-card {
        padding: 22px;
        border-radius: 26px;
    }

    .contact-option-feature {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-option-grid a {
        min-height: auto;
    }
}

/* Homepage hero mid-desktop spacing fix v10
   Prevents the hero from touching the browser edge on widths below the large carousel max layout. */
@media (min-width: 1200px) and (max-width: 1439.98px) {
    .hero-home .container {
        max-width: 100%;
        padding-left: clamp(48px, 5vw, 72px);
        padding-right: clamp(48px, 5vw, 72px);
    }

    .home-hero-carousel {
        width: min(100%, 700px);
    }

    .home-carousel-prev {
        left: -20px;
    }

    .home-carousel-next {
        right: -20px;
    }
}

/* Tablet-to-small-desktop homepage spacing balance */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-home .container {
        max-width: 100%;
        padding-left: clamp(40px, 6vw, 72px);
        padding-right: clamp(40px, 6vw, 72px);
    }
}

/* Header fit refinement for mid-size desktop screens */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-header .brand-logo-horizontal {
        width: clamp(280px, 23vw, 330px);
    }

    .site-header .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: .96rem;
    }

    .site-header .btn-sm-rounded {
        white-space: nowrap;
        min-width: max-content;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Homepage hero desktop container balance v11
   Keeps consistent side breathing room from 1200px up to large desktop widths. */
@media (min-width: 1200px) {
    .hero-home .container {
        max-width: min(1480px, calc(100% - 112px));
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 1400px) {
    .hero-home .container {
        max-width: min(1480px, calc(100% - 128px));
    }
}

@media (min-width: 1600px) {
    .hero-home .container {
        max-width: 1480px;
    }
}

/* Keep the carousel inside the new balanced container. */
@media (min-width: 1200px) and (max-width: 1599.98px) {
    .home-hero-carousel {
        width: min(100%, 700px);
    }

    .home-carousel-prev {
        left: -18px;
    }

    .home-carousel-next {
        right: -18px;
    }
}

/* Global hero heading size adjustment */
.hero-section h1 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 1.1;
}

/* Homepage may remain slightly more prominent */
.hero-home h1 {
    font-size: clamp(2.1rem, 3.7vw, 3.7rem);
    line-height: 1.08;
}

@media (max-width: 767px) {
    .hero-section h1,
    .hero-home h1 {
        font-size: clamp(1.9rem, 8vw, 2.55rem);
        line-height: 1.12;
    }
}