/* ========================================
   MOBILE-FIRST DESIGN
   スマホ特化版
======================================== */

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

:root {
    /* Colors */
    --primary-color: #d4af37;
    --secondary-color: #1a1a2e;
    --accent-color: #0f3460;
    --dark-bg: #0a0a0f;
    --light-text: #ffffff;
    --gray-text: #a0a0a0;
    --line-green: #06C755;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    --gradient-line: linear-gradient(135deg, #06C755 0%, #00B900 100%);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Oswald', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--light-text);
    background: var(--dark-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   PROGRESS BAR
======================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.2s ease;
}

/* ========================================
   LINE TOP BANNER - MOBILE OPTIMIZED (FOOTER COMPACT)
======================================== */
.line-top-banner {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 450px;
    background: var(--line-green);
    z-index: 1002;
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.5);
}

.line-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.line-banner-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.line-banner-left i {
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.line-banner-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: white;
    font-size: 10px;
    line-height: 1.2;
}

.line-banner-text strong {
    font-size: 11px;
    font-weight: 700;
}

.line-banner-subtext {
    font-size: 8px;
    opacity: 0.95;
}

.line-banner-btn {
    background: white;
    color: var(--line-green);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.line-banner-btn:active {
    transform: scale(0.95);
}

.line-banner-btn i {
    font-size: 14px;
}

/* ========================================
   HEADER - MOBILE OPTIMIZED
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url('../header-banner.jpg') center/cover no-repeat;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 3px solid var(--primary-color);
    padding: 10px 0;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.7) 0%, rgba(15, 52, 96, 0.6) 100%);
    z-index: -1;
}

.nav {
    position: relative;
    z-index: 2;
}

/* ========================================
   HEADER BANNER - NEW
======================================== */
.header-banner {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: visible;
    margin-top: 140px;
    padding-top: 20px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.3) 0%, rgba(15, 52, 96, 0.2) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px 20px 20px;
}

.banner-title {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 16px;
    color: var(--light-text);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    line-height: 1.6;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-coach-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

.banner-coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.badge-text {
    white-space: nowrap;
}

/* ========================================
   HEADER - MOBILE OPTIMIZED (CONTINUED)
======================================== */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gray-text);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: left 0.3s ease;
    padding: 40px 0 80px 0;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

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

.cta-button {
    background: var(--gradient-line);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION - FULL IMAGE MOBILE
======================================== */
.hero {
    min-height: calc(100vh - 60px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../training-camp.jpg') center/cover no-repeat fixed;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(15, 52, 96, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    max-width: 100%;
}

.hero-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-top: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(212, 175, 55, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
    opacity: 1;
    visibility: visible;
}

.stat-item {
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 1px 8px rgba(212, 175, 55, 0.6);
    display: block;
    visibility: visible;
    opacity: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    display: block;
    visibility: visible;
    opacity: 1;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

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

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
}

/* ========================================
   BUTTONS - MOBILE OPTIMIZED
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:active {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-line {
    background: var(--gradient-line);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

/* ========================================
   SECTION COMMON - MOBILE
======================================== */
section {
    padding: 60px 0;
}

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

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ========================================
   TARGET SECTION - PYRAMID MOBILE
======================================== */
.target-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.target-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: url('../tactical-training.jpg') center/cover no-repeat;
    opacity: 0.45;
    z-index: 0;
    filter: blur(0px);
}

.league-pyramid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.league-level {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition-smooth);
    cursor: pointer;
    width: 100%;
}

.league-level:active {
    transform: scale(0.98);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.level-icon {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.level-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

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

.level-details p {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 6px;
}

.target-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    border-radius: 10px;
    margin: 20px 15px 0;
    position: relative;
    z-index: 1;
}

.target-note i {
    color: var(--primary-color);
    font-size: 24px;
}

.target-note p {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
    text-align: center;
    font-weight: 700;
    line-height: 1.7;
}

/* ========================================
   SKILLS SECTION - CARD GRID MOBILE
======================================== */
.skills-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 500px;
    background: url('../hero-player.jpg') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
    filter: blur(0px);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.skill-card {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.skill-card:active {
    transform: scale(0.98);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.skill-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.skill-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: auto;
}

.skill-list {
    list-style: none;
    text-align: left;
}

.skill-list li {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.skill-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   PRIVACY SECTION - MOBILE
======================================== */
.privacy-section {
    background: var(--gradient-dark);
    position: relative;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.privacy-card {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.privacy-card:active {
    transform: scale(0.98);
    border-color: var(--primary-color);
}

.privacy-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.privacy-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 12px;
}

.privacy-description {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION - MOBILE WITH IMAGE
======================================== */
.about-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

/* ========================================
   IMAGE SHOWCASE SECTION - NEW
======================================== */
.image-showcase-section {
    background: var(--gradient-dark);
    padding: 60px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.showcase-item:active {
    transform: scale(0.98);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);
    color: var(--light-text);
}

.showcase-caption h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.showcase-caption p {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
}

.showcase-item.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.showcase-item.featured img {
    height: 400px;
}

.showcase-item.featured .showcase-caption {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.9) 100%);
}

.showcase-item.featured .showcase-caption h3 {
    color: var(--dark-bg);
    font-size: 24px;
}

.showcase-item.featured .showcase-caption p {
    color: var(--dark-bg);
    font-weight: 600;
}

/* ========================================
   ABOUT SECTION - MOBILE WITH IMAGE (CONTINUED)
======================================== */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
}

.about-image {
    position: relative;
    width: 100%;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.badge-number {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
}

.badge-text {
    font-size: 11px;
    font-weight: 600;
}

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

.about-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-description {
    margin-bottom: 25px;
}

.about-description p {
    margin-bottom: 15px;
    line-height: 1.9;
    color: var(--gray-text);
    font-size: 14px;
}

.about-credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 14px;
}

.credential-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* ========================================
   PROGRAMS - MOBILE CARDS
======================================== */
.programs-section {
    background: var(--gradient-dark);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.program-card {
    background: rgba(26, 26, 46, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.program-card:active {
    transform: scale(0.98);
    border-color: var(--primary-color);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.program-icon {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--light-text);
}

.program-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.program-features {
    list-style: none;
    margin-bottom: 20px;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--gray-text);
}

.program-features i {
    color: var(--primary-color);
    margin-top: 3px;
}

.program-note {
    font-size: 12px;
    color: var(--gray-text);
    text-align: center;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ========================================
   PRICING - MOBILE TABLE
======================================== */
.pricing-section {
    background: var(--dark-bg);
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 30px;
    padding: 0 15px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
}

.pricing-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: 700;
    color: var(--light-text);
    border-bottom: 2px solid var(--primary-color);
    background: var(--accent-color);
    font-size: 12px;
}

.pricing-table td {
    padding: 15px 10px;
    color: var(--gray-text);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.price-highlight {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    font-size: 13px;
}

.note-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ========================================
   TESTIMONIALS - MOBILE
======================================== */
.testimonials-section {
    background: var(--gradient-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    transition: var(--transition-smooth);
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-name {
    font-weight: 700;
    color: var(--light-text);
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--gray-text);
}

/* ========================================
   FAQ - MOBILE
======================================== */
.faq-section {
    background: var(--dark-bg);
}

.faq-list {
    padding: 0 15px;
}

.faq-item {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 15px;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 15px 18px;
}

.faq-answer p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 13px;
}

/* ========================================
   CONTACT - MOBILE OPTIMIZED WITH LINE
======================================== */
.contact-section {
    background: var(--gradient-dark);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    text-align: center;
}

.info-item:first-child {
    border-color: var(--line-green);
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.1) 0%, rgba(0, 185, 0, 0.05) 100%);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    font-size: 26px;
}

.info-item:first-child .info-icon {
    background: var(--gradient-line);
    color: var(--light-text);
}

.info-text {
    width: 100%;
}

.info-text h3 {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 8px;
    word-break: break-all;
}

.info-value a {
    color: var(--line-green);
    text-decoration: none;
}

.info-note {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-form {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-text);
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 15px;
}

.form-note i {
    color: var(--primary-color);
}

/* ========================================
   FOOTER - MOBILE
======================================== */
.footer {
    background: var(--secondary-color);
    padding: 40px 0 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
}

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

.footer-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.footer-description {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-smooth);
    font-size: 20px;
}

.social-links a:active {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(0.95);
}

.footer-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 13px;
}

.footer-links a:active {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--gray-text);
    font-size: 13px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--gray-text);
    font-size: 12px;
    text-align: center;
    padding: 20px 15px 0;
}

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

.footer-bottom-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 12px;
}

.footer-bottom-links a:active {
    color: var(--primary-color);
}

/* ========================================
   BACK TO TOP - MOBILE
======================================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* ========================================
   ANIMATIONS
======================================== */
.fade-in {
    animation: fadeIn 0.8s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   TABLET & DESKTOP (OPTIONAL)
======================================== */
@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        flex-direction: row;
    }
}