/********** Template CSS **********/
:root {
    --primary: #1a1f36;
    --primary-foreground: #ffffff;
    --secondary: #4a5568;
    --accent: #8f6d35;
    --accent-dark: #7b5a28;
    --accent-light: #c9a66e;
    --accent-foreground: #ffffff;
    --background: #ffffff;
    --card: #ffffff;
    --muted: #f7f7f8;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
    --input-background: #f3f3f5;
    --destructive: #d4183d;
    --foreground: #1a1f36;
    --light: #f7f7f8;
    --dark: #1a1f36;
}

/* Services hero carousel */
.services-hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.services-hero .carousel-item {
    min-height: clamp(360px, 56vw, 520px);
}

.services-hero .carousel-item img {
    height: clamp(360px, 56vw, 520px);
    object-fit: cover;
    filter: saturate(1.05);
}

.services-hero-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 31, 54, 0.9), rgba(26, 31, 54, 0.55) 55%, rgba(26, 31, 54, 0.2));
    z-index: 1;
}

.services-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    color: #ffffff;
    padding-block: clamp(2.5rem, 6vw, 4rem);
}

.services-hero-kicker {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}

.services-hero-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 10px 30px rgb(252, 250, 250);
}

.services-hero-text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services-hero .btn-outline-light {
    border-width: 2px;
}

.services-hero .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
}

.services-hero .carousel-indicators .active {
    background-color: var(--accent);
    border-color: var(--accent);
}

.services-hero .carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    margin: 0;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

@media (max-width: 991px) {
    .services-hero .carousel-item,
    .services-hero .carousel-item img {
        min-height: 420px;
        height: 420px;
    }

    .services-hero-text {
        max-width: 480px;
    }
}

@media (max-width: 575px) {
    .services-hero .carousel-item,
    .services-hero .carousel-item img {
        min-height: 360px;
        height: 360px;
    }

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

/* Team page specific styling */
.team-page-header {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 40px 0 24px;
}

/* Team page hero (dark band) */
.team-page-hero {
    background: var(--primary);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 5vw, 2.75rem);
}
.team-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.team-hero-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin: 0 0 12px 0;
    color: #ffffff !important;
}
.team-hero-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin: 0;
    color: rgba(255,255,255,0.9) !important;
}

.team-intro {
    background: var(--background);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 5vw, 2.5rem);
}
.section-heading {
    font-size: 32px;
    font-family: 'Libre Baskerville', serif;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-lead {
    color: var(--muted-foreground);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-page-header .team-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.team-page-header .team-tagline {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 6px;
}

.team-grid-section {
    background: var(--muted);
    padding: clamp(2.75rem, 6vw, 3.75rem) 0 clamp(3.5rem, 7vw, 4.5rem);
}

.consultant-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(26, 31, 54, 0.06);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.consultant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 31, 54, 0.12);
    border-color: var(--accent);
}

.consultant-photo-wrap {
    position: relative;
    width: 100%;
    height: clamp(260px, 34vw, 320px);
    overflow: hidden;
}

.consultant-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
}

.consultant-card:hover .consultant-photo {
    transform: scale(1.05);
}

.consultant-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 31, 54, 0.45);
    color: var(--primary-foreground);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultant-card:hover .consultant-photo-overlay {
    opacity: 1;
}

.consultant-body {
    padding: 32px;
    background: var(--background);
}

/* Slightly larger image tiles and more breathing room */
.consultant-photo-wrap { height: 320px; }
.consultant-body { padding: 28px 28px 36px; }
.consultant-name { font-size: 22px; }
.consultant-role { font-size: 12px; }

.consultant-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.consultant-card:hover .consultant-name {
    color: var(--accent);
}

.consultant-role {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 16px;
}

.consultant-block {
    margin-bottom: 16px;
}

.consultant-label {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    color: var(--muted-foreground);
    margin-bottom: 6px;
}

.consultant-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.6;
}

.consultant-social {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.social-link {
    color: var(--muted-foreground);
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--accent);
}

.consultant-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.consultant-modal {
    position: fixed;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -40%);
    background: var(--background);
    max-width: 1100px;
    width: 92%;
    max-height: 90vh;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(26, 31, 54, 0.25);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.consultant-modal[hidden],
.consultant-modal-overlay[hidden] {
    display: none !important;
}

.consultant-modal:not([hidden]) {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.consultant-modal-overlay:not([hidden]) {
    opacity: 1;
}

.consultant-modal-header {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.consultant-modal-header h2 {
    margin: 0;
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
}

.consultant-modal-header p {
    margin: 4px 0 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--primary-foreground);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.consultant-modal-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    padding: 28px;
    overflow: auto;
}

.modal-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-photo-wrap {
    border: 1px solid var(--border);
    padding: 12px;
    background: var(--background);
}

.modal-photo {
    width: 100%;
    height: auto;
    display: block;
}

.modal-meta {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--foreground);
}

.meta-item i {
    color: var(--accent);
    font-size: 18px;
}

.meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted-foreground);
}

.meta-value,
.meta-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--foreground);
    text-decoration: none;
}

.modal-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-section h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary);
}

.modal-section p,
.modal-expertise {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--foreground);
    line-height: 1.7;
}

.modal-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.modal-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--foreground);
    line-height: 1.6;
}

.modal-footer-cta {
    margin-top: 12px;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 992px) {
    .consultant-modal-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .consultant-body {
        padding: 24px;
    }

    .consultant-name {
        font-size: 26px;
    }

    .consultant-modal-header h2 {
        font-size: 26px;
    }
}

body {
    background-color: var(--background);
    color: var(--foreground);
}

a {
    color: var(--accent);
    transition: color .2s ease;
}

a:hover {
    color: rgba(212, 165, 116, 0.9);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--muted-foreground) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

.bg-primary a {
    color: var(--primary-foreground);
}

.bg-primary a:hover {
    color: var(--accent);
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-dark {
    background-color: var(--primary) !important;
    color: var(--primary-foreground) !important;
}

.bg-light {
    background-color: var(--muted) !important;
}

.section-block {
    padding: 80px 0;
}

.section-muted {
    background-color: var(--muted);
}

.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
    border-color: var(--border) !important;
}

.btn-primary {
    color: var(--accent-foreground);
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--accent-foreground);
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--accent);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: var(--primary);
    background-color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary {
    color: var(--primary);
    background-color: var(--background);
    border-color: var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
}

.btn-light {
    color: var(--primary);
    background-color: var(--primary-foreground);
    border-color: var(--border);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--accent);
}
h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Barlow', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--secondary);
    outline: none;
    transition: .5s;
}

.navbar-light {
    background-color: var(--background) !important;
    border-bottom: 1px solid var(--border);
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    transition: .3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--muted);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px rgba(26, 31, 54, 0.08);
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.service-item:hover {
    border-color: var(--accent);
}

.team-card__image-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--accent);
}

.team-item:hover .team-text {
    left: 0;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}
.service-animate {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
    animation-delay: calc(var(--delay) * 100ms);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-control {
    background-color: var(--input-background);
    border-color: var(--border);
    color: var(--foreground);
}

.form-control:focus {
    background-color: var(--card);
    color: var(--foreground);
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-control::placeholder {
    color: var(--muted-foreground);
}

.service-item i,
.service-card i {
    color: var(--accent);
}

.service-item:hover i,
.service-card:hover i {
    color: var(--accent);
}

.service-card ul li::marker,
.service-item ul li::marker {
    color: var(--accent);
}

.home-service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 26px;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(26, 31, 54, 0.04);
}

.home-service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(26, 31, 54, 0.08);
    transform: translateY(-2px);
}

.home-service-card h4 {
    font-size: 1.05rem;
}

.home-service-card p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: rgba(212, 165, 116, 0.9);
    text-decoration: none;
}

.service-card__link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-card__link:hover {
    color: var(--accent-dark);
    text-decoration: none;
}

main article a[href^='/services/'] {
    color: var(--accent);
    transition: color 0.2s ease;
}

main article a[href^='/services/']:hover {
    color: var(--accent-dark) !important;
}

.bg-accent-soft {
    background-color: rgba(212, 165, 116, 0.1);
}

.section-muted {
    background-color: var(--muted);
}

footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
    color: var(--accent);
}

footer .text-secondary {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hero-wrap {
    position: relative;
    min-height: clamp(480px, 72vw, 600px);
    color: #ffffff;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: clamp(480px, 72vw, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: clamp(3.5rem, 8vw, 5rem);
}

.hero-inner {
    max-width: 760px;
}

.hero-inner--centered {
    width: min(100%, 860px);
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.hero-wrap h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
    color: #ffffff;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    max-width: 720px;
    margin-bottom: 22px;
}

.hero-sub--centered {
    max-width: 680px;
    margin-left: 0;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions--centered {
    justify-content: flex-start;
}

.btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    color: var(--primary);
    background-color: #ffffff;
    border-color: #ffffff;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
    color: var(--primary);
}

.about-image-wrap img {
    border: 1px solid var(--border);
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(26, 31, 54, 0.04);
}

.benefit-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(26, 31, 54, 0.08);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 6px 18px rgba(26, 31, 54, 0.04);
    height: 100%;
}

.quote {
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 16px;
}

.testimonial-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0 14px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-meta {
    font-size: 0.95rem;
}

.model-infographic-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 48px 36px;
    box-shadow: 0 18px 40px rgba(26, 31, 54, 0.08);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', 'Poppins', 'SF Pro Display', sans-serif;
    --model-brand: var(--primary);
}

.model-infographic-header {
    text-align: center;
    margin-bottom: 36px;
}

.model-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    color: var(--model-brand);
    font-weight: 700;
    margin-bottom: 10px;
}

.model-title {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    color: var(--model-brand);
    margin-bottom: 6px;
    font-weight: 800;
}

.model-subtitle {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-bottom: 0;
}

.model-infographic {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 12px 0 8px;
}

.model-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: rgba(26, 31, 54, 0.08);
    border-radius: 999px;
}

.model-node {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: 14px;
}

.model-circle {
    grid-column: 2;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--model-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 12px 28px rgba(26, 31, 54, 0.12);
    z-index: 2;
}

.model-circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(var(--model-accent) 0deg 210deg, transparent 210deg 360deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 11px));
    z-index: -1;
}

.model-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 12px 26px rgba(26, 31, 54, 0.08);
    max-width: 360px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.model-card:hover {
    border-color: var(--model-accent);
    box-shadow: 0 16px 32px rgba(26, 31, 54, 0.14);
    transform: translateY(-2px);
}

.model-node-left .model-card {
    grid-column: 1;
    justify-self: end;
    text-align: left;
}

.model-node-right .model-card {
    grid-column: 3;
    justify-self: start;
    text-align: left;
}

.model-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.model-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(26, 31, 54, 0.06);
    color: var(--model-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.model-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
}

.model-card ul {
    padding-left: 18px;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.92rem;
}

.model-footer {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.model-logo-image {
    max-height: 46px;
    width: auto;
    display: block;
}

.model-logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--model-brand);
    letter-spacing: 0.02em;
}

.model-footer-text {
    margin: 0;
    color: var(--muted-foreground);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.model-color-1 { --model-accent: #7c3aed; }
.model-color-2 { --model-accent: #2563eb; }
.model-color-3 { --model-accent: #14b8a6; }
.model-color-4 { --model-accent: #22c55e; }
.model-color-5 { --model-accent: #f59e0b; }
.model-color-6 { --model-accent: #8b5cf6; }

.model-banner {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 1rem;
}

.model-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.model-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(26, 31, 54, 0.04);
    height: 100%;
}

.model-step-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.model-step ul {
    padding-left: 18px;
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.model-arrow {
    display: none;
}

@media (min-width: 992px) {
    .model-steps {
        grid-template-columns: repeat(6, 1fr);
    }

    .model-arrow {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .model-infographic-card {
        padding: 40px 24px 32px;
    }

    .model-track {
        left: 32px;
        transform: none;
    }

    .model-node {
        grid-template-columns: 80px 1fr;
    }

    .model-circle {
        grid-column: 1;
        justify-self: center;
    }

    .model-node-left .model-card,
    .model-node-right .model-card {
        grid-column: 2;
        justify-self: stretch;
        max-width: 100%;
    }

    .model-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .model-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 18px;
    }
}

@media print {
    .model-infographic-card {
        width: 210mm;
        min-height: 297mm;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 28mm 22mm 24mm;
    }

    .model-track {
        background: rgba(26, 31, 54, 0.12);
    }
}

.final-cta {
    background: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.final-cta {
    text-align: left;
    padding-top: clamp(4.5rem, 8vw, 6rem);
    padding-bottom: clamp(4.5rem, 8vw, 6rem);
}

.cta-left {
    color: var(--primary-foreground);
}

.cta-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(212, 165, 116, 0.15);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cta-title {
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 720px;
}

.cta-actions .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-actions .btn-outline-light:hover,
.cta-actions .btn-outline-light:focus,
.cta-actions .btn-outline-light:active {
    color: var(--primary);
    background-color: #ffffff;
    border-color: #ffffff;
}

.cta-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    color: rgba(255, 255, 255, 0.8);
}

.stat-value {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.4rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 22px 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.cta-card-title {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 165, 116, 0.12);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cta-contact-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cta-contact-link,
.cta-contact-text {
    color: #ffffff;
    margin: 0;
    font-size: 1.05rem;
}

.cta-contact-link:hover {
    color: var(--accent);
}

.cta-trust {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Values Section Styles */
.values-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent);
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 12px 32px rgba(26, 31, 54, 0.12);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.value-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-copy {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted-foreground);
}

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

.value-items li {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.value-items li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.value-items li:last-child {
    margin-bottom: 0;
}

.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(212, 165, 116, 0.15));
}

.value-card:hover .value-name {
    color: var(--accent);
}

@media (max-width: 767.98px) {
    .cta-stats .row > div {
        text-align: center;
    }
}

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

    .hero-wrap h1 {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
    }

    .values-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .value-card {
        padding: 24px;
    }

    .value-name {
        font-size: 16px;
    }
