/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #F5C518;      /* Premium Gold/Yellow */
    --color-primary-hover: #DDB00E;
    --color-primary-light: rgba(245, 197, 24, 0.1);
    --color-accent: #FF4757;       /* Vibrant Red for CTA */
    --color-accent-hover: #E84118;
    
    --color-bg-dark: #0A0A0B;      /* Rich Deep Dark */
    --color-bg-dark-card: #141416; /* Card Dark Background */
    --color-bg-light: #F4F4F7;     /* Light Gray Section */
    --color-white: #FFFFFF;
    
    --color-text-light: #F4F4F5;
    --color-text-dark: #1E293B;
    --color-text-muted-light: #A1A1AA;
    --color-text-muted-dark: #64748B;
    
    --border-color-dark: rgba(255, 255, 255, 0.08);
    --border-color-light: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-sans: 'Noto Sans JP', 'Inter', sans-serif;
    --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Shadow & Blur */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

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

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

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

input, button, select, textarea {
    font-family: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

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

.section-padding {
    padding: 100px 0;
}

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

.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-header {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-header:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(245, 197, 24, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-xl {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: var(--color-white);
    padding: 20px 48px;
    font-size: 1.25rem;
    box-shadow: 0 6px 24px rgba(255, 71, 87, 0.35);
}

.btn-xl:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
}

/* Pulse Animation */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-header:not(.text-center) .section-title::after {
    left: 0;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color-dark);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 11, 0.95);
    border-bottom-color: rgba(245, 197, 24, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-org {
    font-size: 0.6875rem;
    color: var(--color-text-muted-light);
    letter-spacing: 0.05em;
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 0.95rem;
    }
    .header-cta {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 140px;
    background-color: var(--color-bg-dark);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 71, 87, 0.05) 0%, transparent 40%);
    text-align: center;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0) 60%, var(--color-bg-dark) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
}

.title-sub {
    font-size: 2rem;
    color: var(--color-white);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.title-main {
    font-size: 4rem;
    background: linear-gradient(to right, var(--color-white) 40%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: 0.02em;
}

.hero-lead {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 48px;
    font-weight: 500;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color-dark);
    padding: 12px 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-normal);
}

.hero-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 197, 24, 0.3);
}

.hero-badge.highlight-badge {
    background: rgba(245, 197, 24, 0.08);
    border-color: rgba(245, 197, 24, 0.25);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--color-text-muted-light);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.badge-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.badge-value .highlight {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 0 2px;
    font-family: var(--font-heading);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-action-note {
    font-size: 0.875rem;
    color: var(--color-text-muted-light);
}

/* Hero Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave .shape-fill {
    fill: #0F0F10; /* Color matching problem section bg */
}

@media (max-width: 992px) {
    .title-main {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .title-sub {
        font-size: 1.5rem;
    }
    .title-main {
        font-size: 2.5rem;
    }
    .hero-lead {
        font-size: 1.15rem;
        margin-bottom: 36px;
    }
    .hero-badges {
        gap: 12px;
    }
    .hero-badge {
        min-width: 140px;
        padding: 8px 16px;
    }
    .badge-value {
        font-size: 0.95rem;
    }
    .badge-value .highlight {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem {
    background-color: #0F0F10;
}

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

.problem-card {
    background: var(--color-bg-dark-card);
    border: 1px solid var(--border-color-dark);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 71, 87, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.problem-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    background: rgba(255, 71, 87, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.6;
}

.problem-cta-msg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-radius: 50px;
    padding: 18px 32px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 700;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .problem-card {
        padding: 24px;
        gap: 16px;
    }
    .problem-text {
        font-size: 0.95rem;
    }
    .problem-cta-msg {
        border-radius: 16px;
        padding: 14px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
    }
    .problem-cta-msg svg {
        transform: rotate(90deg);
    }
}

/* ==========================================================================
   Intro Description Block
   ========================================================================== */
.intro-desc {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.05) 0%, rgba(10, 10, 11, 0) 100%);
    border-top: 1px solid var(--border-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
    padding: 60px 0;
}

.intro-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

/* ==========================================================================
   Topics Section
   ========================================================================== */
.topics {
    background-color: var(--color-bg-dark);
}

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

.topic-card {
    background: var(--color-bg-dark-card);
    border: 1px solid var(--border-color-dark);
    border-radius: 20px;
    position: relative;
    transition: var(--transition-normal);
    height: 100%;
}

.topic-card-inner {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.topic-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(245, 197, 24, 0.06);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--transition-normal);
}

.topic-card:hover .topic-icon-wrap {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.topic-svg {
    width: 32px;
    height: 32px;
}

.topic-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
}

.topic-card:hover .topic-number {
    color: rgba(245, 197, 24, 0.1);
}

.topic-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.topic-card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .topics-grid {
        grid-template-columns: 1fr;
    }
    .topic-card-inner {
        padding: 30px 24px;
    }
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    background-color: #0F0F10;
}

.features-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    background: var(--color-bg-dark-card);
    border: 1px solid var(--border-color-dark);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-item:hover {
    border-color: rgba(245, 197, 24, 0.2);
    transform: translateX(5px);
}

.feature-number-bg {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(245, 197, 24, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.feature-item:hover .feature-number-bg {
    color: rgba(245, 197, 24, 0.65);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}

.feature-item-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 2px;
}

.feature-item-text {
    font-size: 1rem;
    color: var(--color-text-muted-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }
    .feature-number-bg {
        font-size: 4rem;
        justify-content: flex-start;
    }
    .feature-item-title {
        font-size: 1.3rem;
    }
    .feature-item-text {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Lecturer Section
   ========================================================================== */
.lecturer {
    background-color: var(--color-bg-dark);
}

.lecturer-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-bg-dark-card) 0%, rgba(20, 20, 22, 0.5) 100%);
    border: 1px solid var(--border-color-dark);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.lecturer-image-wrap {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(245, 197, 24, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.lecturer-inner:hover .lecturer-image-wrap {
    border-color: var(--color-primary);
    transform: scale(1.03);
}

.lecturer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.lecturer-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.lecturer-name {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.lecturer-name .job-title {
    font-size: 1.125rem;
    color: var(--color-text-muted-light);
    font-weight: 500;
}

.lecturer-name .name-en {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted-light);
    font-weight: 400;
}

.lecturer-profile {
    font-size: 1.05rem;
    color: var(--color-text-muted-light);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .lecturer-inner {
        padding: 40px;
        gap: 40px;
    }
    .lecturer-image-wrap {
        width: 160px;
        height: 160px;
    }
    .lecturer-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .lecturer-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    .lecturer-image-wrap {
        width: 150px;
        height: 150px;
    }
    .lecturer-name {
        justify-content: center;
        gap: 8px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .lecturer-name .job-title {
        width: 100%;
        margin-bottom: -4px;
    }
    .lecturer-name .name-en {
        width: 100%;
    }
    .lecturer-profile {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Outline & Map Section
   ========================================================================== */
.outline {
    background-color: #0F0F10;
}

.outline-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.outline-table-wrap {
    background: var(--color-bg-dark-card);
    border: 1px solid var(--border-color-dark);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.outline-table {
    width: 100%;
    border-collapse: collapse;
}

.outline-table tr {
    border-bottom: 1px solid var(--border-color-dark);
}

.outline-table tr:last-child {
    border-bottom: none;
}

.outline-table th {
    width: 140px;
    padding: 24px 16px 24px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: top;
}

.outline-table td {
    padding: 24px 0;
    font-size: 1.05rem;
    color: var(--color-text-light);
    vertical-align: top;
}

.outline-table td strong {
    color: var(--color-white);
}

.outline-table td .sub-text {
    font-size: 0.875rem;
    color: var(--color-text-muted-light);
    display: inline-block;
    margin-top: 4px;
}

.free-badge {
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.2);
}

.outline-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    height: 100%;
    min-height: 350px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.map-iframe-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 992px) {
    .outline-grid {
        grid-template-columns: 1fr;
    }
    .outline-map-wrap {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .outline-table-wrap {
        padding: 24px;
    }
    .outline-table th {
        width: auto;
        display: block;
        padding: 16px 0 4px 0;
    }
    .outline-table td {
        display: block;
        padding: 0 0 16px 0;
        font-size: 0.95rem;
    }
}

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

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

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

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition-fast);
    position: relative;
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-q-icon, .faq-a-icon {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-q-icon {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.faq-a-icon {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.faq-question {
    flex-grow: 1;
    line-height: 1.5;
}

.faq-arrow {
    color: var(--color-text-muted-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Accordion open state classes */
.faq-item.active {
    border-color: rgba(245, 197, 24, 0.2);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-panel-inner {
    padding: 0 30px 24px 82px; /* aligns text with the question */
    display: flex;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
}

.faq-answer {
    font-size: 1rem;
    color: var(--color-text-muted-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-trigger {
        padding: 20px;
        font-size: 0.95rem;
        gap: 12px;
    }
    .faq-panel-inner {
        padding: 20px;
        gap: 12px;
        border-top: none;
    }
    .faq-q-icon, .faq-a-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   CTA Block Section
   ========================================================================== */
.cta-block {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-dark);
    text-align: center;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card {
    background: linear-gradient(135deg, var(--color-bg-dark-card) 0%, rgba(10, 10, 11, 0.8) 100%);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-radius: 32px;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.cta-card-tag {
    background: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid rgba(245, 197, 24, 0.2);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 28px;
}

.cta-card-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.cta-card-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted-light);
    margin-bottom: 48px;
}

.cta-btn-wrap {
    margin-bottom: 40px;
}

.privacy-note {
    max-width: 600px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color-dark);
    padding-top: 32px;
    font-size: 0.8rem;
    color: var(--color-text-muted-light);
    line-height: 1.6;
}

.privacy-note p {
    margin-bottom: 8px;
}

.privacy-note p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-block {
        padding: 60px 0 100px 0;
    }
    .cta-card {
        padding: 48px 20px;
        border-radius: 24px;
    }
    .cta-card-title {
        font-size: 1.85rem;
    }
    .cta-card-lead {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }
    .cta-btn-wrap .btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
    background: #050506;
    border-top: 1px solid var(--border-color-dark);
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    line-height: 1.3;
}

.footer-logo .logo-org {
    color: var(--color-primary);
}

.footer-logo .logo-name {
    font-size: 1.35rem;
    color: var(--color-white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: var(--color-text-light);
}

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

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

.copyright {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact {
        align-items: center;
    }
}

/* ==========================================================================
   Scroll Animations & Reveal
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Initial Animate-fade-in on Hero */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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