/* =========================================================
   NEST LEISURE — Conference Management landing page
   Palette + type match the approved design mock-up.
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand */
    --navy-950: #0B0D2B;
    --navy-900: #111437;
    --navy-800: #1B1F4E;
    --navy-100: #E4E6F2;
    --orange: #FB8501;
    --orange-deep: #E07300;
    --orange-50: #FFF4E6;
    --orange-100: #FFE4C2;

    /* Neutrals */
    --ink: #171A2E;
    --ink-soft: #3C3F55;
    --slate: #5F6275;
    --slate-light: #8B8EA3;
    --ivory: #FAF9F6;
    --paper: #F5F5F7;
    --line: #E8E7EF;
    --white: #FFFFFF;

    --maxw: 1320px;
    --gutter: 1.5rem;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(17, 20, 55, .06);
    --shadow-md: 0 12px 28px rgba(17, 20, 55, .10);

    --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.cm-page img {
    max-width: 100%;
    display: block;
}

.cm-page a {
    text-decoration: none;
    color: inherit;
}

.cm-page ul,
    .cm-page ol {
    list-style: none;
}

.cm-page svg {
    display: block;
}

.cm-page .wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.cm-page .center {
    text-align: center;
}

.cm-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.cm-page :focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
html {
        scroll-behavior: auto;
    }

*,
*::before,
*::after {
        transition-duration: 0s !important;
    }
}

/* =========================================================
   SHARED TYPE + BUTTONS
   ========================================================= */

.cm-page .eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: .55rem;
}

.cm-page .eyebrow-light {
    color: var(--orange);
}

.cm-page .section {
    padding: 3.75rem 0;
}

.cm-page .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.2;
    margin-bottom: .75rem;
    letter-spacing: -.01em;
}

.cm-page .section-desc {
    font-size: .9rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.cm-page .shead-c {
    text-align: center;
    margin-bottom: 1.75rem;
}

.cm-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .7rem 1.4rem;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    line-height: 1;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.cm-page .btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.cm-page .btn-orange:hover {
    background: var(--orange-deep);
    border-color: var(--orange-deep);
    box-shadow: 0 8px 20px rgba(251, 133, 1, .28);
}

.cm-page .btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .55);
}

.cm-page .btn-ghost:hover {
    background: var(--white);
    color: var(--navy-900);
    border-color: var(--white);
}

.cm-page .btn-outline {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}

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

.cm-page .btn-sm {
    padding: .55rem 1.1rem;
    font-size: .78rem;
}

.cm-page .btn-lg {
    padding: .9rem 2rem;
    font-size: .95rem;
}

.cm-page .btn-arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cm-page .btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.cm-page .text-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--orange);
}

.cm-page .text-link:hover {
    color: var(--orange-deep);
}

/* Generic outline icon rule — every inline <svg><use> on the page */
.cm-page .hero-stat-icon svg,
.cm-page .trust-icon svg,
    .cm-page .svc-icon svg,
.cm-page .check-list svg,
    .cm-page .why-icon svg,
.cm-page .proc-icon svg,
    .cm-page .ind-item svg,
.cm-page .dest-heading svg,
    .cm-page .dest-group h4 svg,
.cm-page .faq-q svg,
    .cm-page .contact-points svg,
.cm-page .testi-nav svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   HEADER (markup from includes/nest-header.php)
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy-900);
}

.logo img,
.logo svg {
    height: 44px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s;
}

.nav a:hover {
    color: var(--orange);
}

.nav a.has-drop::after {
    content: '▾';
    margin-left: 4px;
    font-size: .7rem;
    color: var(--slate-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.header-actions .btn-gold,
.header-actions .btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: .75rem 0;
    font-size: .95rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

/* =========================================================
   HERO
   ========================================================= */

.cm-page .hero {
    position: relative;
    background: var(--navy-950);
    color: var(--white);
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.cm-page .hero-media {
    position: absolute;
    inset: 0 0 0 38%;
}

.cm-page .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cm-page .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy-950) 0%, rgba(11, 13, 43, .78) 22%, rgba(11, 13, 43, .15) 65%, rgba(11, 13, 43, .05) 100%);
}

.cm-page .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.cm-page .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.015em;
    max-width: 560px;
    margin-bottom: 1rem;
}

.cm-page .hero-desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.cm-page .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.cm-page .hero-stat {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.cm-page .hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-page .hero-stat-icon svg {
    width: 18px;
    height: 18px;
}

.cm-page .hero-stat b {
    display: block;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.15;
}

.cm-page .hero-stat small {
    display: block;
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
}

.cm-page .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.cm-page .trust {
    background: var(--white);
    padding: 2.25rem 0 2.5rem;
    border-bottom: 1px solid var(--line);
}

.cm-page .trust-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.cm-page .trust-stat {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.cm-page .trust-icon {
    width: 40px;
    height: 40px;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-page .trust-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.6;
}

.cm-page .trust-stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.15;
}

.cm-page .trust-stat small {
    display: block;
    font-size: .72rem;
    color: var(--slate);
}

.cm-page .trust-label {
    text-align: center;
    font-size: .8rem;
    color: var(--slate);
    margin-bottom: 1.25rem;
}

.cm-page .trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    padding: 0 1rem;
}

.cm-page .trust-logos img {
    height: 34px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .25s, opacity .25s;
}

.cm-page .trust-logos img:hover {
    filter: none;
    opacity: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy-900);
    opacity: .6;
}

/* =========================================================
   SERVICES
   ========================================================= */

.cm-page .services {
    background: var(--white);
}

.cm-page .svc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.cm-page .svc-intro .btn {
    margin-top: .25rem;
}

.cm-page .svc-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .9rem;
}

.cm-page .svc-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 1.1rem 1rem 1.2rem;
    min-width: 0;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.cm-page .svc-card:hover {
    border-color: var(--orange-100);
    box-shadow: var(--shadow-md);
}

.cm-page .svc-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--orange-50);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
}

.cm-page .svc-icon svg {
    width: 20px;
    height: 20px;
}

.cm-page .svc-card h3 {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
    margin-bottom: .45rem;
}

.cm-page .svc-card p {
    font-size: .72rem;
    color: var(--slate);
    line-height: 1.5;
}

.cm-page .overview { background: var(--white); padding-bottom: 2.5rem; }

.cm-page .overview-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3.5rem;
    align-items: start;
}

.cm-page .overview-head { position: sticky; top: 96px; }
.cm-page .overview-head .section-title {
    font-size: clamp(1.5rem, 2.4vw, 1.95rem);
    margin-bottom: 1.25rem;
}

.cm-page .overview-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-display);
    font-size: .88rem; font-weight: 700;
    color: var(--orange);
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--orange-100);
    transition: color .2s var(--ease), border-color .2s var(--ease);
}
.cm-page .overview-cta:hover { color: var(--orange-deep); border-color: var(--orange); }
.cm-page .overview-cta svg { transition: transform .2s var(--ease); }
.cm-page .overview-cta:hover svg { transform: translateX(3px); }

.cm-page .overview-body { max-width: 720px; }
.cm-page .overview-body p {
    font-size: .92rem; line-height: 1.7;
    color: var(--slate); margin-bottom: 1rem;
}

.cm-page .overview-lead {
    font-family: var(--font-display);
    font-size: 1.12rem !important; font-weight: 500;
    line-height: 1.55 !important;
    color: var(--navy-900) !important;
    margin-bottom: 1.5rem !important;
}

.cm-page .overview-result {
    margin-top: 1.5rem; margin-bottom: 0 !important;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--orange);
    background: var(--orange-50);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    color: var(--navy-900) !important; font-weight: 500;
}

@media (max-width: 1024px) {
    .cm-page .overview-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .cm-page .overview-head { position: static; }
    .cm-page .overview-head .section-title { margin-bottom: .75rem; }
}
@media (max-width: 560px) {
    .cm-page .overview-lead { font-size: 1rem !important; }
    .cm-page .overview-body p { font-size: .88rem; }
}

/* =========================================================
   CONFERENCE TYPES
   ========================================================= */

.cm-page .conf-types {
    background: var(--white);
}

.cm-page .conf-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.cm-page .check-list {
    margin: .5rem 0 1.5rem;
}

.cm-page .check-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    color: var(--ink-soft);
    padding: .3rem 0;
}

.cm-page .check-list svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    stroke-width: 2;
    flex-shrink: 0;
}

.cm-page .conf-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px;
    gap: .6rem;
}

.cm-page .conf-mosaic > div {
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--navy-100);
}

.cm-page .conf-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cm-page .m-a {
    grid-column: 1 / 4;
}

.cm-page .m-b {
    grid-column: 4 / 7;
}

.cm-page .m-c {
    grid-column: 1 / 3;
}

.cm-page .m-d {
    grid-column: 3 / 5;
}

.cm-page .m-e {
    grid-column: 5 / 7;
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */

.cm-page .why {
    background: var(--white);
    padding-top: 2.5rem;
}

.cm-page .why .shead-c {
    margin-bottom: 1.25rem;
}

.cm-page .why .eyebrow {
    margin-bottom: 0;
}

.cm-page .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.cm-page .why-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.cm-page .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-page .why-icon svg {
    width: 20px;
    height: 20px;
}

.cm-page .why-item h3 {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
    margin-bottom: .25rem;
}

.cm-page .why-item p {
    font-size: .75rem;
    color: var(--slate);
    line-height: 1.5;
}

/* =========================================================
   PROCESS TIMELINE
   ========================================================= */

.cm-page .process {
    background: var(--white);
    padding-top: 2.5rem;
}

.cm-page .process .section-title {
    max-width: 380px;
    margin-bottom: 2rem;
}

.cm-page .proc-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cm-page .proc-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 1.5px;
    background: var(--orange-100);
}

.cm-page .proc-step {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 .35rem;
    margin: 0;
}

.cm-page .proc-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 6px var(--white);
}

.cm-page .proc-icon svg {
    width: 24px;
    height: 24px;
}

.cm-page .proc-step h3 {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.3;
    margin-bottom: .35rem;
}

.cm-page .proc-step p {
    font-size: .7rem;
    color: var(--slate);
    line-height: 1.5;
}

/* =========================================================
   INDUSTRIES + DESTINATIONS (two panels)
   ========================================================= */

.cm-page .duo {
    background: var(--white);
    padding-top: 2rem;
}

.cm-page .duo-layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 1.5rem;
    align-items: stretch;
}

.cm-page .panel {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.6rem;
    background: var(--white);
}

.cm-page .panel .section-title {
    font-size: 1.25rem;
}

.cm-page .panel .section-desc {
    font-size: .8rem;
    margin-bottom: 1rem;
}

.cm-page .ind-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem .5rem;
    margin: 1.25rem 0 1.5rem;
}

.cm-page .ind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
}

.cm-page .ind-item svg {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--orange);
    color: var(--orange);
    stroke-width: 1.7;
}

.cm-page .ind-item span {
    font-size: .64rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.25;
}

.cm-page .dest-body {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 1.5rem;
    align-items: start;
}

.cm-page .dest-heading {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: .75rem;
}

.cm-page .dest-heading svg,
    .cm-page .dest-group h4 svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
    stroke-width: 2;
    flex-shrink: 0;
}

.cm-page .dest-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1.25rem;
}

.cm-page .dest-group h4 {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-display);
    font-size: .74rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: .25rem;
}

.cm-page .dest-group p {
    font-size: .7rem;
    color: var(--slate);
    line-height: 1.55;
}

.cm-page .dest-intl {
    margin-top: 1rem;
}

.cm-page .dest-map {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cm-page .dest-map img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   GALLERY
   ========================================================= */

.cm-page .gallery {
    background: var(--white);
    padding-top: 2rem;
}

.cm-page .gallery-track {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: .5rem 0;
    margin-top: .5rem;
    scrollbar-width: none;
}

.cm-page .gallery-track::-webkit-scrollbar {
    display: none;
}

.cm-page .gallery-item {
    flex: 0 0 calc((100% - 3.75rem) / 6);
    min-width: 190px;
    height: 150px;
    border-radius: var(--r-sm);
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--navy-100);
}

.cm-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   TESTIMONIALS + FAQ
   ========================================================= */

.cm-page .tf {
    background: var(--white);
    padding-top: 2.5rem;
}

.cm-page .tf-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.cm-page .testi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.cm-page .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.cm-page .stars svg {
    width: 15px;
    height: 15px;
    fill: var(--orange);
    stroke: none;
}

.cm-page .testi-slide {
    display: none;
}

.cm-page .testi-slide.active {
    display: block;
}

.cm-page .testi-slide p {
    font-size: .95rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 1.25rem;
}

.cm-page .testi-slide footer {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.cm-page .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-900);
}

.cm-page .testi-slide footer b {
    display: block;
    font-size: .82rem;
    color: var(--navy-900);
}

.cm-page .testi-slide footer small {
    display: block;
    font-size: .72rem;
    color: var(--slate);
}

.cm-page .testi-nav {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
    margin-top: 1rem;
}

.cm-page .testi-nav button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.cm-page .testi-nav button:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}

.cm-page .testi-nav svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.cm-page .faq-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cm-page .faq-head .section-title {
    margin-bottom: 0;
}

.cm-page .faq-head .text-link {
    margin-top: 1.4rem;
}

.cm-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
    align-items: start;
}

.cm-page .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .2s;
}

.cm-page .faq-item.open {
    border-color: var(--orange);
}

.cm-page .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    padding: .8rem .9rem;
    border: 0;
    background: var(--white);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 600;
    text-align: left;
    color: var(--navy-900);
    line-height: 1.4;
    cursor: pointer;
}

.cm-page .faq-q:hover {
    background: var(--ivory);
}

.cm-page .faq-q svg {
    width: 15px;
    height: 15px;
    color: var(--navy-900);
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform .25s var(--ease);
}

.cm-page .faq-item.open .faq-q svg {
    transform: rotate(45deg);
    color: var(--orange);
}

.cm-page .faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 .9rem;
    transition: max-height .3s var(--ease), padding .3s var(--ease);
}

.cm-page .faq-item.open .faq-a {
    max-height: 240px;
    padding: 0 .9rem .85rem;
}

.cm-page .faq-a p {
    font-size: .74rem;
    color: var(--slate);
    line-height: 1.55;
}

/* =========================================================
   CONTACT
   ========================================================= */

.cm-page .contact {
    background: var(--navy-950);
    color: var(--white);
    padding: 3.5rem 0;
}

.cm-page .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: center;
}

.cm-page .contact-text h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.cm-page .contact-text > p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    max-width: 380px;
    margin-bottom: 1.25rem;
}

.cm-page .contact-points li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .85);
    padding: .25rem 0;
}

.cm-page .contact-points svg {
    width: 15px;
    height: 15px;
    color: var(--orange);
    stroke-width: 2;
    flex-shrink: 0;
}

.cm-page .contact-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    color: var(--ink);
}

.cm-page .contact-form input,
    .cm-page .contact-form select,
.cm-page .contact-form textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    box-shadow: none;
    padding: .75rem .9rem;
    border: 1px solid transparent;
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: .8rem;
    min-height: 44px;
}

.cm-page .contact-form textarea {
    resize: vertical;
}

.cm-page .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F6275' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .8rem center;
    background-size: 14px;
    padding-right: 2.2rem;
}

.cm-page .contact-form select:invalid {
    color: var(--slate-light);
}

.cm-page .contact-form ::placeholder {
    color: var(--slate-light);
}

.cm-page .contact-form input:focus,
    .cm-page .contact-form select:focus,
.cm-page .contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(251, 133, 1, .25);
}

.cm-page .span-2 {
    grid-column: span 2;
}

.cm-page .span-3 {
    grid-column: 1 / -1;
}

.cm-page .contact-form .btn-lg {
    width: 100%;
    border-radius: var(--r-sm);
    margin-top: .25rem;
}

/* =========================================================
   FOOTER (markup from includes/nest-footer.php)
   ========================================================= */

.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .7);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .6rem;
}

.footer-desc {
    font-size: .76rem;
    line-height: 1.55;
    margin-bottom: .9rem;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-social a svg {
    width: 13px;
    height: 13px;
    fill: var(--white);
}

.footer h4 {
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .8rem;
}

.footer ul li {
    margin-bottom: .45rem;
}

.footer ul li a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.footer ul li a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    margin-bottom: .55rem;
}

.footer-contact li svg {
    width: 13px;
    height: 13px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .72rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .45);
}

.footer-bottom-links a:hover {
    color: var(--orange);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
.cm-page .svc-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

.cm-page .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

.cm-page .proc-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2rem;
    }

.cm-page .proc-timeline::before {
        display: none;
    }

.cm-page .duo-layout {
        grid-template-columns: 1fr;
    }

.cm-page .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
.cm-page .svc-layout,
    .cm-page .conf-layout,
.cm-page .tf-layout,
    .cm-page .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

.cm-page .hero-media {
        inset: 0;
    }

.cm-page .hero-media::after {
        background: linear-gradient(90deg, rgba(11, 13, 43, .94) 0%, rgba(11, 13, 43, .75) 60%, rgba(11, 13, 43, .55) 100%);
    }

.footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

.cm-page .contact-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.cm-page .span-2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
.nav {
        display: none;
    }

.hamburger {
        display: flex;
    }

.cm-page .section {
        padding: 2.75rem 0;
    }

.cm-page .hero {
        min-height: 0;
    }

.cm-page .hero-stats {
        gap: 1rem 1.5rem;
    }

.cm-page .trust-stats {
        justify-content: flex-start;
    }

.cm-page .trust-logos {
        justify-content: center;
    }

.cm-page .svc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.cm-page .conf-mosaic {
        grid-template-rows: 160px 160px;
    }

.cm-page .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.cm-page .proc-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
        padding-left: .25rem;
    }

    /* Vertical connecting line running down the icons */
    .cm-page .proc-timeline::before {
        display: block;
        top: 26px;
        bottom: 26px;
        left: calc(.25rem + 26px);
        right: auto;
        width: 1.5px;
        height: auto;
    }

    .cm-page .proc-step {
        display: grid;
        grid-template-columns: 52px 1fr;
        column-gap: 1rem;
        text-align: left;
        padding: 0 0 1.5rem;
    }

    .cm-page .proc-step:last-child {
        padding-bottom: 0;
    }

    .cm-page .proc-icon {
        width: 52px;
        height: 52px;
        margin: 0;
        grid-row: 1 / 3;
        box-shadow: 0 0 0 6px var(--white);
    }

    .cm-page .proc-icon svg {
        width: 22px;
        height: 22px;
    }

    .cm-page .proc-step h3 {
        font-size: .88rem;
        margin-top: .3rem;
        margin-bottom: .3rem;
    }

    .cm-page .proc-step p {
        font-size: .78rem;
    }

.cm-page .ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }

.cm-page .dest-body {
        grid-template-columns: 1fr;
    }

.cm-page .dest-map {
        max-width: 280px;
        margin: 0 auto;
    }

.cm-page .faq-grid {
        grid-template-columns: 1fr;
    }

.cm-page .faq-head {
        flex-direction: column;
    }

.cm-page .faq-head .text-link {
        margin-top: 0;
    }

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

@media (max-width: 560px) {
.header-actions .btn-outline {
        display: none;
    }

.cm-page .hero-btns,
    .cm-page .btn-row {
        flex-direction: column;
    }

.cm-page .hero-btns .btn,
    .cm-page .btn-row .btn {
        width: 100%;
    }

.cm-page .svc-grid {
        grid-template-columns: 1fr;
    }

.cm-page .conf-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

.cm-page .conf-mosaic > div {
        height: 140px;
    }

.cm-page .m-a {
        grid-column: 1 / -1;
        height: 180px;
    }

.cm-page .m-b,
    .cm-page .m-c,
.cm-page .m-d,
    .cm-page .m-e {
        grid-column: auto;
    }

.cm-page .why-grid {
        grid-template-columns: 1fr;
    }

    .cm-page .proc-icon {
        width: 46px;
        height: 46px;
    }

    .cm-page .proc-step {
        grid-template-columns: 46px 1fr;
    }

    .cm-page .proc-timeline::before {
        left: calc(.25rem + 23px);
        top: 23px;
        bottom: 23px;
    }

.cm-page .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }

.cm-page .dest-two {
        grid-template-columns: 1fr;
    }

.cm-page .panel {
        padding: 1.25rem 1.1rem;
    }

.cm-page .contact-form {
        grid-template-columns: 1fr;
    }

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