@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark-obsidian: #07080a;
    --bg-dark-card: #0f1115;
    --bg-dark-hover: #15181e;
    
    /* Brand Colors - Racing Dashboard Theme */
    --color-orange-race: #ff5e00;
    --color-amber-energy: #ffa600;
    --color-cyan-glow: #00f0ff;
    
    /* Text Colors */
    --color-text-white: #ffffff;
    --color-text-light: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;
    
    /* Gradients */
    --grad-race-orange: linear-gradient(135deg, var(--color-orange-race) 0%, var(--color-amber-energy) 100%);
    --grad-cyan-glow: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
    --grad-dark-card: linear-gradient(135deg, rgba(15, 17, 21, 0.9) 0%, rgba(20, 24, 30, 0.95) 100%);
    
    /* Transition speed */
    --transition-speed: 0.4s;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark-obsidian);
    color: var(--color-text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.font-display {
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-obsidian);
}
::-webkit-scrollbar-thumb {
    background: #191c24;
    border-radius: 5px;
    border: 2px solid var(--bg-dark-obsidian);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange-race);
}

/* Helper Utilities */
.hidden {
    display: none !important;
}

/* Background Grids & Blobs */
.bg-grid-pattern {
    background-size: 60px 60px;
    background-image: 
        linear-gradient(to right, rgba(255, 94, 0, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 94, 0, 0.015) 1px, transparent 1px);
    position: relative;
    min-height: 100vh;
}

.bg-grid-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 25%, transparent 10%, var(--bg-dark-obsidian) 75%);
    pointer-events: none;
    z-index: 1;
}

.cyber-blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cyber-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.08) 0%, rgba(255, 166, 0, 0.02) 60%, transparent 80%);
    top: -100px;
    left: -150px;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, rgba(0, 114, 255, 0.01) 60%, transparent 80%);
    bottom: 10%;
    right: -200px;
}

/* Layout Elements */
.nav-header {
    border-b: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 94, 0, 0.08);
}

.max-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--grad-race-orange);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.logo-icon i {
    color: var(--color-text-white);
    font-size: 1.25rem;
}

.logo-text-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #ffffff 30%, var(--color-amber-energy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text-subtitle {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: -0.1rem;
}

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

/* Language Button switcher */
.lang-switcher {
    display: flex;
    background: rgba(20, 24, 33, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 0.2rem;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
}

.lang-btn.active {
    background: #1f2530;
    color: var(--color-text-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-btn.inactive {
    color: var(--color-text-dim);
}

.lang-btn.inactive:hover {
    color: var(--color-text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) var(--ease-premium);
}

.btn-primary {
    background: var(--grad-race-orange);
    color: var(--color-text-white);
    padding: 0.75rem 1.75rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.2);
}

.btn-primary:hover {
    opacity: 0.95;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--color-text-light);
    padding: 0.75rem 1.75rem;
}

.btn-secondary:hover {
    background: rgba(255, 94, 0, 0.06);
    border-color: rgba(255, 94, 0, 0.4);
    color: var(--color-text-white);
}

.btn-hero-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    border-radius: 3rem;
}

/* Sections & Main Grid */
main {
    position: relative;
    z-index: 10;
    padding-top: 3.5rem;
    padding-bottom: 6rem;
}

section {
    margin-bottom: 7rem;
}

/* Hero elements */
.hero-text-center {
    text-align: center;
    margin-bottom: 4rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 94, 0, 0.06);
    border: 1px solid rgba(255, 94, 0, 0.15);
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-orange-race);
    position: relative;
}

.badge-dot-ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-orange-race);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-amber-energy);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero-domain-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-domain-title {
        font-size: 6.5rem;
    }
}

.hero-domain-tld {
    background: var(--grad-race-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-light);
    max-width: 48rem;
    margin: 0 auto 1rem auto;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 2rem;
    }
}

.hero-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Glass Panels */
.glass-panel {
    background: var(--grad-dark-card);
    border: 1px solid rgba(255, 94, 0, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.glass-panel-glow {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 94, 0, 0.03);
}

/* Section Titles */
.section-title-area {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-orange-race);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

/* Comparison and Fit Cards Grid */
.cards-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.concept-card {
    background: rgba(15, 17, 21, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21rem;
    transition: all 0.4s var(--ease-premium);
}

.concept-card-top i {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.concept-card:hover {
    transform: translateY(-6px);
    background-color: var(--bg-dark-hover);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: 0 12px 30px rgba(255, 94, 0, 0.05);
}

.concept-card.cyan-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.05);
}

.card-icon-wrapper {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-orange {
    background: rgba(255, 94, 0, 0.08);
    border: 1px solid rgba(255, 94, 0, 0.2);
    color: var(--color-orange-race);
}

.icon-cyan {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--color-cyan-glow);
}

.concept-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 0.75rem;
}

.concept-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.card-tag {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.tag-orange {
    color: rgba(255, 94, 0, 0.6);
}

.tag-cyan {
    color: rgba(0, 240, 255, 0.6);
}

/* Metric / Stat Cards */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

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

.metric-card {
    background: rgba(15, 17, 21, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all 0.3s var(--ease-premium);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 94, 0, 0.25);
    background: rgba(15, 17, 21, 0.5);
}

.metric-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-white);
    margin-bottom: 0.25rem;
    background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.metric-desc {
    font-size: 0.75rem;
    color: var(--color-orange-race);
    font-weight: 500;
}

/* Comparator Section Table layout */
.compare-container {
    background: rgba(15, 17, 21, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.compare-grid-header {
    font-weight: 700;
    color: var(--color-text-white);
    border-bottom: 1px solid rgba(255, 94, 0, 0.15);
    padding-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-label {
    color: var(--color-text-light);
    font-weight: 600;
}

.compare-cell-target {
    color: var(--color-amber-energy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compare-cell-other {
    color: var(--color-text-muted);
}

/* Brand Match Calculator Widget */
.calc-widget {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

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

.calc-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.business-tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(7, 8, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-premium);
    color: var(--color-text-muted);
}

.business-tab-btn:hover {
    border-color: rgba(255, 94, 0, 0.2);
    background: rgba(15, 17, 21, 0.6);
    color: var(--color-text-light);
}

.business-tab-btn i {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.business-tab-btn div {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.tab-subtitle {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.1rem;
}

.calc-results-panel {
    background: rgba(7, 8, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.results-meter-box {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meter-score-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-white);
    margin-top: 0.25rem;
}

.results-details {
    width: 100%;
}

.results-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 5rem;
}

.results-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.meta-box {
    text-align: left;
}

.meta-box-label {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-box-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-orange-race);
    margin-top: 0.1rem;
}

/* Secure Purchase Section */
.inquiry-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.inquiry-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-white);
}

.inquiry-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.domain-preset-card {
    background: rgba(7, 8, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.preset-title {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.preset-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-white);
    margin-top: 0.2rem;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.preset-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-cyan-glow);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
}

/* Form Styles */
.inquiry-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.form-input {
    background: rgba(7, 8, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: var(--color-text-light);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-premium);
}

.form-input::placeholder {
    color: #3b4252;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-orange-race);
    background: rgba(15, 17, 21, 0.95);
}

.form-buttons-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.btn-form-submit {
    height: 3.5rem;
    border-radius: 1.25rem;
    border: none;
    font-size: 0.9rem;
}

.btn-form-wechat {
    height: 3.5rem;
    border-radius: 1.25rem;
    background: rgba(15, 17, 21, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--color-text-light);
    text-transform: none;
}

.btn-form-wechat:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--color-text-white);
}

.btn-form-wechat i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Contact Channels grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.channel-link {
    background: rgba(7, 8, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 1.25rem;
    padding: 1rem 0.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s var(--ease-premium);
}

.channel-link:hover {
    background: rgba(15, 17, 21, 0.8);
    border-color: rgba(0, 240, 255, 0.25);
    transform: translateY(-2px);
}

.channel-link i {
    font-size: 1.2rem;
    color: var(--color-cyan-glow);
    margin-bottom: 0.25rem;
}

.channel-label {
    font-size: 0.6rem;
    color: var(--color-text-dim);
    font-weight: 700;
    text-transform: uppercase;
}

.channel-value {
    font-size: 0.7rem;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.trust-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-badge i {
    font-size: 0.8rem;
}

.trust-badge.sec i { color: var(--color-cyan-glow); }
.trust-badge.dan i { color: #818cf8; }
.trust-badge.reg i { color: var(--color-orange-race); }

/* FAQ Section */
.faq-box {
    max-width: 760px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(15, 17, 21, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s var(--ease-premium);
}

.faq-item:hover {
    border-color: rgba(255, 94, 0, 0.15);
    background: rgba(15, 17, 21, 0.6);
}

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.faq-btn i {
    color: var(--color-text-dim);
    transition: transform 0.3s var(--ease-premium);
}

.faq-answer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 0.75rem;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 4rem 0;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    border-top: 1px solid rgba(255, 94, 0, 0.05);
    position: relative;
    z-index: 10;
    background: rgba(7, 8, 10, 0.3);
}

/* Toasts alerts */
.toast-alert {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    transform: translateY(150px);
    opacity: 0;
    z-index: 100;
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-alert i {
    font-size: 1.1rem;
    color: #10b981;
}

.toast-inquiry {
    border-color: rgba(255, 94, 0, 0.3);
}

/* Rotating icon animation */
.rotate-180 {
    transform: rotate(180deg);
}

/* Base flex/grid elements */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast alert animations */
.show-toast {
    transform: translateY(0) !important;
    opacity: 1 !important;
}
