/* style.css */

/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --color-primary: #0097A7;
    --color-secondary: #1F2937;
    --bg-light: #F3F4F6;
    --bg-dark: #111827;
    --surface-light: #FFFFFF;
    --surface-dark: #1F2937;
    
    --text-main: #1F2937;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --text-on-dark: #E5E7EB;

    --color-orange: #fb923c; /* orange-400 */
    --color-blue: #2563eb;   /* blue-600 */
    --color-cyan: #0891b2;   /* cyan-600 */
    
    --font-sans: 'Noto Sans JP', sans-serif;
}

/* Dark Mode Overrides (Assumes .dark class on HTML or Body) */
.dark {
    --bg-light: #111827;
    --surface-light: #1F2937;
    --text-main: #FFFFFF;
    --text-light: #9CA3AF;
    --color-secondary: #F3F4F6;
}

html {
    scroll-padding-top: 5rem; /* scroll-pt-20 */
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 6rem; /* md:scroll-pt-24 */
    }
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.5;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.dark ::-webkit-scrollbar-thumb {
    background: #475569;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* =========================================
   Utility / Layout Classes
   ========================================= */
.container {
    max-width: 80rem; /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding-left: 2rem; padding-right: 2rem; }
}

.container-small {
    max-width: 64rem; /* 5xl */
}

.center-text { text-align: center; }
.font-bold { font-weight: 700; }
.block-text { display: block; white-space: nowrap; }

.space-y-medium > * + * { margin-top: 1.5rem; }
.space-y-large > * + * { margin-top: 3rem; }

.mb-small { margin-bottom: 1rem; }
.mb-medium { margin-bottom: 2rem; }
.mb-large { margin-bottom: 2.5rem; }

@media (min-width: 768px) {
    .mb-large { margin-bottom: 4rem; }
    .space-y-large > * + * { margin-top: 4rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}
.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-dark {
    background-color: #111827;
    color: white;
}
.btn-dark:hover {
    background-color: #374151;
}

/* =========================================
   Header
   ========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}
.dark .site-header {
    background-color: rgba(31, 41, 55, 0.9);
    border-bottom-color: #374151;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

@media (min-width: 768px) {
    .header-container { height: 6rem; }
}

.site-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}
.dark .site-logo { color: white; }

@media (min-width: 768px) {
    .site-logo { font-size: 1.875rem; }
}

.btn-contact {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn-contact {
        padding: 0.75rem 2rem;
        font-size: 1.5rem;
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    background-color: white;
    overflow: hidden;
}
.dark .hero-section { background-color: #111827; }

.hero-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 1024px) {
    .hero-container { padding-top: 6rem; padding-bottom: 6rem; }
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
    }
}

.hero-content {
    text-align: center;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-content { text-align: center; } }
@media (min-width: 1024px) { 
    .hero-content { text-align: left; margin-bottom: 0; } 
}

.badge-hero {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.dark .badge-hero {
    background-color: #1e3a8a;
    color: #bfdbfe;
}
@media (min-width: 768px) {
    .badge-hero { font-size: 1.125rem; }
}

.hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 1.5rem;
}
.dark .hero-title { color: white; }

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 3.75rem; } }

.text-highlight { color: #0d9488; } /* teal-600 */

.hero-desc {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #6b7280;
}
.dark .hero-desc { color: #9ca3af; }

@media (min-width: 640px) { 
    .hero-desc { margin-top: 1.25rem; font-size: 1.125rem; } 
}
@media (min-width: 768px) { 
    .hero-desc { margin-top: 1.25rem; font-size: 1.25rem; } 
}

.hero-actions {
    margin-top: 2rem;
}
@media (min-width: 640px) {
    .hero-actions { display: flex; justify-content: center; margin-top: 2.5rem; }
}
@media (min-width: 1024px) {
    .hero-actions { justify-content: flex-start; }
}

.btn-download {
    width: 100%;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .btn-download { padding: 1rem; font-size: 1.125rem; }
}
.btn-shadow-wrapper {
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.pattern-svg {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -5rem;
    margin-right: -5rem;
    height: 20rem;
    width: 20rem;
    color: #f3f4f6;
    transform: translate(50%, 3rem);
    display: none;
}
.dark .pattern-svg { color: #1f2937; }
@media (min-width: 1024px) { .pattern-svg { display: block; } }

.pattern-dot { color: #e5e7eb; }
.dark .pattern-dot { color: #374151; }

.hero-img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}
.hero-img:hover {
    transform: scale(1.01);
}

/* =========================================
   Risk Section
   ========================================= */
.risk-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--bg-light);
}
.dark .risk-section { background-color: #111827; }

@media (min-width: 768px) {
    .risk-section { padding-top: 4rem; padding-bottom: 4rem; }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}
.dark .section-title { color: white; }

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

.section-desc {
    margin-top: 1rem;
    color: #4b5563;
    font-size: 1.125rem;
}
.dark .section-desc { color: #9ca3af; }

@media (min-width: 768px) {
    .section-desc { font-size: 1.25rem; }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.card {
    background-color: var(--surface-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}
.dark .card {
    background-color: var(--surface-dark);
    border-color: #374151;
}

@media (min-width: 768px) {
    .card { padding: 2rem; }
}

.risk-card .icon-box {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}
.dark .risk-card .icon-box { background-color: #1e3a8a; }

.material-icons-round { font-size: 24px; }

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}
.dark .card-title { color: white; }
@media (min-width: 768px) { .card-title { font-size: 1.5rem; } }

.card-text {
    color: #4b5563;
    font-size: 1rem;
}
.dark .card-text { color: #9ca3af; }
@media (min-width: 768px) { .card-text { font-size: 1.125rem; } }


/* =========================================
   Philosophy Section
   ========================================= */
.philosophy-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
}
@media (min-width: 768px) {
    .philosophy-section { padding-top: 5rem; padding-bottom: 5rem; }
}

.text-slate-900 { color: #0f172a; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-300 { color: #cbd5e1; }

.philosophy-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
@media (min-width: 768px) {
    .philosophy-layout {
        flex-direction: row;
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .philosophy-layout { gap: 4rem; }
}

.philosophy-card {
    flex: 1;
    width: 100%;
    max-width: 28rem;
    text-align: left;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.icon-large {
    width: 4rem;
    height: 4rem;
    margin-bottom: 2rem;
}

.text-orange { color: var(--color-orange); }
.text-blue { color: var(--color-blue); }

.card-subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) { .card-subtitle { font-size: 1.125rem; } }

.card-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
}
@media (min-width: 768px) { .card-heading { font-size: 1.5rem; } }

.connector.desktop-only { display: none; }
.connector.mobile-only { display: block; }

@media (min-width: 768px) {
    .connector.desktop-only { display: block; }
    .connector.mobile-only { display: none; }
}

/* =========================================
   Curriculum Section
   ========================================= */
.curriculum-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--bg-light);
}
.dark .curriculum-section { background-color: #111827; }

@media (min-width: 768px) {
    .curriculum-section { padding-top: 4rem; padding-bottom: 4rem; }
}

.table-card {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0; /* Reset generic card padding */
}

.table-header-block {
    padding: 1rem;
    border-left-width: 4px;
    border-left-style: solid;
}

.bg-orange-light { background-color: rgba(251, 146, 60, 0.1); }
.border-orange { border-left-color: var(--color-orange); }

.bg-blue-light { background-color: rgba(37, 99, 235, 0.1); }
.border-blue { border-left-color: var(--color-blue); }

.table-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) { .table-title { font-size: 1.5rem; } }

.icon-inline { margin-right: 0.5rem; }

.table-scroll {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    min-width: 800px;
}

.data-table thead tr {
    background-color: #f9fafb;
    color: #4b5563;
    font-size: 0.875rem;
    text-transform: uppercase;
    line-height: 1.5;
}
.dark .data-table thead tr {
    background-color: #1f2937;
    color: #d1d5db;
}

@media (min-width: 768px) {
    .data-table thead tr { font-size: 1.25rem; }
}

.data-table th {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    width: 25%;
    text-align: center;
    vertical-align: top;
}
.dark .data-table th { border-bottom-color: #374151; }
@media (min-width: 768px) { .data-table th { padding: 0.75rem 1.5rem; } }

.sub-th { font-size: 1.125rem; }
@media (min-width: 768px) { .sub-th { font-size: 1.25rem; } }

.data-table tbody {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 300;
}
.dark .data-table tbody { color: #d1d5db; }
@media (min-width: 768px) { .data-table tbody { font-size: 1.125rem; } }

.data-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}
.dark .data-table tbody tr { border-bottom-color: #374151; }

.data-table tbody tr:hover { background-color: #f9fafb; }
.dark .data-table tbody tr:hover { background-color: #1f2937; }

.data-table td {
    padding: 1rem 1rem;
    text-align: center;
    vertical-align: top;
}
@media (min-width: 768px) { .data-table td { padding: 1rem 1.5rem; } }

/* =========================================
   Reasons Section
   ========================================= */
.reasons-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
}
.dark .reasons-section { background-color: #111827; }
@media (min-width: 768px) {
    .reasons-section { padding-top: 4rem; padding-bottom: 4rem; }
}

.reasons-title {
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .reasons-title { margin-bottom: 4rem; } }

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

.icon-circle {
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}
.blue-light { background-color: #eff6ff; }
.dark .blue-light { background-color: #1e3a8a; }

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}
.dark .reason-title { color: white; }
@media (min-width: 768px) { .reason-title { font-size: 1.5rem; } }

.reason-text {
    font-size: 1rem;
    color: #4b5563;
}
.dark .reason-text { color: #9ca3af; }
@media (min-width: 768px) { .reason-text { font-size: 1.125rem; } }

/* =========================================
   Cases Section
   ========================================= */
.cases-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--bg-light);
}
.dark .cases-section { background-color: #111827; }
@media (min-width: 768px) { .cases-section { padding-top: 5rem; padding-bottom: 5rem; } }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.case-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #f1f5f9;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
@media (min-width: 768px) { .case-card { padding: 2.5rem; } }
.case-card:hover { border-color: #a5f3fc; } /* cyan-200 */

.case-bubble {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background-color: rgba(207, 250, 254, 0.3);
    border-radius: 9999px;
    margin-right: -4rem;
    margin-top: -4rem;
    transition: transform 0.3s;
}
.case-card:hover .group-hover-scale { transform: scale(1.1); }

.case-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #0891b2; /* cyan-600 */
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .case-label { font-size: 1.125rem; } }

.case-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .case-title { font-size: 1.5rem; } }

.case-subtitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .case-subtitle { font-size: 1.125rem; } }

.case-text { font-size: 1rem; }
@media (min-width: 768px) { .case-text { font-size: 1.125rem; } }

.case-result {
    font-size: 1rem;
    font-weight: 500;
}
@media (min-width: 768px) { .case-result { font-size: 1.125rem; } }
.text-cyan-700 { color: #0e7490; }


/* =========================================
   Subsidy Section
   ========================================= */
.subsidy-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
}
@media (min-width: 768px) { .subsidy-section { padding-top: 5rem; padding-bottom: 5rem; } }

.subsidy-block { margin-bottom: 3rem; }
@media (min-width: 768px) { .subsidy-block { margin-bottom: 4rem; } }

.subsidy-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-cyan);
}
@media (min-width: 768px) { .subsidy-heading { font-size: 1.5rem; } }
.text-cyan-600 { color: var(--color-cyan); }

.subsidy-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .subsidy-desc { font-size: 1.25rem; } }

.subsidy-card {
    border-radius: 1rem;
    overflow: hidden;
}

/* カードのヘッダー色修正 */
.subsidy-card .subsidy-header {
    background-color: var(--color-cyan);
    padding: 1.5rem 2rem;
    color: white;
}

.subsidy-subheading {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
@media (min-width: 768px) { .subsidy-subheading { font-size: 1.25rem; } }

.subsidy-body {
    padding: 1.5rem 2rem;
}
/* Tailwind: bg-slate-200 */
.bg-slate-200 { background-color: #e2e8f0; }

.subsidy-label {
    font-weight: 700;
    text-align: center;
    font-size: 1.125rem;
}
@media (min-width: 768px) { .subsidy-label { font-size: 1.25rem; } }

.subsidy-footer {
    padding: 1.5rem;
    background-color: white;
    text-align: center;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.mobile-only { display: block; }
.desktop-grid { display: none; }
@media (min-width: 768px) {
    .mobile-only { display: none; }
    .desktop-grid { display: grid; }
}

.highlight-text { font-size: 1.5rem; font-weight: 700; color: var(--color-cyan); }
.highlight-large { font-size: 1.875rem; font-weight: 700; color: var(--color-cyan); }

.subsidy-notes { font-size: 1rem; }
@media (min-width: 768px) { .subsidy-notes { font-size: 1.25rem; } }

/* 助成金テーブルの色修正 */
.subsidy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/* ヘッダー行をCyan背景に */
.subsidy-table thead tr {
    background-color: var(--color-cyan);
    color: white;
}

.subsidy-table th {
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 1rem;
}
@media (min-width: 768px) { 
    .subsidy-table th { padding: 1rem 1.5rem; font-size: 1.125rem; } 
}

.subsidy-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
}
@media (min-width: 768px) { 
    .subsidy-table td { padding: 1rem 1.5rem; font-size: 1.125rem; } 
}

.bg-slate-50 { background-color: #f8fafc; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }

/* =========================================
   Flow Section
   ========================================= */
.flow-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #f8fafc; /* slate-50 */
}
@media (min-width: 768px) { .flow-section { padding-top: 5rem; padding-bottom: 5rem; } }

.flow-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0;
}
@media (min-width: 768px) { .flow-container { padding: 0 1.5rem; } }

.flow-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .flow-card { padding: 2.5rem; } }

.flow-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .flow-layout { flex-direction: row; }
}

.flow-number-wrapper {
    flex-shrink: 0;
    align-self: center;
}
@media (min-width: 768px) { .flow-number-wrapper { align-self: auto; } }

.flow-number {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) { .flow-number { width: 5rem; height: 5rem; } }

.number-text { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 768px) { .number-text { font-size: 1.875rem; } }

.flow-content { flex: 1; width: 100%; }

.flow-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}
@media (min-width: 768px) { 
    .flow-title { font-size: 1.5rem; text-align: left; } 
}

.flow-desc {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .flow-desc { font-size: 1.125rem; } }

.flow-separator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Alert Boxes within Flow */
.alert-box {
    padding: 1rem;
    border-left-width: 4px;
    border-left-style: solid;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-top: 1rem;
}

.alert-cyan {
    background-color: #ecfeff; /* cyan-50 */
    border-left-color: #06b6d4; /* cyan-500 */
}
.alert-red {
    background-color: #fef2f2; /* red-50 */
    border-left-color: #ef4444; /* red-500 */
}
.alert-yellow {
    background-color: #fefce8; /* yellow-50 */
    border-left-color: #eab308; /* yellow-500 */
}

.alert-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}
@media (min-width: 768px) { .alert-title { font-size: 1.125rem; } }

.alert-text { font-size: 1rem; }
@media (min-width: 768px) { .alert-text { font-size: 1.125rem; } }

.icon-small { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.text-primary { color: var(--color-primary); }
.text-red-800 { color: #991b1b; }
.text-red-600 { color: #dc2626; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-800 { color: #854d0e; }
.icon-shrink { flex-shrink: 0; }

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: white;
}
.dark .faq-section { background-color: #111827; }
@media (min-width: 768px) { .faq-section { padding-top: 4rem; padding-bottom: 4rem; } }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
}
.dark .faq-item { background-color: var(--surface-dark); }

.faq-summary {
    font-weight: 500;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.125rem;
}
.dark .faq-summary { color: white; }
@media (min-width: 768px) { .faq-summary { font-size: 1.25rem; } }

/* Animate detail arrow */
.faq-icon {
    transition: transform 0.3s;
}
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: #4b5563;
    margin-top: 1rem;
    font-size: 1rem;
}
.dark .faq-answer { color: #9ca3af; }
@media (min-width: 768px) { .faq-answer { font-size: 1.125rem; } }

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--bg-light);
}
.dark .contact-section { background-color: #111827; }
@media (min-width: 768px) { .contact-section { padding-top: 4rem; padding-bottom: 4rem; } }

.contact-title { margin-bottom: 1rem; }
.contact-desc {
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}
.dark .contact-desc { color: #9ca3af; }
@media (min-width: 768px) { .contact-desc { font-size: 1.25rem; } }

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.dark .contact-form { background-color: var(--surface-dark); }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }

.form-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}
.dark .form-label { color: #d1d5db; }
@media (min-width: 768px) { .form-label { font-size: 1.25rem; } }

.form-input {
    margin-top: 0.25rem;
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.dark .form-input {
    background-color: #374151;
    border-color: #4b5563;
    color: white;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.3);
}
@media (min-width: 640px) { .form-input { font-size: 1.125rem; } }

.form-textarea {
    font-size: 1rem;
}
@media (min-width: 768px) { .form-textarea { font-size: 1.25rem; } }

.form-action { padding-top: 1rem; }

.btn-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}
@media (min-width: 768px) { .btn-submit { width: 33.333%; font-size: 1.25rem; } }