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

:root {
    /* Colors */
    --primary-navy: #1a2742;
    --secondary-gold: #d4af37;
    --accent-cyan: #00d4ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a2742 0%, #2d4263 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 39, 66, 0.95) 0%, rgba(0, 212, 255, 0.1) 100%);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

.highlight-gold {
    color: var(--secondary-gold);
    font-weight: 700;
}

.highlight-cyan {
    color: var(--accent-cyan);
    font-weight: 700;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 39, 66, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 39, 66, 0.98);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-gold);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--white);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(30px);
    }
    50% {
        transform: translateY(-100px) translateX(-30px);
    }
    75% {
        transform: translateY(-50px) translateX(30px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

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

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--secondary-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        height: 50px;
        opacity: 0;
    }
}

/* Hero Illustration */
.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: floatIcon 6s infinite ease-in-out;
}

.floating-icon i {
    font-size: 2rem;
    color: var(--secondary-gold);
    opacity: 0.8;
}

/* Icon Positions */
.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    top: 50%;
    left: 8%;
    animation-delay: 2s;
}

.icon-4 {
    top: 60%;
    right: 12%;
    animation-delay: 3s;
}

.icon-5 {
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.icon-6 {
    bottom: 30%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 800px;
    opacity: 0.5;
}

.connect-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 4s ease-in-out infinite;
}

.line-1 {
    animation-delay: 0s;
}

.line-2 {
    animation-delay: 1.5s;
}

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

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

/* ========================================
   Section Base Styles
======================================== */
.section {
    padding: var(--section-padding) 0;
}

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

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 39, 66, 0.1);
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

.bg-light {
    background: var(--light-gray);
}

.bg-gradient {
    background: var(--gradient-primary);
}

/* ========================================
   Problem Section
======================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(26, 39, 66, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--primary-navy);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   Solution Section
======================================== */
.comparison-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.comparison-card {
    flex: 1;
    max-width: 450px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-card.after {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary-gold);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.comparison-header i {
    font-size: 2rem;
}

.comparison-card.before .comparison-header i {
    color: var(--danger);
}

.comparison-card.after .comparison-header i {
    color: var(--secondary-gold);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--white);
}

.comparison-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.comparison-card.before .comparison-item i {
    color: var(--danger);
}

.comparison-card.after .comparison-item i {
    color: var(--secondary-gold);
}

.comparison-item span {
    flex: 1;
    line-height: 1.6;
}

.comparison-item strong {
    display: block;
    margin-top: 5px;
}

.comparison-item .red {
    color: #ff6b6b;
}

.comparison-item .gold {
    color: var(--secondary-gold);
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--secondary-gold);
}

/* ========================================
   Subsidy Section
======================================== */
.subsidy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.subsidy-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-base);
}

.subsidy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.subsidy-card.featured {
    border: 3px solid var(--secondary-gold);
    transform: scale(1.05);
}

.subsidy-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--accent-cyan);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 5px 0 0 5px;
    box-shadow: var(--shadow-sm);
}

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

.subsidy-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
}

.subsidy-badge.recommended {
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary-gold);
}

.subsidy-badge.best {
    background: var(--gradient-gold);
    color: var(--primary-navy);
}

.subsidy-badge.conditional {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning);
}

.subsidy-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.4;
    margin: 0;
}

.subsidy-amount {
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 39, 66, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.subsidy-card.featured .subsidy-amount {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
}

.amount-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.amount-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.amount-value.gold {
    color: var(--secondary-gold);
}

.amount-value span {
    font-size: 1.5rem;
}

.amount-rate {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 10px;
}

.subsidy-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 1rem;
    color: var(--success);
    margin-top: 3px;
}

.feature-item.warning i {
    color: var(--warning);
}

.feature-item span {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.subsidy-note {
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--warning);
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.subsidy-note.success {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--secondary-gold);
}

.subsidy-note.warning {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: var(--danger);
}

.subsidy-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

/* ========================================
   Simulation Section
======================================== */
.simulation-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.simulation-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.simulation-header {
    padding: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.simulation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.simulation-body {
    padding: 40px;
}

.simulation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.simulation-row:last-child {
    border-bottom: none;
}

.simulation-row.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed var(--secondary-gold);
}

.simulation-row.total {
    padding-top: 30px;
    border-top: 3px solid var(--primary-navy);
}

.simulation-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary-navy);
}

.simulation-label i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.simulation-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.simulation-value.gold {
    color: var(--secondary-gold);
}

.simulation-value.large {
    font-size: 2.5rem;
}

.simulation-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-gold) 50%, transparent 100%);
    margin: 20px 0;
}

.simulation-footer {
    padding: 30px;
    background: var(--gradient-gold);
    text-align: center;
}

.simulation-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.simulation-badge i {
    font-size: 2rem;
}

.simulation-notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.note-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 3px;
}

.note-item p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Reasons Section
======================================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
}

.reason-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.reason-icon i {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.reason-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   Flow Section
======================================== */
.flow-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.flow-step {
    flex-shrink: 0;
    width: 120px;
    padding: 15px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
}

.flow-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.flow-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon i {
    font-size: 2rem;
    color: var(--secondary-gold);
}

.flow-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.flow-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.flow-arrow {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--secondary-gold) 0%, transparent 100%);
    margin: 0 auto 20px;
}

/* ========================================
   FAQ Section
======================================== */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    transition: var(--transition-base);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Contact Section
======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-navy);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 5px;
}

.info-value a {
    color: var(--secondary-gold);
}

.info-value a:hover {
    color: var(--primary-navy);
}

.info-note {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
}

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

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark);
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--secondary-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label.privacy {
    padding: 15px 0;
}

.checkbox-label.privacy a {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Utilities
======================================== */
.mobile-only {
    display: none;
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2, .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .subsidy-cards,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
    }
    
    .mobile-only {
        display: inline;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 39, 66, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .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);
    }
    
    /* Hero */
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
    }
    
    /* Hide floating icons on mobile */
    .floating-icon {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
    
    /* Grids */
    .problem-grid,
    .subsidy-cards,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-wrapper {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
    
    .flow-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .flow-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2, .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .simulation-value {
        font-size: 1.5rem;
    }
    
    .simulation-value.large {
        font-size: 2rem;
    }
}