/* ==========================================================================
   CONTACT PAGE — StratX Capital (Institutional Support Layer)
   ========================================================================== */

/* ── Base ── */
.contact-page {
    background-color: var(--bg-black);
    font-family: 'Inter', sans-serif;
}

.cx-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.cx-section {
    position: relative;
    padding: 6.5rem 0;
    overflow: hidden;
}

.cx-section-header {
    margin-bottom: 3.5rem;
}

/* Section title */
.cx-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 3.5vw, 2.85rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0;
}

.hide-mobile { display: inline; }

/* ── Shared buttons ── */
.cx-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.65rem;
    background: #fff;
    color: #000;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 100px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.cx-btn-primary:hover {
    background: #e6e6e6;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255,255,255,0.1);
}

.cx-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1.65rem;
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 100px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.cx-btn-outline:hover {
    border-color: rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.04);
    transform: translateY(-1px);
}

.cx-btn-sm {
    padding: 0.62rem 1.35rem;
    font-size: 0.82rem;
}

/* Status dot */
.cx-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #19E292;
    box-shadow: 0 0 6px rgba(25,226,146,0.55);
    animation: cxPulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes cxPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.5; transform:scale(0.82); }
}

/* ── Fade-up animation ── */
[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-up"].visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================================================
   HERO
   ================================================================ */
.cx-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.cx-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.cx-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000 0%, #000 15%, rgba(0,0,0,0.6) 65%, rgba(6,7,11,0.95) 100%);
    z-index: 2;
}

.cx-hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.1;
}

.cx-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1160px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.cx-hero-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Breadcrumb */
.cx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.28);
    font-weight: 400;
}
.cx-breadcrumb-sep { color: rgba(255,255,255,0.15); font-size: 0.85rem; }

.cx-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}

.cx-hero-sub {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    font-weight: 300;
    max-width: 540px;
}

.cx-hero-actions {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    flex-wrap: wrap;
}

.cx-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
}
.cx-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.cx-hero-meta-sep { color: rgba(255,255,255,0.15); }


/* ================================================================
   CONTACT METHODS
   ================================================================ */
.cx-methods-section {
    background: var(--bg-black);
}

.cx-methods-section .cx-section-header {
    text-align: left;
}

.cx-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.cx-method-card {
    position: relative;
    overflow: hidden;
    background: rgba(10, 12, 26, 0.8);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.cx-method-card:hover { transform: translateY(-4px); }

.cx-method-card--tg {
    border-color: rgba(25,226,146,0.12);
    background: rgba(25,226,146,0.02);
}
.cx-method-card--tg:hover { border-color: rgba(25,226,146,0.25); }

.cx-method-card--email {
    border-color: rgba(43,176,255,0.12);
    background: rgba(43,176,255,0.02);
}
.cx-method-card--email:hover { border-color: rgba(43,176,255,0.25); }

.cx-method-card--consult:hover { border-color: rgba(255,255,255,0.12); }

/* Top shimmer line */
.cx-method-card--tg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25,226,146,0.3), transparent);
}
.cx-method-card--email::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43,176,255,0.3), transparent);
}

/* Glow */
.cx-method-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}
.cx-method-glow--tg     { background: radial-gradient(ellipse at top left, rgba(25,226,146,0.05) 0%, transparent 60%); }
.cx-method-glow--blue   { background: radial-gradient(ellipse at top left, rgba(43,176,255,0.05) 0%, transparent 60%); }
.cx-method-glow--subtle { background: radial-gradient(ellipse at top left, rgba(255,255,255,0.02) 0%, transparent 60%); }

/* Top row */
.cx-method-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cx-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cx-method-icon--tg      { background: rgba(25,226,146,0.08); border: 1px solid rgba(25,226,146,0.18); color: #19E292; }
.cx-method-icon--blue    { background: rgba(43,176,255,0.08); border: 1px solid rgba(43,176,255,0.18); color: rgba(43,176,255,0.9); }
.cx-method-icon--neutral { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }

/* Availability badge */
.cx-avail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}
.cx-avail-badge--green  { background: rgba(25,226,146,0.07); border: 1px solid rgba(25,226,146,0.18); color: rgba(25,226,146,0.85); }
.cx-avail-badge--blue   { background: rgba(43,176,255,0.07); border: 1px solid rgba(43,176,255,0.18); color: rgba(43,176,255,0.85); }
.cx-avail-badge--neutral{ background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

.cx-avail-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #19E292;
    box-shadow: 0 0 5px rgba(25,226,146,0.5);
    animation: cxPulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Title row */
.cx-method-title-row { display: flex; flex-direction: column; gap: 0.5rem; }

.cx-method-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(25,226,146,0.5);
}
.cx-method-label--blue    { color: rgba(43,176,255,0.5); }
.cx-method-label--neutral { color: rgba(255,255,255,0.25); }

.cx-method-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.cx-method-card p {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.68;
    margin: 0;
}

/* List */
.cx-method-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.cx-method-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.cx-method-list li::before {
    content: '·';
    color: rgba(25,226,146,0.5);
    font-size: 1.2rem;
    line-height: 1;
}

/* Footer */
.cx-method-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: auto;
}

.cx-method-handle {
    font-size: 0.72rem;
    color: rgba(25,226,146,0.35);
    letter-spacing: 0.03em;
    font-family: 'JetBrains Mono', monospace;
}

.cx-email-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.83rem;
    color: rgba(43,176,255,0.7);
    font-family: 'JetBrains Mono', monospace;
    flex: 1;
}

.cx-method-note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}


/* ================================================================
   COMPANY INFO
   ================================================================ */
.cx-company-section {
    position: relative;
    overflow: hidden;
}

.cx-company-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cx-company-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.cx-company-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 7, 11, 0.88);
    z-index: 2;
}

.cx-company-section .cx-container {
    position: relative;
    z-index: 10;
}

.cx-company-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 5rem;
    align-items: center;
}

.cx-company-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cx-company-desc {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 0.94rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.72;
    font-weight: 300;
}

.cx-company-note {
    font-size: 0.78rem;
    color: rgba(43,176,255,0.45);
    border-left: 2px solid rgba(43,176,255,0.2);
    padding-left: 0.85rem;
}

/* Company info card */
.cx-company-card {
    position: relative;
    background: rgba(10,12,26,0.8);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    overflow: hidden;
}

.cx-company-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43,176,255,0.2), transparent);
}

.cx-company-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(43,176,255,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.cx-company-row {
    padding: 1.75rem 2rem;
}

.cx-company-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cx-company-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 0;
}

.cx-company-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cx-field-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
}

.cx-field-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    line-height: 1.4;
}


/* ================================================================
   INFO SECTION (Support Scope / Security / Availability)
   ================================================================ */
.cx-info-section {
    background: var(--bg-black);
}

.cx-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.cx-info-card {
    background: rgba(10,12,26,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.3s ease;
}
.cx-info-card:hover { border-color: rgba(255,255,255,0.1); }

.cx-info-card--security { border-color: rgba(25,226,146,0.08); }
.cx-info-card--security:hover { border-color: rgba(25,226,146,0.18); }

.cx-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cx-info-icon--blue  { background: rgba(43,176,255,0.07); border: 1px solid rgba(43,176,255,0.14); color: rgba(43,176,255,0.8); }
.cx-info-icon--green { background: rgba(25,226,146,0.07); border: 1px solid rgba(25,226,146,0.14); color: #19E292; }

.cx-info-card h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

/* Scope list */
.cx-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cx-scope-list li {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.cx-scope-list li::before {
    content: '–';
    color: rgba(43,176,255,0.4);
    flex-shrink: 0;
}

/* Security */
.cx-security-intro {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.cx-security-intro strong { color: rgba(255,255,255,0.72); }

.cx-security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}
.cx-security-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.48);
}
.cx-security-list li svg { color: rgba(255,80,80,0.6); flex-shrink: 0; }

.cx-security-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    color: rgba(25,226,146,0.55);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(25,226,146,0.08);
}

/* Availability */
.cx-avail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
}
.cx-avail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    gap: 1rem;
}
.cx-avail-divider { height: 1px; background: rgba(255,255,255,0.05); }

.cx-avail-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.cx-avail-channel svg { opacity: 0.5; }

.cx-avail-time {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: right;
}
.cx-avail-time--fast { color: rgba(25,226,146,0.65); }

.cx-avail-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.22);
    font-style: italic;
}


/* ================================================================
   FAQ
   ================================================================ */
.cx-faq-section {
    position: relative;
    overflow: hidden;
}
.cx-faq-bg { position: absolute; inset: 0; z-index: 1; }
.cx-faq-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.cx-faq-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,7,11,0.93);
    z-index: 2;
}

.cx-faq-section .cx-section-header {
    text-align: center;
}

.cx-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.cx-faq-item {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s ease;
}
.cx-faq-item:last-child { border-bottom: none; }
.cx-faq-item:hover { background: rgba(255,255,255,0.02); }

.cx-faq-q {
    font-size: 0.94rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.cx-faq-q::before {
    content: 'Q';
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(43,176,255,0.45);
    background: rgba(43,176,255,0.06);
    border: 1px solid rgba(43,176,255,0.12);
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    flex-shrink: 0;
}

.cx-faq-a {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.68;
    padding-left: 1.85rem;
}


/* ================================================================
   FINAL CTA
   ================================================================ */
.cx-final-section {
    background: var(--bg-black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cx-final-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 580px;
    margin: 0 auto;
}

.cx-final-sub {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    font-weight: 300;
}

.cx-final-actions {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .cx-methods-grid     { grid-template-columns: 1fr 1fr; }
    .cx-info-grid        { grid-template-columns: 1fr 1fr; }
    .cx-company-layout   { grid-template-columns: 1fr; gap: 3rem; }
    .cx-company-row--2   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cx-section          { padding: 4.5rem 0; }
    .cx-methods-grid     { grid-template-columns: 1fr; }
    .cx-info-grid        { grid-template-columns: 1fr; }
    .cx-company-row--2   { grid-template-columns: 1fr; gap: 1.25rem; }
    .cx-hero-content     { max-width: 100%; }
    .hide-mobile         { display: none; }
}

@media (max-width: 480px) {
    .cx-hero-actions   { flex-direction: column; width: 100%; }
    .cx-btn-primary,
    .cx-btn-outline    { width: 100%; justify-content: center; }
    .cx-final-actions  { flex-direction: column; width: 100%; }
}
