/* Mission Critical Leasing - Main Stylesheet */

/* ========================================
   CSS RESET & ROOT VARIABLES
   ======================================== */

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

:root {
    --slate-950: #0a0f1a;
    --slate-900: #111827;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --purple-900: #3b1557;
    --purple-800: #4c1d6e;
    --purple-700: #5b2178;
    --purple-600: #6b2d8a;
    --purple-500: #7c3aad;
    --purple-400: #9f7aea;
    --purple-300: #b794f4;
    --white: #ffffff;
    --red-500: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--slate-950);
    color: var(--slate-200);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.font-serif {
    font-family: 'Instrument Serif', Georgia, serif;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--purple-700);
    color: var(--white);
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   BACKGROUNDS
   ======================================== */

.bg-slate-900 {
    background-color: var(--slate-900);
}

.bg-slate-950 {
    background-color: var(--slate-950);
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
}

.card-highlight {
    background: linear-gradient(135deg, var(--slate-900) 0%, rgba(92, 33, 120, 0.08) 100%);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-800);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--slate-200);
}

.nav-logo-inline {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.nav-logo-stacked {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-logo-horizontal {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    color: var(--slate-400);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--slate-200);
}

.nav-links a.active {
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--slate-300);
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-800);
    padding: 24px;
    z-index: 40;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--slate-300);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid var(--slate-800);
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--white);
}

.mobile-menu .btn {
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.btn-primary {
    color: var(--white);
    background: var(--purple-700);
}

.btn-primary:hover {
    background: var(--purple-600);
}

.btn-secondary {
    color: var(--slate-300);
    background: transparent;
    border: 1px solid var(--slate-700);
}

.btn-secondary:hover {
    border-color: var(--slate-600);
    color: var(--white);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

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

.hero {
    padding-top: 72px;
    background-color: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.hero-bg-cube {
    position: absolute;
    right: -80px;
    bottom: -40px;
    width: 480px;
    height: 480px;
    background-image: url('/images/MCLCube.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-bg-cube {
        width: 560px;
        height: 560px;
        right: -60px;
        bottom: -60px;
        opacity: 0.07;
    }
}

@media (min-width: 1024px) {
    .hero-bg-cube {
        width: 640px;
        height: 640px;
        right: -40px;
        bottom: -80px;
        opacity: 0.08;
    }
}

.hero-inner {
    padding: 80px 0 100px;
    max-width: 800px;
}

@media (min-width: 768px) {
    .hero-inner {
        padding: 120px 0 140px;
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(124, 58, 173, 0.15);
    color: var(--purple-400);
    border: 1px solid rgba(124, 58, 173, 0.25);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    section {
        padding: 120px 0;
    }
}

.section-label {
    color: var(--purple-400);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 400;
}

.section-intro {
    font-size: 17px;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 640px;
}

.section-header {
    margin-bottom: 60px;
}

/* ========================================
   CLARITY GRID (What We Are / Are Not)
   ======================================== */

.clarity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .clarity-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.clarity-card {
    padding: 32px;
}

.clarity-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.clarity-card ul {
    list-style: none;
}

.clarity-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-800);
    color: var(--slate-300);
    font-size: 15px;
}

.clarity-card li:last-child {
    border-bottom: none;
}

.check {
    color: var(--purple-400);
    margin-right: 8px;
}

.cross {
    color: var(--slate-500);
    margin-right: 8px;
}

/* ========================================
   EMPHASIS BOX
   ======================================== */

.emphasis-box {
    padding: 32px;
    margin-top: 48px;
    border-left: 3px solid var(--purple-700);
}

.emphasis-box p {
    font-size: 17px;
    color: var(--slate-300);
    line-height: 1.7;
}

.emphasis-box strong {
    color: var(--white);
}

/* ========================================
   WHY NOW SECTION
   ======================================== */

.why-now-content {
    max-width: 720px;
}

.why-now-content p {
    font-size: 17px;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 24px;
}

.why-now-content p:last-child {
    margin-bottom: 0;
}

/* Lead Time Comparison Chart */
.lead-time-chart {
    margin-top: 48px;
    padding: 32px;
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    max-width: 720px;
}

.chart-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 640px) {
    .chart-row {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.chart-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-300);
    min-width: 160px;
    flex-shrink: 0;
}

.chart-bar-container {
    flex: 1;
    height: 40px;
    background: var(--slate-800);
    border-radius: 6px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 16px;
    border-radius: 6px;
    transition: width 0.8s ease-out;
}

.chart-bar-standard {
    background: linear-gradient(90deg, var(--slate-700) 0%, var(--slate-600) 100%);
}

.chart-bar-mcl {
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--purple-500) 100%);
}

.chart-bar-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.chart-caption {
    margin-top: 20px;
    font-size: 13px;
    color: var(--slate-500);
    text-align: center;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--purple-400);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--slate-400);
    line-height: 1.6;
}

/* ========================================
   DIAGRAM
   ======================================== */

.diagram-box {
    padding: 24px;
}

@media (max-width: 639px) {
    .diagram-box {
        overflow: hidden;
    }
}

@media (min-width: 640px) {
    .diagram-box {
        padding: 32px;
    }
}

.diagram-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    text-align: center;
}

/* Diagram Scale Wrapper - scales grid to fit mobile */
.diagram-scale-wrapper {
    width: 100%;
}

@media (max-width: 639px) {
    .diagram-scale-wrapper {
        overflow: hidden;
        max-width: 100%;
    }

    .diagram-grid {
        --scale: 0.42;
        transform: scale(var(--scale));
        transform-origin: top left;
        width: 700px; /* Fixed width to capture full diagram */
        margin-left: calc((100% - (700px * var(--scale))) / 2); /* Center it */
        margin-bottom: -70px; /* Compensate for scaled whitespace */
    }
}

/* Desktop/Tablet Grid Layout */
.diagram-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: start;
}

.diagram-entity {
    text-align: center;
}

.diagram-entity-mcl {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.diagram-entity-mcl .diagram-node-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.diagram-entity-mcl .diagram-node-label {
    padding-top: 8px;
}

.diagram-node-box {
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .diagram-node-box {
        padding: 16px 28px;
    }
}

.diagram-node-box.oem {
    background: var(--slate-800);
    color: var(--slate-300);
    border-radius: 8px 8px 8px 24px;
}

.diagram-node-box.mcl {
    background: var(--purple-700);
    color: var(--white);
}

.diagram-node-box.dev {
    background: var(--slate-800);
    color: var(--slate-300);
    border-radius: 8px 8px 24px 8px;
}

.diagram-node-label {
    font-size: 11px;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diagram-arrow-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
}

/* Explicit positioning for payment flow arrows in row 2 */
.diagram-grid > .diagram-arrow-cell:nth-child(7) {
    grid-column: 2;
    grid-row: 2;
}

.diagram-grid > .diagram-arrow-cell:nth-child(9) {
    grid-column: 4;
    grid-row: 2;
}

.diagram-spacer {
    /* Empty cell for grid alignment */
}

/* Arrow styles */
.arrow-right,
.arrow-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.arrow-right::before,
.arrow-left::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--slate-600);
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .arrow-right::before,
    .arrow-left::before {
        width: 70px;
    }
}

.arrow-right::after {
    content: '';
    position: absolute;
    top: -4px;
    right: calc(50% - 25px); /* Align with centered 50px line */
    width: 0;
    height: 0;
    border-left: 8px solid var(--slate-600);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.arrow-left::after {
    content: '';
    position: absolute;
    top: -4px;
    left: calc(50% - 25px); /* Align with centered 50px line */
    width: 0;
    height: 0;
    border-right: 8px solid var(--slate-600);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

@media (min-width: 768px) {
    .arrow-right::after {
        right: calc(50% - 35px); /* Align with centered 70px line */
    }

    .arrow-left::after {
        left: calc(50% - 35px); /* Align with centered 70px line */
    }
}

.arrow-label {
    font-size: 11px;
    color: var(--purple-400);
    font-weight: 500;
    white-space: nowrap;
}

.arrow-sublabel {
    font-size: 10px;
    color: var(--slate-500);
    margin-top: 2px;
    white-space: nowrap;
}

/* Mobile Vertical Layout (hidden - using scaled grid instead) */
.diagram-mobile {
    display: none;
}

.diagram-mobile-step {
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.diagram-mobile-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
}

.arrow-down {
    width: 2px;
    height: 24px;
    background: var(--slate-600);
    position: relative;
}

.arrow-down::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 8px solid var(--slate-600);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.diagram-mobile-arrow .arrow-label {
    margin-top: 8px;
}

.diagram-mobile-payment {
    margin-top: 8px;
    padding: 8px 12px;
    background: var(--slate-800);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.diagram-mobile-payment .arrow-label {
    font-size: 12px;
}

.diagram-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-800);
    font-size: 13px;
    color: var(--slate-400);
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   BENEFITS
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    padding: 28px;
}

.benefit-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-stat {
    font-size: 28px;
    font-weight: 600;
    color: var(--purple-400);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.6;
}

/* ========================================
   PRODUCTS
   ======================================== */

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-card {
    padding: 32px;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.product-list {
    list-style: none;
}

.product-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-800);
    color: var(--slate-300);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--purple-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
}

.cta-section p {
    font-size: 17px;
    color: var(--slate-400);
    margin-bottom: 32px;
}

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

.contact-section {
    padding: 60px 0 80px;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 80px 0 100px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 64px;
        align-items: start;
    }
}

.contact-intro h1 {
    font-size: clamp(36px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.1;
}

.contact-intro p {
    font-size: 17px;
    color: var(--slate-400);
    line-height: 1.7;
}

/* Contact Form Box */
.contact-box {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    padding: 32px;
}

@media (min-width: 768px) {
    .contact-box {
        padding: 40px;
    }
}

.required-note {
    font-size: 13px;
    color: var(--slate-500);
    text-align: right;
    margin-bottom: 24px;
}

.required-note span {
    color: var(--red-500);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-300);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--red-500);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--white);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(124, 58, 173, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--slate-500);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--slate-800);
    color: var(--white);
}

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

/* Submit Button */
.form-submit {
    margin-top: 28px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--purple-700);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--purple-600);
}

/* Direct Contact Info */
.direct-contact {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--slate-800);
}

.direct-contact-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.direct-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.direct-contact-item:last-child {
    margin-bottom: 0;
}

.direct-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--slate-500);
    flex-shrink: 0;
}

.direct-contact-item a {
    font-size: 15px;
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.2s;
}

.direct-contact-item a:hover {
    color: var(--purple-400);
}

.direct-contact-item span {
    font-size: 15px;
    color: var(--slate-300);
}

/* Quote Section */
.quote-section {
    border-top: 1px solid var(--slate-800);
    padding: 60px 0;
}

.quote-content {
    max-width: 720px;
}

.quote-content blockquote {
    font-size: 20px;
    color: var(--slate-300);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 24px;
    font-family: 'Instrument Serif', Georgia, serif;
}

.quote-attribution {
    font-size: 15px;
    color: var(--slate-500);
}

.quote-attribution strong {
    color: var(--slate-300);
    font-weight: 500;
}

/* Success message styling */
.success-message {
    background: rgba(124, 58, 173, 0.15);
    border: 1px solid var(--purple-700);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    color: var(--purple-300);
    text-align: center;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you-page main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 560px;
}

.check-icon {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 173, 0.15);
    border: 2px solid var(--purple-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.check-icon svg {
    width: 40px;
    height: 40px;
    color: var(--purple-400);
}

.thank-you-content h1 {
    font-size: clamp(32px, 5vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
}

.thank-you-content p {
    font-size: 17px;
    color: var(--slate-400);
    margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 40px 0;
    border-top: 1px solid var(--slate-800);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 14px;
    color: var(--slate-400);
}

.footer-logo-inline {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-logo-stacked {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-horizontal {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-address {
    font-size: 13px;
    font-style: normal;
    color: var(--slate-400);
    line-height: 1.5;
}

.footer-copy {
    font-size: 13px;
    color: var(--slate-500);
}

/* ========================================
   UTILITIES
   ======================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
