/* ==========================================================================
   HONNE.IN — ROYAL BLACK & WHITE THEME DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-dark: #08080a;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(15, 15, 18, 0.7);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 255, 255, 0.3);
    
    --text-main: #f4f4f7;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --accent-white: #ffffff;
    --accent-silver: #e5e7eb;
    --accent-glow: rgba(255, 255, 255, 0.4);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body.royal-black-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* Ambient Glow Effects */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
}

.glow-2 {
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, #d1d5db 0%, transparent 70%);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    color: var(--accent-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.highlight-text {
    color: var(--accent-white);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.highlight-white {
    color: #ffffff;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* Header */
.royal-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.dot-in {
    color: #a1a1aa;
}

.brand-tag {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.nav-status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    color: var(--accent-silver);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
}

.status-dot.pulsing {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 4px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-white);
    transition: var(--transition-fast);
}

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

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

/* Royal Buttons */
.btn-royal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary-royal {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-royal:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.35);
}

.btn-secondary-royal {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-secondary-royal:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-glow);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Mobile Drawer */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0d0d11;
    border-left: 1px solid var(--border-light);
    z-index: 2000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.drawer-link {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.drawer-link:hover {
    color: #ffffff;
}

.drawer-btn {
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    padding: 160px 24px 100px 24px;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.royal-badge-wrapper {
    margin-bottom: 24px;
}

.royal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glow);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--accent-silver);
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.domain-prefix {
    color: #ffffff;
}

.domain-tld {
    color: #888890;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 48px;
}

.spec-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.spec-pill:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.spec-pill i {
    font-size: 1.2rem;
    color: var(--accent-silver);
    margin-bottom: 4px;
}

.spec-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.trust-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--text-dim);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Valuation Bar Section */
.valuation-bar-section {
    padding: 40px 24px;
}

.valuation-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    backdrop-filter: blur(12px);
}

.valuation-left {
    max-width: 500px;
}

.badge-mini {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.valuation-left h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.valuation-left p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.valuation-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.val-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.val-unit {
    font-size: 1.5rem;
    color: var(--accent-silver);
}

.val-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.val-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* Value Proposition Grid */
.value-section {
    padding: 100px 24px;
}

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

.section-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.royal-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.royal-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.royal-glass-card:hover {
    border-color: var(--border-glow);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.royal-glass-card:hover::before {
    opacity: 1;
}

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-footer-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--accent-silver);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Use Cases Tabs */
.use-cases-section {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.use-case-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.uc-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.uc-tab:hover, .uc-tab.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.uc-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.uc-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.uc-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.uc-details h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.uc-details p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.uc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uc-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.uc-list i {
    color: #ffffff;
}

.uc-mockup-card {
    background: #0d0d12;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mockup-header {
    background: #14141c;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-url {
    margin-left: 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 48px 36px;
    text-align: center;
}

.mockup-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mockup-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.mockup-btn {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #ffffff;
}

/* Metrics Breakdown Section */
.metrics-section {
    padding: 100px 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.metric-info {
    flex-grow: 1;
}

.metric-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.score-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 6px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
}

.metric-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Process Section */
.process-section {
    padding: 100px 24px;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition-fast);
}

.step-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

/* Acquisition Form Section */
.offer-section {
    padding: 100px 24px;
}

.offer-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 48px;
    position: relative;
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.royal-seal {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px auto;
}

.royal-seal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.offer-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.offer-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.royal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-silver);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.slider-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.offer-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-silver);
}

.offer-input-container input {
    padding-left: 38px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    width: 100%;
}

.quick-offer-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.quick-amt-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    padding: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quick-amt-btn:hover, .quick-amt-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    font-weight: 700;
}

.privacy-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 12px;
}

/* Success Modal Overlay */
.form-success-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 10, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 32px;
    animation: fadeIn 0.3s ease;
}

.form-success-overlay.active {
    display: flex;
}

.success-card {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.success-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.success-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 28px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-silver);
    text-align: left;
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 24px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-glow);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.royal-footer {
    background: #050507;
    border-top: 1px solid var(--border-light);
    padding: 80px 24px 32px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 380px;
}

.footer-nav h4, .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    bottom: 40px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.8rem; }
    .value-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .hero-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-only, .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-title { font-size: 2.8rem; }
    .value-cards-grid { grid-template-columns: 1fr; }
    .uc-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .valuation-card { flex-direction: column; text-align: center; }
    .valuation-right { flex-wrap: wrap; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; }
    .offer-wrapper { padding: 32px 20px; }
}
