/* ==========================================
   Re.Review LP - Neon Dark Theme
   ========================================== */

/* CSS Variables */
:root {
    /* Neon Colors */
    --neon-yellow: #FFE500;
    --neon-orange: #FF9500;
    --neon-gradient: linear-gradient(135deg, #FFE500 0%, #FF9500 100%);
    --neon-glow: 0 0 20px rgba(255, 229, 0, 0.5), 0 0 40px rgba(255, 149, 0, 0.3);

    /* Dark Theme */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-surface: #1e1e1e;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Borders */
    --border-color: #2a2a2a;
    --border-highlight: #3a3a3a;

    /* Fonts */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-display: 'Orbitron', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 200px;
    height: auto;
    cursor: pointer;
}

.loading-logo:hover {
    animation: shake 0.5s ease-in-out;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-top: 24px;
    overflow: hidden;
}

.loading-bar-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE500 0%, #FF9500 100%);
    border-radius: 2px;
    animation: loadingProgress 1.2s ease-in-out infinite;
    transform-origin: left;
}

@keyframes loadingProgress {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-gradient {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-only {
    display: none;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--neon-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 229, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-yellow);
    color: var(--neon-yellow);
}

.btn-outline:hover {
    background: var(--neon-yellow);
    color: #000;
}

.btn-line {
    background: #06C755;
    color: #fff;
}

.btn-line:hover {
    background: #05b04c;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--neon-gradient);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(255, 229, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 229, 0, 0.6), 0 0 30px rgba(255, 149, 0, 0.4);
}

.btn-nav:hover::before {
    left: 100%;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 10px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-dot {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.1s ease;
}

.logo:hover .logo-img,
.footer-logo:hover .logo-img {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2px, -1px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-1px, 2px); }
    40% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, 1px); }
    60% { transform: translate(1px, -2px); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(2px, 1px); }
    90% { transform: translate(-2px, -2px); }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list a:not(.btn-nav) {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header.scrolled .nav-list a:not(.btn-nav) {
    text-shadow: none;
}

.nav-list a:not(.btn-nav):hover {
    color: var(--neon-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast), box-shadow 0.3s ease;
}

.header.scrolled .hamburger span {
    box-shadow: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 229, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 229, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.neon-line {
    position: absolute;
    background: var(--neon-gradient);
    opacity: 0.6;
    filter: blur(2px);
}

.neon-line-1 {
    width: 300px;
    height: 2px;
    top: 30%;
    left: -50px;
    transform: rotate(-15deg);
    animation: neonPulse 3s ease-in-out infinite;
}

.neon-line-2 {
    width: 200px;
    height: 2px;
    top: 60%;
    right: -30px;
    transform: rotate(25deg);
    animation: neonPulse 3s ease-in-out infinite 1s;
}

.neon-line-3 {
    width: 150px;
    height: 2px;
    bottom: 20%;
    left: 20%;
    transform: rotate(-5deg);
    animation: neonPulse 3s ease-in-out infinite 2s;
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 0;
    overflow: hidden;
}

.hero-logo img {
    width: 80%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 1;
}

.hero-text-bottom {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.hero-text-bottom .hero-description {
    color: #333;
    margin-bottom: 0;
}

.hero-cta-bottom {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--neon-yellow);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid var(--neon-yellow);
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    display: inline;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.hero-title-accent::after {
    content: '"評価"';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-title-sub {
    display: inline;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 2;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-yellow), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   Section Common
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--neon-yellow);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ==========================================
   Service Section
   ========================================== */
.service {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.service-content {
    display: grid;
    gap: 60px;
}

.service-main {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.service-lead {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-radius: 16px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--neon-yellow);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   Plans Section
   ========================================== */
.plans {
    padding: var(--section-padding) 0;
    background: var(--bg-surface);
}

/* Spot Plan */
.plan-spot {
    margin-bottom: 48px;
}

.plan-spot-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.plan-spot-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--neon-gradient);
    color: #000;
    border-radius: 4px;
}

.plan-spot-title {
    font-size: 24px;
    font-weight: 700;
}

.plan-spot-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-spot-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.plan-spot-price .price-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-spot-price .price-unit {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-spot-price .price-unit small {
    font-size: 14px;
}

/* Monthly Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
}

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

.plan-popular {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 229, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--neon-gradient);
    color: #000;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
}

.plan-header {
    padding: 40px 32px 32px;
    border-bottom: 1px solid var(--border-color);
}

.plan-header .plan-badge {
    margin-bottom: 16px;
}

.plan-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-yen {
    font-size: 20px;
    color: var(--text-secondary);
}

.plan-price .price-value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .price-unit {
    font-size: 16px;
    color: var(--text-secondary);
}

.plan-body {
    padding: 32px;
}

.plan-features {
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--neon-yellow);
}

.plan-features span {
    font-size: 15px;
    color: var(--text-secondary);
}

.plan-features strong {
    color: var(--text-primary);
}

.plan-total {
    background: linear-gradient(135deg, rgba(255, 229, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.total-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.total-value {
    font-size: 24px;
    font-weight: 900;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-cost {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.cost-label {
    font-size: 14px;
    color: var(--text-muted);
}

.cost-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-orange);
}

.plan-footer {
    padding: 0 32px 32px;
}

/* Options */
.options {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.options-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.options-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--neon-yellow);
}

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

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 24px;
}

.option-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-gradient);
    color: #000;
    font-size: 24px;
    font-weight: 900;
    border-radius: 12px;
    flex-shrink: 0;
}

.option-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-price {
    font-size: 14px;
    color: var(--text-secondary);
}

.option-price strong {
    font-size: 20px;
    color: var(--neon-yellow);
}

.option-note-small {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.options-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 229, 0, 0.05);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.options-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--neon-yellow);
    margin-top: 2px;
}

/* ==========================================
   Compare Section
   ========================================== */
.compare {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.compare-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}

.compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background: var(--bg-card);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.compare-table th:first-child {
    border-radius: 12px 0 0 0;
}

.compare-table th:last-child {
    border-radius: 0 12px 0 0;
}

.compare-highlight {
    background: linear-gradient(180deg, rgba(255, 229, 0, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%) !important;
    border-left: 2px solid var(--neon-yellow);
    border-right: 2px solid var(--neon-yellow);
}

.compare-table thead .compare-highlight {
    border-top: 2px solid var(--neon-yellow);
    border-radius: 12px 12px 0 0 !important;
}

.compare-table tbody tr:last-child .compare-highlight {
    border-bottom: 2px solid var(--neon-yellow);
}

.compare-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 229, 0, 0.5);
}

.compare-label {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
}

.compare-value {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.compare-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--neon-gradient);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.compare-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.compare-negative {
    color: #ff6b6b;
}

.compare-table td small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.compare-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--neon-yellow);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 229, 0, 0.1);
}

.summary-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-gradient);
    border-radius: 50%;
}

.summary-icon svg {
    width: 32px;
    height: 32px;
    stroke: #000;
}

.summary-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.summary-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

.neon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 229, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 2;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 40px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

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

.footer-logo .logo-text {
    font-size: 20px;
}

.footer-logo .logo-img {
    height: 32px;
    width: auto;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--neon-yellow);
}

/* ==========================================
   Mobile Navigation
   ========================================== */
.nav.active .nav-list {
    display: flex;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .sp-only {
        display: inline;
    }

    /* Header */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list li:last-child {
        border-bottom: none;
        padding-top: 16px;
    }

    .nav-list a {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero */
    .hero {
        min-height: 45vh;
        padding: 60px 0 30px;
        flex-direction: column;
    }

    .hero-bg {
        position: relative;
    }

    .hero-logo {
        position: relative;
        width: 100%;
        height: auto;
        padding: 10px 20px;
    }

    .hero-logo img {
        width: 80%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .hero-text-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 90%;
        padding: 0 16px;
        margin: -20px auto 0;
    }

    .hero-text-bottom .hero-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-cta-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        width: 90%;
        padding: 0 16px 20px;
        margin: 0 auto;
    }

    .hero-scroll {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 10px 0;
    }

    .hero-cta-bottom .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    /* Service */
    .service-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 32px 24px;
    }

    /* Plans */
    .plan-spot-inner {
        flex-direction: column;
        text-align: center;
    }

    .plan-spot-content {
        flex-direction: column;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .option-card {
        padding: 20px;
    }

    /* Compare */
    .compare-table {
        min-width: 600px;
    }

    .compare-table th,
    .compare-table td {
        padding: 16px 12px;
        font-size: 13px;
    }

    .compare-value {
        font-size: 15px;
    }

    .summary-card {
        padding: 32px 24px;
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .plan-header {
        padding: 32px 24px 24px;
    }

    .plan-body {
        padding: 24px;
    }

    .plan-footer {
        padding: 0 24px 24px;
    }

    .plan-price .price-value {
        font-size: 42px;
    }

    .options {
        padding: 24px;
    }
}
