/* ========================================
   Re:Threw - Modern LP Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary: #EC4899;
    --accent: #06B6D4;
    --dark: #0F0F1A;
    --dark-light: #1A1A2E;
    --dark-lighter: #252542;
    --text: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --gradient-1: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #06B6D4 100%);
    --gradient-2: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    --gradient-3: linear-gradient(180deg, rgba(139, 92, 246, 0.2) 0%, transparent 100%);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Noto Sans JP', 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.sp-only {
    display: none;
}

/* ========================================
   Loader
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    margin-bottom: 30px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo-img {
    width: 250px;
    height: auto;
    max-width: 80%;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    animation: loaderProgress 1.5s ease forwards;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes loaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition);
}

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

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-list a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    position: relative;
}

.nav-list a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition-fast);
}

.nav-list a:not(.nav-cta):hover {
    color: var(--text);
}

.nav-list a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-2);
    border-radius: 50px;
    color: var(--text) !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.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);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active .mobile-nav-list li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-list a {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.mobile-nav-list a:hover {
    color: var(--primary);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 800px;
    width: 80%;
    height: auto;
    animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 26, 0.3) 0%,
        rgba(15, 15, 26, 0.1) 50%,
        rgba(15, 15, 26, 0.5) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(139, 92, 246, 0.2); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    animation: titleReveal 1s ease forwards;
    opacity: 0;
    transform: translateY(100%);
}

.hero-title-line:nth-child(1) .hero-title-word { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) .hero-title-word { animation-delay: 0.5s; }
.hero-title-line:nth-child(3) .hero-title-word { animation-delay: 0.7s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1.3s forwards;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Hero Float Elements */
.hero-float-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    animation: float 6s ease-in-out infinite;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.float-card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.float-card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.float-card-2 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.float-card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* ========================================
   Section Styles
   ======================================== */
.section-divider {
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

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

.section-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
}

/* ========================================
   Service Section
   ======================================== */
.service {
    padding: 60px 0;
    position: relative;
    background: var(--dark-light);
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-visual {
    position: relative;
}

.service-phone {
    position: relative;
    width: 280px;
    height: 580px;
    margin: 0 auto;
    background: var(--dark-lighter);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 32px;
    overflow: hidden;
}

.phone-ui {
    padding: 20px 15px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.phone-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 50%;
}

.phone-name {
    font-size: 0.875rem;
    color: var(--text);
}

.phone-post {
    background: var(--dark-light);
    border-radius: 16px;
    overflow: hidden;
}

.phone-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    animation: imageShimmer 3s ease-in-out infinite;
}

@keyframes imageShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.phone-actions {
    display: flex;
    gap: 15px;
    padding: 15px;
}

.phone-action-icon {
    width: 24px;
    height: 24px;
    background: var(--text-dim);
    border-radius: 4px;
    opacity: 0.5;
}

.phone-likes {
    padding: 0 15px;
    font-size: 0.875rem;
    color: var(--text);
}

.phone-caption {
    padding: 10px 15px 15px;
    height: 40px;
    background: linear-gradient(90deg, var(--dark-lighter) 0%, transparent 100%);
    border-radius: 4px;
    margin: 10px 15px 15px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.service-stats {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 20px 25px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 1rem;
    color: var(--text-muted);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-left: 10px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(10px);
}

.service-item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 16px;
}

.service-item-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-item-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-item-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    z-index: 1;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.features-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
}

.features .container {
    position: relative;
    z-index: 1;
}

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

.feature-card {
    position: relative;
    padding: 50px 40px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(139, 92, 246, 0.1);
    line-height: 1;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(139, 92, 246, 0.25);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.feature-title {
    position: relative;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-desc {
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.feature-card:hover .feature-line {
    width: 100%;
}

/* ========================================
   Price Section
   ======================================== */
.price {
    padding: 60px 0;
    position: relative;
    background: var(--dark-light);
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.price-card {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 40px;
    text-align: center;
    overflow: hidden;
}

.price-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: priceGlow 5s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.price-header {
    position: relative;
    margin-bottom: 40px;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.price-tax {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.price-divider {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-divider::before,
.price-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.price-divider span {
    padding: 0 20px;
    font-size: 0.875rem;
    color: var(--text-dim);
}

.price-features {
    position: relative;
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.price-features svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.price-features span {
    font-size: 1rem;
    color: var(--text);
}

.price-note {
    position: relative;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    z-index: 1;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.cta-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.cta-buttons .btn svg {
    width: 20px;
    height: 20px;
}

/* LINE Contact */
.cta-main-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.line-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.line-contact-left {
    display: flex;
    justify-content: center;
}

.line-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 50px;
    border: 2px solid #06C755;
    border-radius: 20px;
    background: rgba(6, 199, 85, 0.05);
}

.line-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.line-icon-text {
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
}

.line-contact-right {
    display: flex;
    flex-direction: column;
}

.line-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    counter-reset: step-counter;
}

.line-steps li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text);
    counter-increment: step-counter;
}

.line-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #06C755;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-privacy {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.line-privacy a {
    color: var(--primary-light);
    text-decoration: underline;
}

.line-privacy a:hover {
    color: var(--primary);
}

.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #06C755;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background: #05b34d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.4);
}

.line-btn-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

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

.footer-desc {
    font-size: 0.875rem;
    color: var(--text-dim);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ========================================
   Animations (AOS-like)
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-visual {
        order: 2;
    }

    .service-list {
        order: 1;
    }

    .service-stats {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .float-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .sp-only {
        display: inline;
    }

    .hero {
        padding: 60px 20px;
        min-height: 45vh;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        width: 80%;
        max-width: 400px;
        height: auto;
        animation: none;
        display: block;
    }

    .hero-bg.sp-override {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

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

    .service,
    .features,
    .price,
    .cta {
        padding: 40px 0;
    }

    .service-phone {
        width: 240px;
        height: 500px;
    }

    .service-stats {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item-icon {
        margin: 0 auto;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .price-card {
        padding: 40px 30px;
    }

    .price-number {
        font-size: 3.5rem;
    }

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

    /* LINE Contact Mobile */
    .cta-main-title {
        margin-bottom: 30px;
    }

    .line-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .line-contact-right {
        align-items: center;
        text-align: center;
    }

    .line-steps {
        display: inline-block;
        text-align: left;
    }

    .line-icon-box {
        padding: 30px 40px;
    }

    .line-logo {
        width: 60px;
        height: 60px;
    }

    .btn-line {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-card {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
