:root {
    --gold: #c9a84c;
    --light-gold: #e8c96a;
    --font-heading: 'Cinzel', serif;

    --dark: #000000;
    --dark-2: #0a0a0a;
    --dark-3: #141414;
    --gold-light: #e8c96a;
    --gold-dark: #c9a84c;
    --cream: #0f0f0f;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #ffffff;
    --border-gold: rgba(201,168,76,0.15);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 2px;
}

html {
    overflow-x: hidden;
}

body {
    background: #000;
    height: 100vh;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow-x: hidden;
}

.hero-overlay {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.534) 20%,
        rgba(0, 0, 0, 0.511) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
}

/* Header & Logo */
header {
    display: flex;
    align-items: center;
    padding: 30px 5%;
    position: relative;
}

/* Sticky navbar after hero ends */
header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 12px 5%;
    background: #000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    transition: padding 0.3s ease, transform 0.35s ease, opacity 0.35s ease;
}

header.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

header.scrolled .logo {
    display: none;
}


/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    z-index: 1100;
    position: relative;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 280px;
    height: 100vh;
    background: #0a0a0a;
    border-left: 1px solid rgba(201, 168, 76, 0.18);
    z-index: 1050;
    transition: right 0.32s ease;
    padding: 80px 28px 40px;
}
.mobile-nav.open { right: 0; }

.mob-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    font-size: 1.3rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.mob-nav-close:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.mob-nav-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a0a0a0;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: color 0.2s ease;
}
.mob-nav-link:hover { color: var(--gold); }

.mob-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1040;
}
.mob-nav-overlay.open { display: block; }


.header-logo {
    height: 80px;
    width: auto;
}

.footer-logo {
    height: auto;
    width: 150px;
}

/* logo div centered absolutely so it stays in the middle */
header .logo {
    position: absolute;
    left: 50%;
    width: 100%;
    top: 10px;
    transform: translateX(-50%);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bird-icon {
    width: 45px;
    height: auto;
    margin-bottom: -5px;
}

.logo h1 {
    font-family: var(--font-heading);
    letter-spacing: 6px;
    font-weight: 400;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 600;
}

.logo p {
    font-size: 0.95rem;
    color: white;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Layout */
.hero-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-container-inner {
    width: 100%;
    padding: 0 12%;
}

/* Left Content Typography */
.content-left {
    max-width: 100%;
}

.content-left h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
}

.content-left p {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 300;
}

/* Right Content - Form Box */
.form-outer-box {
    background: rgba(40, 40, 40, 0.6);
    border: 1.5px solid #d1ad54;
    padding: 20px 20px 15px 20px;
    border-radius: 6px;
    width: 440px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.form-outer-box h3 {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.form-inner-white {
    background: white;
    border-radius: 6px;
    padding: 20px 25px;
    color: #333;
}

/* Form Inputs */
input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 8px 0;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #555;
}

input::placeholder {
    color: #888;
}

/* Complex Checkbox Grid */
.form-grid {
    display: grid;
    grid-template-columns: 105px 1fr 1fr;
    row-gap: 12px;
    column-gap: 5px;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 15px;
    align-items: center;
}

.top-label {
    text-align: center;
    color: #777;
}

.side-label {
    font-weight: 600;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Client Row Alignment */
.client-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.client-question {
    display: flex;
    align-items: center;
    gap: 5px;
}

.yes-no-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    padding-right: 15px;
}

.yes-text {
    padding-right: 20px;
    color: #777;
}

.no-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Gold Button */
.gold-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to bottom, #e3c574, #b88d2d);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.gold-btn:hover {
    background: linear-gradient(to bottom, #edcf7d, #c49935);
}

/* Disclaimer */
.disclaimer {
    font-size: 0.65rem;
    text-align: center;
    margin-top: 12px;
    color: #ccc;
}

/* Hero Social Icons */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 18px 0 22px;
}

.social-link {
    color: #888;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: #d1ad54;
    transform: translateY(-2px);
}


/* Mobile Invite Button */
.mobile-invite-btn {
    margin-top: 28px;
    padding: 14px 36px;
    background: #000;
    border: 2px solid #d1ad54;
    color: #d1ad54;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.mobile-invite-btn:hover {
    background: #1a1a1a;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.182);
    z-index: 1000;
    overflow-y: auto;
    padding: 30px 16px;
    align-items: flex-start;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #d1ad54;
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s;
}

.modal-close:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

/* ===== POLICY MODALS ===== */
.policy-modal {
    background: rgba(0, 0, 0, 0.75);
}

.policy-modal-content {
    max-width: 720px;
    background: #0f0f0f;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 50px 44px 44px;
}

.policy-modal-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.policy-modal-date {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 28px;
}

.policy-modal-body h3 {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-modal-body p,
.policy-modal-body ul {
    color: #a0a0a0;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-modal-body ul {
    padding-left: 20px;
}

.policy-modal-body ul li {
    margin-bottom: 4px;
}

.policy-modal-body a {
    color: var(--gold);
    text-decoration: none;
}

.policy-modal-body a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-modal-content {
        padding: 50px 22px 30px;
    }

    .policy-modal-title {
        font-size: 1.2rem;
    }
}

/* ===== PARTNER REGISTRATION MODAL ===== */
.partner-modal-content {
    max-width: 480px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.partner-modal .modal-close.partner-modal-close {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.4rem;
}

.partner-modal .modal-close.partner-modal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: transparent;
    color: #333;
}

.partner-modal-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.partner-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.partner-modal-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 26px;
}

.partner-form-group {
    margin-bottom: 16px;
}

.partner-form-group input,
.partner-form-group select,
.partner-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f7f5f0;
    border: 1px solid #e6e2d8;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.partner-form-group input::placeholder,
.partner-form-group textarea::placeholder {
    color: #9a968c;
}

.partner-form-group input:focus,
.partner-form-group select:focus,
.partner-form-group textarea:focus {
    border-color: var(--gold);
    background: #ffffff;
}

.partner-form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23555' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.partner-form-group select:invalid {
    color: #9a968c;
}

.partner-form-group textarea {
    min-height: 90px;
}

.partner-modal-submit {
    width: 100%;
    padding: 16px;
    margin-top: 6px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

.partner-modal-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
    .partner-modal-content {
        padding: 30px 22px 26px;
    }

    .partner-modal-title {
        font-size: 1.35rem;
    }
}

/* ===== INVITATION FORM ===== */
.form-container {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    padding: 38px 34px 32px;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.07), 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Clips the decorative glows without clipping the dropdown panels */
.accent-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.accent-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.accent-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    top: -90px;
    right: -70px;
}

.accent-2 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    bottom: -60px;
    left: -50px;
}

.form-header {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.form-header::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.form-header h1 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 7px;
}

.form-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #a0a0a0;
    margin: 0;
}

.form-access-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.5);
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin: 28px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    background: rgba(201, 168, 76, 0.03);
}

.form-group {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.65);
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.form-group:focus-within label {
    color: rgba(201, 168, 76, 0.95);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.87rem;
    color: #c8c8c8;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    line-height: 1.4;
}

.form-group input[type="text"]:hover,
.form-group input[type="tel"]:hover,
.form-group select:hover {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a84c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: rgba(201, 168, 76, 0.3);
}

.contact-form-box .form-group input[type="text"]::placeholder,
.contact-form-box .form-group input[type="tel"]::placeholder {
    color: #606060;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
    border-color: rgba(201, 168, 76, 0.75);
    background-color: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select option {
    background: #141414;
    color: #d4b96a;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.87rem;
}

.form-group select option:hover,
.form-group select option:checked {
    background: #1e1a10;
    color: var(--light-gold);
}

.phone-container {
    display: flex;
    gap: 10px;
}

.country-code-wrapper {
    flex: 0 0 120px;
}

.country-code-wrapper select {
    width: 100%;
    padding-left: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

/* ===== CUSTOM SELECT ===== */
.cs-wrap {
    position: relative;
    width: 100%;
}

/* Lift the field above siblings while its dropdown is open
   (form-group has z-index:1, which would otherwise trap the panel) */
.form-group:has(.cs-wrap.open) {
    z-index: 1000;
}

.cs-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 8px;
    padding: 11px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.87rem;
    color: #c8c8c8;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cs-trigger:hover {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.cs-wrap.open .cs-trigger {
    border-color: rgba(201, 168, 76, 0.75);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.cs-val {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4;
}

.cs-val.cs-placeholder {
    color: #888;
}

.cs-chevron {
    width: 14px;
    height: 9px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.25s ease;
}

.cs-wrap.open .cs-chevron {
    transform: rotate(180deg);
}

.cs-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #222 !important;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 8px;
    overflow: hidden;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.cs-wrap.open .cs-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.cs-options-plain {
    max-height: 220px;
    overflow-y: auto;
    background: #222;
}

.cs-option {
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: #c0c0c0;
    background: #222;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs-option:last-child { border-bottom: none; }

.cs-option:hover {
    background: rgba(201, 168, 76, 0.15) !important;
    color: var(--light-gold);
}

.cs-option.selected {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1) !important;
}

/* Country code dropdown */
.cs-country-wrap .cs-trigger {
    font-size: 0.82rem;
    padding-left: 10px;
}

.cs-country-wrap .cs-panel {
    min-width: 220px;
    right: auto;
}

.cs-country-panel-inner {
    display: flex;
    flex-direction: column;
    max-height: 280px;
    background: #222;
}

.cs-search-wrap {
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    flex-shrink: 0;
    background: #1a1a1a;
}

.cs-search-input {
    width: 100%;
    background: #222;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 6px;
    padding: 7px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #c8c8c8;
    outline: none;
    transition: border-color 0.2s ease;
}

.cs-search-input::placeholder { color: #404040; }
.cs-search-input:focus { border-color: rgba(201, 168, 76, 0.45); }

.cs-options-scroll {
    flex: 1;
    overflow-y: auto;
    background: #222;
}

/* Scrollbar */
.cs-options-plain::-webkit-scrollbar,
.cs-options-scroll::-webkit-scrollbar { width: 4px; }
.cs-options-plain::-webkit-scrollbar-track,
.cs-options-scroll::-webkit-scrollbar-track { background: #0a0a0a; }
.cs-options-plain::-webkit-scrollbar-thumb,
.cs-options-scroll::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
}
.cs-options-plain::-webkit-scrollbar-thumb:hover,
.cs-options-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.55);
}

/* Mobile font size */
@media (max-width: 768px) {
    .contact-form-box .cs-trigger,
    .contact-form-box .cs-option { font-size: 0.9rem; }
}

.phone-number-wrapper {
    flex: 1;
}

.submit-button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    border: none;
    border-radius: 6px;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity 0.2s, transform 0.15s;
    position: relative;
    z-index: 1;
}

.submit-button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: #e8c96a;
    text-align: center;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.error-message {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(220, 60, 60, 0.08);
    border: 1px solid rgba(220, 60, 60, 0.35);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    color: #ff7070;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .form-container {
        padding: 28px 18px 24px;
    }

    .country-code-wrapper {
        flex: 0 0 108px;
    }

    .form-header h1 {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container-inner {
        padding: 0 6%;
    }

    .content-left h2 {
        font-size: 3rem;
    }

    .form-outer-box {
        width: 380px;
    }
}


@media (max-width: 768px) {
    p {
        font-size: 1.2rem;
    }

    body {
        height: auto;
        min-height: 100vh;
        background-size: 160%;
        background-position: center top;
    }

    .hero-overlay {
        height: auto;
        min-height: 100vh;
    }

    header {
        padding: 20px 0 15px;
    }

    .logo h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .logo p {
        font-size: 1rem !important;
        text-align: center;
        padding: 7px 10px;
    }

    .hero-container-inner {
        padding: 20px 5% 30px;
    }

    .hero-heading {
        margin-top: 40px;
    }

    .content-left {
        text-align: center;
    }

    .content-left h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .content-left p {
        font-size: 1.05rem;
    }

    .form-outer-box {
        width: 100%;
        max-width: 440px;
    }

    .mobile-invite-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .header-logo {
        height: 60px;
    }

    .footer-logo {
        width: 150px;
        height: auto;
    }
}

@media (max-width: 480px) {
    body {
        background-size: 260%;
        background-position: center top;
    }

    .logo h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .logo p {
        font-size: 0.72rem;
    }

    .content-left h2 {
        font-size: 2.5rem;
    }

    .content-left p {
        font-size: 1.2rem;
    }

    .form-outer-box {
        padding: 16px 14px 12px;
    }

    .form-inner-white {
        padding: 16px 16px;
    }

    .form-grid {
        grid-template-columns: 90px 1fr 1fr;
        font-size: 0.7rem;
    }

    .client-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .yes-no-options {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding-right: 0;
    }

    .yes-text {
        padding-right: 0;
    }

    .gold-btn {
        font-size: 0.9rem;
        padding: 12px;
    }

}


/* ===== TAGLINE SECTION ===== */
.tagline-section {
    background: #000;
    padding: 70px 8%;
    text-align: center;
}

.tagline-text {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tagline-section {
        padding: 50px 6%;
    }

    .tagline-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 1.8rem;
        line-height: 1.7;
    }
}


/* ===== CORE BENEFITS SECTION ===== */
.benefits-section {
    background: #000;
    padding: clamp(70px, 9vw, 130px) 0;
    border-top: 1px solid #1a1a1a;
}

.benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.benefits-heading {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.benefits-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 400;
    letter-spacing: clamp(2px, 0.6vw, 4px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.benefits-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-item {
    background: #0a0a0a;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.benefit-item.active {
    border-color: rgba(201, 168, 76, 0.45);
}

.benefit-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 24px);
    padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.5vw, 32px);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2vw, 1.7rem);
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.45;
    transition: opacity 0.3s ease;
    min-width: 36px;
}

.benefit-item.active .benefit-number,
.benefit-header:hover .benefit-number {
    opacity: 1;
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 1.1vw, 1rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a0a0a0;
    flex: 1;
    line-height: 1.5;
    margin: 0;
}

.benefit-chevron {
    flex-shrink: 0;
    font-size: 0.8rem;
    color: #c9a84c;
    opacity: 0.6;
    transition: transform 0.35s ease, opacity 0.3s ease;
    margin-left: auto;
}

.benefit-item.active .benefit-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.benefit-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 clamp(20px, 2.5vw, 32px);
}

.benefit-item.active .benefit-body {
    max-height: 400px;
    padding: 0 clamp(20px, 2.5vw, 32px) clamp(20px, 2.2vw, 26px);
}

.benefit-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.84rem, 0.95vw, 0.95rem);
    font-weight: 300;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.9;
    letter-spacing: 0.2px;
    margin: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .benefit-desc {
        font-size: 1rem;
    }
}

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


/* ===== DEVELOPER ALLIANCES SECTION ===== */
.developers-section {
    background: #000;
    padding: clamp(70px, 9vw, 130px) 0;
    border-top: 1px solid #1a1a1a;
}

.developers-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.developers-heading {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.developers-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.developers-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.developers-grid {
    border-top: 1px solid #2a2a2a;
    border-left: 1px solid #2a2a2a;
}

.dev-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(36px, 4.5vw, 56px) clamp(20px, 3vw, 40px);
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    background: #000;
    position: relative;
    z-index: 0;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.dev-card:hover {
    transform: translateY(-6px);
    background: #0d0d0d;
    box-shadow:
        0 14px 50px rgba(201, 168, 76, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 168, 76, 0.35);
    z-index: 2;
}

.dev-name {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 0.6vw, 5px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.2;
}

.dev-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(to right, #c9a84c, #e8c96a, #c9a84c);
    margin-bottom: 18px;
    transition: width 0.35s ease;
}

.dev-card:hover .dev-line {
    width: 48px;
}

.dev-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1.75;
    margin-bottom: 14px;
    flex: 1;
}

.dev-partner-logo {
    display: block;
    margin-bottom: 16px;
    filter: invert(1) brightness(2);
    opacity: 0.85;
}

.dev-best {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.78rem, 0.88vw, 0.88rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.6;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    width: 100%;
}

.dev-best span {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .dev-desc,
    .dev-best {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .dev-card {
        padding: 36px 28px;
    }
}


/* ===== PROCESS SECTION ===== */
.process-section {
    background: #000;
    padding: clamp(70px, 9vw, 130px) 0;
    border-top: 1px solid #1a1a1a;
}

.process-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.process-heading {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.process-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.process-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    display: flex;
    flex-direction: column;
}

.step-marker {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.step-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.04);
    transition: border-color 0.35s ease, background 0.35s ease;
}

.process-step:hover .step-circle {
    border-color: rgba(201, 168, 76, 0.8);
    background: rgba(201, 168, 76, 0.1);
}

.step-circle span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-connector {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.05));
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    padding-right: clamp(16px, 2.5vw, 32px);
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1.5;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.84rem, 0.9vw, 0.9rem);
    font-weight: 300;
    color: #a0a0a0;
    line-height: 1.85;
    margin: 0;
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: row;
        gap: 22px;
    }

    .step-marker {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-connector {
        width: 1px;
        height: auto;
        flex: 1;
        min-height: 24px;
        background: linear-gradient(to bottom, rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.05));
    }

    .process-step:last-child .step-connector {
        display: none;
    }

    .step-content {
        padding-right: 0;
        padding-bottom: 36px;
    }

    .step-desc {
        font-size: 1.2rem;
    }
}


/* ===== WHY DUBAI SECTION ===== */
.why-dubai-section {
    background: #000;
    padding: clamp(70px, 9vw, 130px) 0;
}

.why-dubai-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.why-dubai-heading {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.why-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 600;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* Grid — border-table technique: no double lines */
.why-cards-grid {
    border-top: 1px solid #2a2a2a;
    border-left: 1px solid #2a2a2a;
    overflow: visible;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(36px, 4.5vw, 56px) clamp(16px, 2.5vw, 30px);
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
    position: relative;
    background: #000;
    z-index: 0;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-8px);
    background: #0d0d0d;
    box-shadow:
        0 18px 55px rgba(201, 168, 76, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.why-card-icon {
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    color: #c9a84c;
    margin-bottom: 18px;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    color: #e8c96a;
    transform: scale(1.1);
}

.why-card-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(to right, #c9a84c, #e8c96a, #c9a84c);
    margin-bottom: 18px;
    transition: width 0.35s ease;
}

.why-card:hover .why-card-line {
    width: 44px;
}

.why-card-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 2.5px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.8;
    margin-bottom: 10px;
}

.why-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.7;
    letter-spacing: 0.3px;
    margin: 0;
    opacity: 0.75;
}

@media (max-width: 480px) {
    .why-card {
        padding: 38px 30px;
    }

    .why-card-title {
        /* font-size: 0.7rem; */
        /* letter-spacing: 2px; */
    }

    .why-card-icon {
        font-size: 1.6rem;
    }
}


/* ===== TRUST CREDENTIALS SECTION ===== */
.trust-section {
    background: #000;
    padding: clamp(70px, 9vw, 130px) 0;
    border-top: 1px solid #1a1a1a;
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.trust-heading {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.trust-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: clamp(3px, 0.8vw, 6px);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-cards-grid {
    border-top: 1px solid #2a2a2a;
    border-left: 1px solid #2a2a2a;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(40px, 5vw, 64px) clamp(24px, 3.5vw, 48px);
    border-right: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    background: #000;
    position: relative;
    z-index: 0;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.trust-card:hover {
    transform: translateY(-8px);
    background: #0d0d0d;
    box-shadow:
        0 18px 55px rgba(201, 168, 76, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 168, 76, 0.4);
    z-index: 2;
}

.trust-card-icon {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1);
}

.trust-card-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(to right, #c9a84c, #e8c96a, #c9a84c);
    margin-bottom: 18px;
    transition: width 0.35s ease;
}

.trust-card:hover .trust-card-line {
    width: 44px;
}

.trust-card-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 1.1vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 14px;
}

.trust-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0a0;
    line-height: 1.85;
    letter-spacing: 0.3px;
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .trust-card {
        padding: 38px 30px;
    }

    .trust-card-icon {
        font-size: 2.8rem;
    }
}


/* ===== SCROLL ANIMATIONS ===== */
.anim-left {
    opacity: 0;
    transform: translateX(-52px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim-right {
    opacity: 0;
    transform: translateX(52px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim-left.in-view,
.anim-right.in-view {
    opacity: 1;
    transform: translateX(0);
}
.anim-bottom {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero page-load animations */
@keyframes heroLeft {
    from { opacity: 0; transform: translateX(-55px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroRight {
    from { opacity: 0; transform: translateX(55px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-heading {
    animation: heroLeft 0.75s ease 0.1s both;
}
.hero-subtext {
    animation: heroRight 0.75s ease 0.35s both;
}
.hero-cta {
    animation: heroUp 0.7s ease 0.6s both;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #050505;
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    text-align: center;
}

.contact-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #a0a0a0;
}

.contact-detail-item i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
}

.contact-detail-item a {
    color: #a0a0a0;
    text-decoration: none;
}

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

.contact-right {
    padding-left: clamp(20px, 5vw, 60px);
}

.contact-form-box {
    background: #0a0a0a;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: clamp(28px, 4vw, 44px);
}

@media (max-width: 768px) {
    .contact-right {
        padding-left: 0;
    }

    .contact-form-box .form-group label,
    .contact-form-box .form-group input,
    .contact-form-box .form-group select,
    .contact-form-box .submit-button {
        font-size: 0.9rem;
    }
}


/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    padding: 60px 0 32px;
    border-top: 1px solid #1a1a1a;
}

.footer-inner {
    margin: 0 auto;
    padding: 0 8%;
}

.footer-top {
    margin-bottom: 40px;
}

/* Left — Brand */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.65;
    margin: 0;
    line-height: 1.6;
}

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #606060;
    line-height: 1.6;
    margin-top: 14px;
}

/* Center — Nav Links */
.footer-links-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-nav-sep {
    color: rgba(201, 168, 76, 0.3);
    font-size: 0.75rem;
}

/* Right — Contact */
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-item i {
    font-size: 0.9rem;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-contact-item a:hover {
    opacity: 0.75;
}

.footer-socials-label {
    display: inline-block;
    margin-top: 18px;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

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

/* Divider & Bottom */
.footer-divider {
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
    margin-bottom: 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #d4a82f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 0 6%;
    }

    .footer-contact-col {
        align-items: flex-start;
    }

    .footer-links-col {
        justify-content: flex-start;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 24px;
    }
}

/* ---------- SaleDeed.com Footer ---------- */
.saledeed-footer {
    --navy: var(--dark);
    --navy-dark: var(--dark-2);
    --gray: var(--text-muted);
  }
.saledeed-footer * {box-sizing:border-box}
.saledeed-footer button,
  .saledeed-footer input {font:inherit}
.saledeed-footer a {text-decoration:none;color:inherit}
.saledeed-footer .footer {
    background:var(--navy);
    color:#fff;
    border-top:6px solid var(--gold);
    overflow:hidden;
  }
.saledeed-footer .gold {color:var(--gold)}
.saledeed-footer .gray {color:var(--gray)}
.saledeed-footer .bold {font-weight:700}

.saledeed-footer .contact-cta {
    padding:56px 16px;
    background:#050505;
    color:#fff;
    border-bottom:1px solid rgba(201,168,76,.1);
  }
.saledeed-footer .contact-cta-inner {
    max-width:1000px;
    margin:0 auto;
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:40px;
    align-items:center;
  }
.saledeed-footer .contact-cta-text h2 {
    margin:0 0 16px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(28px,4vw,40px);
    font-weight:700;
    color:#fff;
  }
.saledeed-footer .contact-cta-text p {margin:0;font-size:15px;line-height:1.6;color:var(--text-muted)}
.saledeed-footer .contact-form {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    background:var(--dark-3);
    border:1px solid rgba(255,255,255,.06);
    border-radius:12px;
    padding:24px;
  }
.saledeed-footer .contact-form input,
  .saledeed-footer .contact-form textarea {
    min-height:48px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:8px;
    background:#0a0a0a;
    color:#fff;
    font-size:14px;
    outline:none;
    transition:border-color .2s ease;
  }
.saledeed-footer .contact-form input::placeholder,
  .saledeed-footer .contact-form textarea::placeholder {color:var(--text-muted)}
.saledeed-footer .contact-form textarea {
    grid-column:1 / -1;
    padding:12px 16px;
    resize:none;
  }
.saledeed-footer .contact-form input:focus,
  .saledeed-footer .contact-form textarea:focus {border-color:var(--gold)}
.saledeed-footer .contact-form button {
    grid-column:1 / -1;
    justify-self:start;
    padding:14px 28px;
    border:0;
    border-radius:6px;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color:#000;
    font-weight:700;
    font-size:15px;
    letter-spacing:.5px;
    text-transform:uppercase;
    cursor:pointer;
    transition:opacity .2s ease, transform .2s ease;
  }
.saledeed-footer .contact-form button:hover {opacity:.88;transform:translateY(-1px)}
.saledeed-footer .contact-form-note {
    grid-column:1 / -1;
    margin:0;
    padding:12px 16px;
    background:rgba(201,168,76,.08);
    border:1px solid rgba(201,168,76,.35);
    border-radius:6px;
    font-size:13px;
    font-weight:600;
    color:var(--gold-light);
  }
@media(max-width:767px) {
.saledeed-footer .contact-cta-inner {grid-template-columns:1fr;text-align:center}
.saledeed-footer .contact-form {grid-template-columns:1fr}
.saledeed-footer .contact-form button {justify-self:center}
}

.saledeed-footer .call-challenge {
    padding:56px 16px;
    text-align:center;
    background:var(--navy-dark);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .call-challenge-inner {max-width:640px;margin:0 auto}
.saledeed-footer .call-challenge-icon {
    width:64px;
    height:64px;
    margin:0 auto 24px;
    border-radius:50%;
    background:rgba(201,168,76,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:26px;
  }
.saledeed-footer .call-challenge h2 {
    margin:0 0 20px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(28px,5vw,44px);
    font-weight:700;
    color:#fff;
  }
.saledeed-footer .call-challenge-lead {margin:0 0 8px;font-size:17px;color:#fff}
.saledeed-footer .call-challenge-sub {margin:0 0 32px;font-size:14px;line-height:1.6;color:var(--gray)}
.saledeed-footer .challenge-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color:#000;
    font-weight:700;
    font-size:16px;
    border-radius:8px;
    transition:opacity .2s ease, transform .2s ease;
  }
.saledeed-footer .challenge-btn:hover {opacity:.88;transform:translateY(-1px)}

.saledeed-footer .property-baap {
    padding:56px 16px;
    background:var(--navy);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .property-baap-inner {max-width:900px;margin:0 auto}
.saledeed-footer .property-baap-heading {text-align:center;margin-bottom:32px}
.saledeed-footer .property-baap-badge {
    display:inline-block;
    margin:0 auto 20px;
    padding:10px 24px;
    border-radius:999px;
    background:var(--gold);
    color:var(--navy);
    font-size:clamp(18px,3vw,22px);
    font-weight:700;
  }
.saledeed-footer .property-baap-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(30px,6vw,48px);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#fff;
  }
.saledeed-footer .property-baap-tagline {margin:8px 0 0;font-size:clamp(16px,2.5vw,20px);font-weight:700;color:var(--gold)}
.saledeed-footer .property-baap-subtitle {margin:12px 0 0;font-size:14px;color:var(--gray)}
.saledeed-footer .property-baap-divider {display:flex;align-items:center;gap:16px;margin-bottom:24px}
.saledeed-footer .property-baap-divider .line {flex:1;height:1px;background:rgba(201,168,76,.25)}
.saledeed-footer .property-baap-divider p {margin:0;font-size:15px;font-weight:700;color:#fff;white-space:nowrap}
.saledeed-footer .property-baap-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:32px;
  }
.saledeed-footer .property-baap-item {
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 16px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(201,168,76,.15);
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    transition:border-color .2s ease;
  }
.saledeed-footer .property-baap-item:hover {border-color:var(--gold)}
.saledeed-footer .property-baap-item i {color:var(--gold);font-size:16px}
.saledeed-footer .property-baap-cta {text-align:center}
.saledeed-footer .property-baap-cta a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 44px;
    border:1px solid transparent;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color:#000;
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.08em;
    border-radius:8px;
    transition:opacity .2s ease, transform .2s ease;
  }
.saledeed-footer .property-baap-cta a:hover {opacity:.88;transform:translateY(-1px)}
@media(max-width:639px) {
.saledeed-footer .call-challenge {padding:40px 16px}
.saledeed-footer .property-baap {padding:40px 16px}
.saledeed-footer .property-baap-grid {grid-template-columns:repeat(1,1fr)}
}
@media(min-width:640px) and (max-width:767px) {
.saledeed-footer .property-baap-grid {grid-template-columns:repeat(2,1fr)}
}

.saledeed-footer .brand-story {
    padding:56px 16px;
    background:var(--navy);
    border-bottom:1px solid rgba(255,255,255,.10);
    text-align:center;
  }
.saledeed-footer .brand-story-inner {max-width:700px;margin:0 auto}
.saledeed-footer .brand-story-title {
    margin:0 0 20px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(26px,5vw,36px);
    font-weight:700;
    color:#fff;
  }
.saledeed-footer .brand-story-text {margin:0 0 16px;font-size:15px;line-height:1.7;color:var(--gray)}
.saledeed-footer .brand-story-text strong {color:var(--gold)}
.saledeed-footer .brand-story-prompt {
    margin:0 0 20px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--gold);
  }
.saledeed-footer .brand-story-full {
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.35s;
    text-align:left;
  }
.saledeed-footer .brand-story-full.open {max-height:3200px;opacity:1;margin-bottom:24px}
.saledeed-footer .brand-story-full p {margin:0 0 14px;font-size:14px;line-height:1.7;color:var(--gray)}
.saledeed-footer .brand-story-full p strong {color:#fff}
.saledeed-footer .brand-story-full p strong.gold {color:var(--gold)}
.saledeed-footer .brand-story-full p.center {text-align:center}
.saledeed-footer .brand-story-full p.gold {color:var(--gold)}
.saledeed-footer .brand-story-full p.bold {font-weight:700}
.saledeed-footer .brand-story-full h3 {
    margin:24px 0 10px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    text-align:center;
    color:#fff;
  }
.saledeed-footer .brand-story-full h3:first-child {margin-top:0}
.saledeed-footer .brand-story-full h3.lg {
    margin:32px 0 14px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(18px,3vw,22px);
    text-transform:none;
    letter-spacing:0;
  }
.saledeed-footer .brand-story-full .check-line {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-align:center;
    font-weight:700;
    color:var(--gold);
  }
.saledeed-footer .brand-story-toggle {
    border:1px solid var(--border-gold);
    background:none;
    color:var(--gold);
    font-weight:700;
    font-size:14px;
    padding:12px 28px;
    border-radius:10px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:border-color .2s ease;
  }
.saledeed-footer .brand-story-toggle:hover {border-color:var(--gold)}
.saledeed-footer .brand-story-toggle .chevron {transition:.3s;font-size:12px}
.saledeed-footer .brand-story-toggle.open .chevron {transform:rotate(180deg)}
@media(max-width:639px) {
.saledeed-footer .brand-story {padding:40px 16px}
}

.saledeed-footer .ecosystem {
    padding:40px 16px 80px;
    background:var(--navy);
    border-top:1px solid var(--border-gold);
    border-bottom:1px solid rgba(255,255,255,.10);
  }
.saledeed-footer .ecosystem-inner {
    max-width:1152px;
    margin:0 auto;
  }
.saledeed-footer .ecosystem-heading {
    text-align:center;
    margin-bottom:56px;
  }
.saledeed-footer .ecosystem-heading h2 {
    margin:0;
    padding:0 8px;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(20px,3vw,36px);
    font-weight:400;
  }
.saledeed-footer .ecosystem-parent-wrap {
    display:flex;
    justify-content:center;
    position:relative;
    margin-bottom:0;
  }
.saledeed-footer .ecosystem-parent {
    position:relative;
    background:var(--navy);
    border:1px solid var(--gold);
    border-radius:16px;
    padding:20px 40px;
    z-index:10;
  }
.saledeed-footer .ecosystem-parent h3 {
    margin:0;
    text-align:center;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    font-weight:700;
  }
.saledeed-footer .ecosystem-parent .white {color:#fff}
.saledeed-footer .ecosystem-parent .gold {color:var(--gold)}
.saledeed-footer .ecosystem-parent-subtitle {
    margin:8px 0 0;
    text-align:center;
    font-size:13px;
    font-weight:500;
    color:var(--gray);
  }
.saledeed-footer .desktop-tree {
    position:relative;
    height:64px;
  }
.saledeed-footer .desktop-tree svg {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
  }
.saledeed-footer .mobile-tree {display:none}
.saledeed-footer .ecosystem-children {
    position:relative;
  }
.saledeed-footer .ecosystem-grid {
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
  }
.saledeed-footer .ecosystem-card {
    display:block;
    border:1px solid rgba(255,255,255,.08);
    background:var(--navy-dark);
    border-radius:16px;
    padding:24px;
    text-align:center;
    transition:all .3s ease;
  }
.saledeed-footer .ecosystem-card:hover {
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 20px 35px rgba(0,0,0,.35);
  }
.saledeed-footer .ecosystem-icon {
    width:48px;
    height:48px;
    margin:0 auto 16px;
    border-radius:50%;
    background:rgba(201,168,76,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
  }
.saledeed-footer .ecosystem-icon svg {width:24px;height:24px}
.saledeed-footer .ecosystem-card h4 {
    margin:0;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
  }
.saledeed-footer .ecosystem-card:hover h4 {color:var(--gold)}
.saledeed-footer .ecosystem-card p {
    margin:8px 0 0;
    color:var(--gray);
    font-size:14px;
    line-height:1.35;
  }
.saledeed-footer .ecosystem-connector { display:none; }
@media(max-width:1023px) {
.saledeed-footer .ecosystem {
      padding:40px 16px 64px;
    }
.saledeed-footer .ecosystem-heading {margin-bottom:40px}
.saledeed-footer .desktop-tree {display:none}
.saledeed-footer .mobile-tree {
      display:block;
      width:100%;
      max-width:260px;
      height:32px;
      margin:0 auto;
    }
.saledeed-footer .ecosystem-children {
      min-height:0;
    }
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(2,1fr);
      gap:12px;
    }
.saledeed-footer .ecosystem-card {
      padding:16px;
      border-radius:12px;
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 2;
      width:calc(50% - 6px);
      margin:0 auto;
    }
.saledeed-footer .ecosystem-card h4 {font-size:16px}
.saledeed-footer .ecosystem-card p {font-size:12px}
.saledeed-footer .ecosystem-icon {
      width:44px;height:44px;margin-bottom:12px;
    }
.saledeed-footer .ecosystem-icon svg {width:22px;height:22px}
}
@media(min-width:640px) and (max-width:1023px) {
.saledeed-footer .ecosystem {
      padding:64px 24px 80px;
    }
.saledeed-footer .ecosystem-heading h2 {font-size:30px}
.saledeed-footer .ecosystem-heading {margin-bottom:40px}
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 1;
      width:100%;
    }
.saledeed-footer .ecosystem-card {padding:20px}
}
@media(max-width:639px) {
.saledeed-footer .ecosystem {
      padding:56px 16px 72px;
      background:var(--cream);
      border-top:1px solid var(--border-gold);
      border-bottom:1px solid rgba(255,255,255,.10);
    }
.saledeed-footer .ecosystem-heading {margin-bottom:36px}
.saledeed-footer .ecosystem-heading h2 {
      color:#fff;
      font-family:'Poppins',sans-serif;
      font-weight:700;
    }
.saledeed-footer .ecosystem-parent {
      background:var(--dark-3);
      border:1.5px solid var(--gold);
      border-radius:18px;
      padding:22px 28px;
      box-shadow:0 4px 16px rgba(0,0,0,.3);
    }
.saledeed-footer .ecosystem-parent h3 {
      font-family:'Poppins',sans-serif;
      font-weight:800;
      font-size:24px;
    }
.saledeed-footer .ecosystem-parent .white {color:#fff}
.saledeed-footer .ecosystem-parent-subtitle {color:var(--text-muted)}
.saledeed-footer .ecosystem-parent .gold {color:var(--gold-dark)}
.saledeed-footer .mobile-tree {max-width:371px;height:32px}
.saledeed-footer .ecosystem-grid {
      grid-template-columns:repeat(2,1fr);
      column-gap:16px;
      row-gap:0;
    }
.saledeed-footer .ecosystem-card {
      background:var(--dark-3);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      padding:22px 16px;
      box-shadow:0 4px 14px rgba(0,0,0,.2);
    }
.saledeed-footer .ecosystem-card:hover {
      border-color:var(--gold);
      box-shadow:0 12px 26px rgba(0,0,0,.35);
    }
.saledeed-footer .ecosystem-card:last-child {
      grid-column:span 2;
      width:75%;
      margin:0 auto;
    }
.saledeed-footer .ecosystem-icon {
      width:52px;height:52px;margin-bottom:14px;
      background:rgba(201,168,76,.15);
      color:var(--gold-dark);
    }
.saledeed-footer .ecosystem-icon svg {width:24px;height:24px}
.saledeed-footer .ecosystem-card h4 {
      font-size:17px;
      color:#fff;
      font-family:'Poppins',sans-serif;
      font-weight:700;
    }
.saledeed-footer .ecosystem-card:hover h4 {color:var(--gold-dark)}
.saledeed-footer .ecosystem-card p {
      font-size:13px;
      color:var(--text-muted);
      font-family:'Inter',sans-serif;
    }
.saledeed-footer .ecosystem-connector {
      display:block;
      grid-column:1 / -1;
      height:28px;
    }
.saledeed-footer .ecosystem-connector svg { width:100%; height:100%; display:block; }
}
/* Partner Network */
.saledeed-footer .partner-network {
    padding:64px 16px;
    background:var(--navy);
    border-top:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
    text-align:center;
  }
.saledeed-footer .partner-network-inner {max-width:720px;margin:0 auto}
.saledeed-footer .partner-network-eyebrow {
    margin:0 0 14px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--gold-light);
  }
.saledeed-footer .partner-network-title {
    margin:0 0 16px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(24px,4vw,32px);
    font-weight:700;
    line-height:1.3;
    color:#fff;
  }
.saledeed-footer .partner-network-sub {margin:0 0 28px;font-size:15px;line-height:1.7;color:rgba(255,255,255,.75)}
.saledeed-footer .partner-network-tags {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:32px;
  }
.saledeed-footer .partner-network-tags span {
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    background:rgba(255,255,255,.05);
    font-size:13px;
    font-weight:600;
    color:var(--gold-light);
  }
.saledeed-footer .partner-network-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 40px;
    background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color:#000;
    font-weight:700;
    font-size:15px;
    border-radius:8px;
    box-shadow:0 4px 14px rgba(201,168,76,0.25);
    transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease;
  }
.saledeed-footer .partner-network-cta:hover {opacity:.88;transform:translateY(-1px);box-shadow:0 6px 18px rgba(201,168,76,0.35)}

/* Referral Network */
.saledeed-footer .referral-network {
    padding:64px 16px;
    background:#f4efe4;
    border-bottom:1px solid rgba(201,168,76,.3);
    text-align:center;
  }
.saledeed-footer .referral-network-inner {max-width:960px;margin:0 auto}
.saledeed-footer .referral-network-eyebrow {
    margin:0 0 16px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(36px,7vw,56px);
    font-weight:700;
    color:#241f18;
  }
.saledeed-footer .referral-network-tagline {margin:10px 0 0;font-size:15px;font-weight:700;color:var(--gold-dark)}
.saledeed-footer .referral-network-lead {margin:24px 0 0;font-size:16px;font-weight:600;color:#241f18}
.saledeed-footer .referral-network-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
    padding-top:40px;
    border-top:1px solid rgba(201,168,76,.35);
    text-align:left;
  }
.saledeed-footer .referral-network-col h3 {
    margin:0 0 14px;
    font-size:19px;
    font-weight:700;
    color:#241f18;
    line-height:1.4;
  }
.saledeed-footer .referral-network-col p {margin:0 0 20px;font-size:14px;line-height:1.7;color:#6b6153}
.saledeed-footer .referral-network-col p.referral-network-cta-line {
    margin:-4px 0 20px;
    font-size:16px;
    font-weight:800;
    line-height:1.5;
    color:#a5780f;
  }
.saledeed-footer .referral-network-tags {display:flex;flex-wrap:wrap;gap:10px}
.saledeed-footer .referral-network-tags span {
    padding:7px 16px;
    border:1px solid rgba(201,168,76,.4);
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-col--actions {display:flex;flex-direction:column;justify-content:center}
.saledeed-footer .btn-referral {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    margin-bottom:14px;
    transition:all .2s ease;
  }
.saledeed-footer .btn-referral--solid {background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);color:#000}
.saledeed-footer .btn-referral--solid:hover {opacity:.88;transform:translateY(-1px)}
.saledeed-footer .btn-referral--outline {border:1px solid rgba(201,168,76,.5);color:var(--gold-dark);background:rgba(255,255,255,.5)}
.saledeed-footer .btn-referral--outline:hover {border-color:var(--gold-dark);color:#a5780f}
.saledeed-footer .referral-network-footer {margin-top:48px;text-align:center}
.saledeed-footer .referral-network-footer-eyebrow {
    margin:0 0 8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--gold-dark);
  }
.saledeed-footer .referral-network-footer-title {
    margin:0;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(26px,5vw,38px);
    font-weight:700;
    color:#241f18;
  }
@media(max-width:767px) {
.saledeed-footer .referral-network-grid {grid-template-columns:1fr;gap:32px}
}

@media(max-width:639px) {
.saledeed-footer .partner-network {padding:40px 16px}
.saledeed-footer .referral-network {padding:40px 16px}
}

.saledeed-footer .main {
    display:flex;
    justify-content:center;
    max-width:1280px;
    margin:auto;
    padding:48px 32px 56px;
  }
.saledeed-footer .brand {min-width:0;text-align:center}
.saledeed-footer .brand-wordmark {
    display:inline-flex;
    align-items:baseline;
    line-height:1;
  }
.saledeed-footer .brand-wordmark .sale {
    font:700 26px Georgia,"Times New Roman",serif;
    text-transform:uppercase;
    color:#fff;
  }
.saledeed-footer .brand-wordmark .com {
    color:var(--gold);
    font:700 24px Georgia,"Times New Roman",serif;
    text-transform:uppercase;
  }
.saledeed-footer .tagline {
    margin:8px 0 0;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
  }
.saledeed-footer .brand-unit {margin:10px 0 0;font-size:13px}
.saledeed-footer .brand-redefine {
    margin:8px 0 0;
    font-size:11px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
  }
.saledeed-footer .brand-redefine .white {color:#fff}
.saledeed-footer .footer-divider {
    width:100%;
    max-width:420px;
    height:1px;
    margin:24px auto;
    background:linear-gradient(to right,transparent,rgba(201,168,76,.4),transparent);
  }
.saledeed-footer .footer-nav {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px 32px;
  }
.saledeed-footer .footer-nav a {
    color:var(--gray);
    font-size:13px;
    font-weight:600;
    transition:color .2s ease;
  }
.saledeed-footer .footer-nav a:hover {color:var(--gold)}
.saledeed-footer .disclaimer {
    padding:16px;
    border-top:1px solid rgba(255,255,255,.05);
  }
.saledeed-footer .disclaimer-inner {
    max-width:896px;
    margin:auto;
    text-align:center;
    color:var(--gray);
    font-size:11px;
    line-height:1.6;
  }
.saledeed-footer .disclaimer-inner p {margin:0 0 8px}
.saledeed-footer .extra-disclaimer {
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:.3s;
  }
.saledeed-footer .extra-disclaimer.open {max-height:300px;opacity:1}
.saledeed-footer .show-more {
    border:0;
    background:none;
    color:var(--gold);
    font-weight:700;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:4px;
  }
.saledeed-footer .chevron {transition:.3s;font-size:12px}
.saledeed-footer .show-more.open .chevron {transform:rotate(180deg)}
.saledeed-footer .footer-bottom {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding:18px 32px;
    background:#000;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--gray);
    font-size:14px;
  }
.saledeed-footer .footer-bottom__copyright {white-space:nowrap}
.saledeed-footer .india {font-size:16px;font-weight:500;color:#fff}
.saledeed-footer .india .orange {color:#FF9933}
.saledeed-footer .india .green {color:#138808}
@media(max-width:639px) {
.saledeed-footer .footer-bottom {justify-content:center;text-align:center;padding:16px}
.saledeed-footer .main {padding:32px 16px 40px}
}
