/* =========================
   ROOT VARIABLES
========================= */
:root {
    /* Masina Ent current-style palette:
       warm gold, soft cream, charcoal, and muted business neutrals */
    --primary: #b98245;
    --primary-dark: #7a4f2a;
    --secondary: #2b2723;
    --accent: #d6a15f;
    --dark: #171513;
    --text: #4f463f;
    --muted: #756b63;
    --light: #f8f2ea;
    --cream: #fff8ef;
    --white: #ffffff;
    --border: #eadfD2;
    --shadow: 0 20px 50px rgba(43, 39, 35, 0.14);
    --shadow-soft: 0 12px 30px rgba(43, 39, 35, 0.09);
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1180px;
}

/* =========================
   BASE
========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    color: var(--white);
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 0.96;
    letter-spacing: 0;
    margin-bottom: 26px;
}

h2 {
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    letter-spacing: 0;
    margin-bottom: 20px;
}

h3 {
    color: var(--dark);
    font-size: 1.35rem;
    line-height: 1.2;
}

p {
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #171513;
    box-shadow: 0 14px 28px rgba(214, 161, 95, 0.28);
}

.btn-primary:hover {
    background: #e7b06b;
}

.btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.48);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.text-link {
    display: inline-flex;
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 10px;
}

.text-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
    padding: 18px 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 6px 26px rgba(15, 23, 42, 0.08);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    box-shadow: none;
}

.site-header.scrolled .logo {
    background: transparent;
    border-color: transparent;
    color: var(--dark);
}

.logo-original {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-header.scrolled .logo-original {
    background: transparent;
    border-color: transparent;
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    color: var(--white);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.site-header.scrolled .main-nav {
    color: var(--dark);
}

.main-nav a {
    position: relative;
}

.main-nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-button {
    background: var(--accent);
    color: #171513;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(214, 161, 95, 0.24);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.site-header.scrolled .nav-toggle {
    background: #f8f2ea;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.scrolled .nav-toggle span {
    background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 150px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(214, 161, 95, 0.28), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(185, 130, 69, 0.22), transparent 25%),
        linear-gradient(135deg, #171513 0%, #2b2723 46%, #7a4f2a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -200px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: rgba(214, 161, 95, 0.18);
    filter: blur(30px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    gap: 58px;
    align-items: center;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    max-width: 710px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.hero-stats div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    backdrop-filter: blur(14px);
}

.hero-stats strong {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
}

.hero-card {
    position: relative;
    border-radius: 34px;
    padding: 36px;
    min-height: 470px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.hero-card h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

/* =========================
   INNER PAGES
========================= */
.logo img {
    display: block;
    width: 82px;
    max-height: 68px;
    opacity: 0.94;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.logo-wordmark {
    position: relative;
    display: grid;
    gap: 9px;
    min-width: 158px;
    padding: 15px 0;
    color: rgba(126, 130, 139, 0.92);
    text-transform: uppercase;
    font-size: 0.95rem;
    line-height: 1;
    font-weight: 650;
    letter-spacing: 0.56em;
}

.logo-wordmark::before,
.logo-wordmark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    opacity: 0.55;
}

.logo-wordmark::before {
    top: 0;
}

.logo-wordmark::after {
    bottom: 0;
}

.logo-wordmark span {
    display: block;
}

.site-header.scrolled .logo-wordmark {
    color: rgba(80, 84, 92, 0.82);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 850;
}

.site-header.scrolled .phone-pill {
    background: var(--light);
    border-color: var(--border);
    color: var(--dark);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 105px;
    background:
        radial-gradient(circle at 18% 18%, rgba(214, 161, 95, 0.28), transparent 30%),
        radial-gradient(circle at 82% 12%, rgba(185, 130, 69, 0.22), transparent 25%),
        linear-gradient(135deg, #171513 0%, #2b2723 46%, #7a4f2a 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.page-hero h1 {
    max-width: 840px;
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px;
    align-items: center;
}

.cards-3,
.cards-4 {
    display: grid;
    gap: 24px;
}

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

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(185, 130, 69, 0.35);
    box-shadow: var(--shadow);
}

.card h4 {
    color: var(--secondary);
    margin: -4px 0 14px;
    font-size: 1rem;
}

.card p {
    color: var(--muted);
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: rgba(214, 161, 95, 0.16);
    color: var(--primary-dark);
    font-weight: 900;
}

.check-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.contact-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.check-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(214, 161, 95, 0.14);
}

.contact-list li {
    padding: 20px 20px 20px 50px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-list li::before {
    left: 22px;
    top: 28px;
}

.contact-list strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-list a {
    color: var(--primary-dark);
    font-weight: 800;
}

.image-stack {
    position: relative;
    min-height: 530px;
}

.image-stack img {
    position: absolute;
    width: 76%;
    height: 340px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.image-stack img:first-child {
    top: 0;
    left: 0;
}

.image-stack img:last-child {
    right: 0;
    bottom: 0;
    border: 10px solid var(--cream);
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 18px;
}

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

.form-card label {
    display: grid;
    gap: 8px;
    color: var(--dark);
    font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--cream);
    color: var(--dark);
    font: inherit;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-card textarea {
    min-height: 150px;
    resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(214, 161, 95, 0.18);
}

.form-message {
    display: none;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(214, 161, 95, 0.15);
    color: var(--primary-dark);
    font-weight: 800;
}

.form-message.visible {
    display: block;
}

.form-message.success {
    background: rgba(36, 120, 77, 0.13);
    color: #236241;
}

.form-message.error {
    background: rgba(164, 58, 58, 0.13);
    color: #8c2f2f;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.map-orbit {
    position: absolute;
    inset: 34px 34px auto 34px;
    height: 245px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 25% 35%, rgba(214, 161, 95, 0.9), transparent 4%),
        radial-gradient(circle at 72% 65%, rgba(185, 130, 69, 0.88), transparent 5%),
        linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.orbit-line {
    position: absolute;
    left: calc(23% + 9px);
    top: calc(32% + 9px);
    width: calc(54% - 18px);
    height: calc(39% - 18px);
    background:
        linear-gradient(
            to top right,
            transparent calc(50% - 1px),
            var(--accent) calc(50% - 1px),
            var(--primary) calc(50% + 1px),
            transparent calc(50% + 1px)
        );
    filter: drop-shadow(0 0 14px rgba(214, 161, 95, 0.58));
}

.orbit-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.dot-uk {
    left: 23%;
    top: 32%;
}

.dot-gambia {
    right: 23%;
    bottom: 29%;
}

/* =========================
   TRUST BANNER
========================= */
.trust-banner {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    padding: 28px 0;
}

.trust-inner h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 0;
}

.trust-inner p {
    margin-bottom: 0;
    color: var(--muted);
}

/* =========================
   SERVICES
========================= */
.services {
    background: linear-gradient(180deg, var(--cream), var(--light));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 130, 69, 0.35);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(214, 161, 95, 0.16);
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.service-card h3 {
    margin-bottom: 6px;
}

.service-card h4 {
    color: var(--secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.service-card p {
    color: var(--muted);
}

/* =========================
   ADVANTAGE
========================= */
.advantage {
    background: var(--white);
}

.advantage-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.advantage-visual {
    min-height: 500px;
    border-radius: 34px;
    padding: 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(214, 161, 95, 0.25), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(185, 130, 69, 0.22), transparent 28%),
        linear-gradient(145deg, #171513, #4a3324);
    position: relative;
    display: grid;
    align-content: center;
    gap: 46px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.advantage-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 42px 42px;
}

.connection-card {
    position: relative;
    z-index: 1;
    width: min(100%, 330px);
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.gm-card {
    margin-left: auto;
}

.connection-card span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.connection-card strong {
    color: var(--white);
    font-size: 1.45rem;
}

.connection-line {
    position: absolute;
    width: 62%;
    height: 3px;
    left: 19%;
    top: 50%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: rotate(-13deg);
    box-shadow: 0 0 35px rgba(214, 161, 95, 0.45);
}

.advantage-content p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

/* =========================
   VALUES
========================= */
.values {
    background: linear-gradient(180deg, var(--light), var(--cream));
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 54px;
    align-items: center;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 18px;
}

.value-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.value-list span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--secondary);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.value-list h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
}

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

.team-slider {
    position: relative;
    min-height: 440px;
    border-radius: 34px;
    background: var(--dark);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.slider-track {
    position: relative;
    min-height: inherit;
}

.team-slider .slider-track {
    position: absolute;
    inset: 0;
}

.team-slide {
    position: absolute;
    inset: 0;
    padding: 42px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.team-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(23, 21, 19, 0.9) 0%, rgba(23, 21, 19, 0.72) 44%, rgba(23, 21, 19, 0.34) 100%),
        radial-gradient(circle at 20% 80%, rgba(214, 161, 95, 0.28), transparent 34%);
}

.team-slide > * {
    position: relative;
    z-index: 1;
}

.team-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.team-avatar {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #171513;
    font-weight: 900;
    font-size: 1.45rem;
    margin-bottom: 28px;
}

.team-slide h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 14px;
}

.team-slide p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.slider-controls {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* =========================
   FAQ
========================= */
.faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading p:not(.eyebrow) {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 850;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
}

.faq-question strong {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(214, 161, 95, 0.16);
    color: var(--primary-dark);
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    margin-bottom: 0;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-question strong {
    transform: rotate(45deg);
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(214, 161, 95, 0.26), transparent 25%),
        radial-gradient(circle at 85% 70%, rgba(185, 130, 69, 0.28), transparent 28%),
        linear-gradient(135deg, #171513, #4a3324);
}

.final-cta-inner {
    text-align: center;
    max-width: 880px;
}

.final-cta .eyebrow {
    color: var(--accent);
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.1rem;
}

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

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #171513;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.75fr;
    gap: 34px;
    padding: 64px 0;
}

.footer-col {
    padding: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.footer-col strong {
    color: var(--white);
}

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

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

.footer-links {
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    display: grid;
    gap: 8px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* =========================
   BACK TO TOP
========================= */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* =========================
   REVEAL ANIMATION
========================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .section {
        padding: 76px 0;
    }

    .container {
        width: min(100% - 56px, var(--container));
    }

    .site-header {
        padding: 14px 0;
    }

    .site-header .header-inner {
        padding: 8px 0;
    }

    .hero {
        min-height: auto;
        padding: 132px 0 82px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
        gap: 34px;
    }

    .values-grid,
    .faq-grid,
    .trust-inner,
    .split,
    .cards-3,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .header-actions {
        display: none;
    }

    h1 {
        font-size: clamp(3.4rem, 8.5vw, 5rem);
    }

    .hero-card {
        min-height: 430px;
        padding: 30px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .advantage-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 34px;
    }

    .advantage-visual {
        min-height: 420px;
        padding: 28px;
    }

    .connection-card {
        width: min(100%, 270px);
    }

    .connection-card strong {
        font-size: 1.22rem;
    }

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

    .faq-heading {
        position: static;
    }

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

    .main-nav {
        position: fixed;
        left: 28px;
        right: 28px;
        top: 88px;
        display: grid;
        gap: 0;
        padding: 16px;
        color: var(--dark);
        background: var(--white);
        border-radius: 22px;
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 13px 12px;
        border-radius: 14px;
    }

    .main-nav a:hover {
        background: #f8f2ea;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-button {
        text-align: center;
        margin-top: 8px;
    }

    .nav-toggle {
        display: block;
    }
}

@media (min-width: 681px) and (max-width: 860px) {
    .hero-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 360px;
    }

    .advantage-visual {
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero {
        padding: 112px 0 64px;
    }

    .hero-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-content {
        min-width: 0;
    }

    h1 {
        font-size: clamp(2.25rem, 10.4vw, 3.05rem);
        line-height: 1.06;
        max-width: 100%;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 100%;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

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

    .hero-card {
        padding: 24px;
        border-radius: 26px;
        min-height: 350px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 56px;
        max-height: 48px;
    }

    .logo-wordmark {
        display: grid;
        gap: 5px;
        min-width: 104px;
        padding: 8px 0;
        font-size: 0.62rem;
        letter-spacing: 0.46em;
    }

    .map-orbit {
        inset: 24px 24px auto 24px;
        height: 190px;
    }

    .service-card,
    .footer-col,
    .card,
    .form-card {
        padding: 24px;
    }

    .page-hero {
        padding: 140px 0 76px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .image-stack img {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .image-stack img:last-child {
        border-width: 0;
    }

    .advantage-visual {
        min-height: 420px;
        padding: 22px;
    }

    .connection-card {
        padding: 18px;
    }

    .values-grid {
        gap: 36px;
    }

    .value-list li {
        grid-template-columns: 1fr;
    }

    .team-slider {
        min-height: 390px;
    }

    .team-slide {
        padding: 30px;
    }

    .slider-controls {
        right: 20px;
        bottom: 20px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
    }
}
