/* ========== VARIABLES ========== */
:root {
    --primary: #00E5FF;
    --secondary: #FF007F;
    --bg-dark: #000000;
    --bg-surface: #0D0D0D;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.45);
    --border: rgba(255, 255, 255, 0.07);
    --accent-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --space-1: 4px;  --space-2: 8px;  --space-3: 16px; --space-4: 24px;
    --space-5: 32px; --space-6: 48px; --space-7: 64px; --space-8: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-dark); }
body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'SF Pro JP', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; }

/* ========== LAYOUT ========== */
.wrapper { max-width: 1100px; margin: 0 auto; padding: var(--space-8) var(--space-4); }
@media (max-width: 768px) { .wrapper { padding: var(--space-6) var(--space-4); } }
@media (max-width: 480px) { .wrapper { padding: var(--space-6) var(--space-3); } }
.text-center { text-align: center; }

/* ========== TYPOGRAPHY ========== */
h1 { font-size: 64px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 48px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }
@media (max-width: 768px) { h1 { font-size: 40px; } h2 { font-size: 32px; } h3 { font-size: 20px; } }
@media (max-width: 480px) { h1 { font-size: 30px; } h2 { font-size: 26px; } h3 { font-size: 18px; } }

.section-header { margin-bottom: var(--space-7); }
.section-title { margin-bottom: var(--space-3); }
.section-desc { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }
@media (max-width: 768px) { .section-desc { font-size: 15px; } }

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: var(--accent-gradient);
    color: #000;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary:hover { transform: scale(1.02); filter: brightness(1.1); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary.glow-effect { box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    white-space: nowrap;
}
/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Custom Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: rgba(255,255,255,0.55);
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.lang-btn:hover { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.85); }
.lang-btn svg { flex-shrink: 0; }
.lang-chevron { transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 6px;
    min-width: 170px;
    z-index: 2000;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.lang-menu.open { display: flex; }
.lang-option {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
    width: 100%;
}
.lang-option:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-option.active { color: var(--primary); font-weight: 700; }

.btn-nav {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-nav:hover { background: rgba(255,255,255,0.05); }
@media (max-width: 1000px) { .nav-links { display: none; } }
@media (max-width: 768px) {
    .btn-nav { padding: 10px 14px; font-size: 12px; }
    .logo { font-size: 1rem; }
    .lang-btn { padding: 6px 8px; font-size: 11px; }
}
@media (max-width: 480px) {
    .nav-container { padding: 0 14px; }
    .nav-right { gap: 8px; }
    .navbar { padding: 10px 0; }
}

/* RTL */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .hero-content,
[dir="rtl"] .section-header,
[dir="rtl"] .cta-intro,
[dir="rtl"] .footer { text-align: right; }
[dir="rtl"] .benefit-timeline li { padding-left: 0; }
[dir="rtl"] .solution-item { direction: rtl; }

/* ========== SIDE NAV (Floating icons) ========== */
.side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.side-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.side-nav-icon:hover {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.side-nav-icon.discord {
    background: rgba(88, 101, 242, 0.12);
    border-color: rgba(88, 101, 242, 0.25);
    color: #7289da;
}
.side-nav-icon.discord:hover { background: rgba(88, 101, 242, 0.22); }
@media (max-width: 1100px) { .side-nav { display: none; } }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-image: url('assets/hero-bg.png');
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.25) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,1) 100%);
}
.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
    margin-left: calc((100vw - 1100px) / 2);
}
@media (max-width: 1148px) { .hero-content { margin-left: 24px; } }
@media (max-width: 768px) { .hero-content { margin-left: 0; max-width: 100%; } }

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.08;
}
.hero-catch {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.hero-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.9;
}
.hero-actions { margin-bottom: 48px; }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 5px;
    letter-spacing: 0.5px;
}
@media (max-width: 480px) {
    .hero { padding: 110px 20px 56px; }
    .hero-title { font-size: 2.4rem; }
    .hero-catch { font-size: 1rem; }
    .hero-stats { gap: 16px 0; }
    .stat-item { padding-right: 20px; margin-right: 20px; }
    .stat-number { font-size: 20px; }
}

/* ========== PROBLEM ========== */
.problem-list {
    border-top: 1px solid var(--border);
    margin-top: 0;
}
.problem-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.problem-row:hover { background: rgba(255,255,255,0.01); }
.problem-num {
    font-size: 34px;
    font-weight: 900;
    color: #00E5FF;
    text-shadow: 0 0 18px rgba(0,229,255,0.55), 0 0 36px rgba(0,229,255,0.25);
    -webkit-text-stroke: 0;
    line-height: 1;
    padding-top: 2px;
}
.problem-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.45;
}
.problem-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}
@media (max-width: 600px) {
    .problem-row { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
    .problem-num { font-size: 22px; }
}

/* ========== SOLUTION ========== */
.solution { position: relative; }
.solution-list {
    border-top: 1px solid var(--border);
    margin-top: 0;
}
.solution-item {
    display: grid;
    grid-template-columns: 60px 220px 1fr;
    gap: 0 36px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.solution-item:hover { background: rgba(255,255,255,0.01); }
.solution-number {
    font-size: 38px;
    font-weight: 900;
    color: #00E5FF;
    text-shadow: 0 0 18px rgba(0,229,255,0.55), 0 0 36px rgba(0,229,255,0.25);
    -webkit-text-stroke: 0;
    line-height: 1;
    padding-top: 4px;
}
.solution-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
}
.solution-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}
@media (max-width: 900px) {
    .solution-item { grid-template-columns: 50px 1fr; }
    .solution-item p { grid-column: 2; margin-top: 10px; }
}
@media (max-width: 600px) {
    .solution-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
    .solution-number { font-size: 26px; }
    .solution-item p { grid-column: 1; }
}

/* ========== PROCESS ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: var(--space-6);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.process-step {
    padding: 28px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.process-step::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.process-step:hover { background: rgba(0,229,255,0.03); }
.process-step:hover::after { opacity: 1; }
.step-num {
    font-size: 28px;
    font-weight: 900;
    color: #00E5FF;
    text-shadow: 0 0 16px rgba(0,229,255,0.6), 0 0 32px rgba(0,229,255,0.3);
    -webkit-text-stroke: 0;
    margin-bottom: var(--space-3);
    line-height: 1;
}
.process-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.process-step p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.65;
}
@media (max-width: 900px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { padding: 20px 16px; }
}
@media (max-width: 400px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* ========== WHY US ========== */
.why-us {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-list {
    border-top: 1px solid var(--border);
    margin-top: var(--space-6);
}
.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.why-row:hover { background: rgba(255,255,255,0.01); }
.why-row h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.45;
}
.why-row p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .why-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
}

/* ========== SOCIAL PROOF ========== */
.social-proof { padding: 16px 0 40px; overflow: hidden; }
.social-proof-title {
    color: rgba(255,255,255,0.25);
    font-size: 11px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}
.logo-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 12%;
    height: 100%;
    z-index: 2;
}
.logo-marquee::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(to left, #000, transparent); }
.marquee-content {
    display: flex;
    gap: 2.5rem;
    padding: 0 1.5rem;
    animation: marquee-scroll 22s linear infinite;
    align-items: center;
}
.proof-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.4rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: rgba(255,255,255,0.25);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

/* ========== CATEGORIES ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.category-card {
    padding: 40px 32px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
}
.category-card:last-child { border-right: none; }
.category-card:hover { background: rgba(255,255,255,0.02); }
.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.cat-num {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #00B4D8, #FF007F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.cat-icon {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.category-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.category-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
@media (max-width: 768px) {
    .category-grid { grid-template-columns: 1fr; }
    .category-card { border-right: none; border-bottom: 1px solid var(--border); }
    .category-card:last-child { border-bottom: none; }
}

/* ========== STRATEGY ========== */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: var(--space-6);
}
.strategy-card {
    padding: var(--space-6);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    transition: var(--transition);
}
.strategy-card:hover {
    border-color: rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
}
.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-5);
}
.strategy-tag {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
}
.strategy-num {
    font-size: 44px;
    font-weight: 900;
    color: #00E5FF;
    text-shadow: 0 0 18px rgba(0,229,255,0.5), 0 0 36px rgba(0,229,255,0.2);
    -webkit-text-stroke: 0;
    line-height: 1;
}
.strategy-card h3 { font-size: 20px; margin-bottom: var(--space-3); line-height: 1.4; }
.strategy-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
@media (max-width: 768px) { .strategy-grid { grid-template-columns: 1fr; } }

/* ========== BENEFIT / SIMULATION ========== */
.benefit-header { margin-bottom: var(--space-7); }
.benefit-main {
    font-size: 2.4rem;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.2;
}
.benefit-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.75;
}
.benefit-timeline {
    list-style: none;
    border-top: 1px solid var(--border);
}
.benefit-timeline li {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}
.benefit-row-num {
    font-size: 48px;
    font-weight: 900;
    color: #00E5FF;
    text-shadow: 0 0 20px rgba(0,229,255,0.55), 0 0 40px rgba(0,229,255,0.25);
    -webkit-text-stroke: 0;
    line-height: 1;
    flex-shrink: 0;
}
.benefit-phase-content { flex: 1; }
.benefit-phase-num {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.benefit-timeline strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
}
.benefit-timeline p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.benefit-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 20px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    flex-shrink: 0;
}
.metric-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -1px;
}
.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 5px;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .benefit-timeline li { grid-template-columns: 48px 1fr auto; gap: 16px; }
    .benefit-row-num { font-size: 32px; }
    .benefit-main { font-size: 2rem; }
    .benefit-metric { min-width: 80px; padding: 14px 12px; }
    .metric-value { font-size: 28px; }
}
@media (max-width: 500px) {
    .benefit-timeline li { grid-template-columns: 1fr auto; gap: 16px; }
    .benefit-row-num { display: none; }
}

/* ========== FAQ ========== */
.faq-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}
.faq-intro .section-title { margin-top: var(--space-3); }
.faq-container {
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
}
.faq-question {
    padding: 22px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.01); }
.faq-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 24px;
}
.faq-question h4 {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
}
.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: auto;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p {
    padding: 0 0 22px 38px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}
@media (max-width: 900px) {
    .faq-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

/* ========== CTA ========== */
.cta { padding: 100px 24px; }
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-top: 0;
    padding-bottom: 0;
}
.cta-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}
.cta-intro > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 36px;
}
.cta-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}
.cta-checklist li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 50%;
    font-size: 12px;
    color: var(--primary);
    flex-shrink: 0;
    font-weight: 700;
}
.cta-form-wrap {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 500px) {
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-field-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}
.req-badge { color: #FF007F; font-size: 11px; margin-left: 2px; }
.opt-badge { color: rgba(255,255,255,0.2); font-size: 11px; }
.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.07);
}
.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.cta-form select option { background: #111; color: white; }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form .file-input {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-style: dashed;
    cursor: pointer;
}
.cta-form button {
    margin-top: 8px;
    width: 100%;
    font-size: 16px;
    padding: 16px;
}
.cta-form small {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,0.2);
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-intro h2 { font-size: 1.9rem; }
    .cta-form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) { .cta { padding: 60px 16px; } }

/* ========== FOOTER ========== */
footer { border-top: 1px solid var(--border); }
.footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}
.footer-logo {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: -0.3px;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.footer-right a { color: inherit; text-decoration: underline; }
.footer-right a:hover { color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
    .footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 20px; }
    .footer-right { align-items: center; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Glass (kept for compatibility, now more subtle) */
.glass {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
}
