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

:root {
    --red: #DC2626;
    --red-bright: #EF4444;
    --red-dark: #B91C1C;
    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --red-200: #FECACA;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-red: 0 8px 30px rgba(220,38,38,0.2);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 700;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray-600); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.text-red { color: var(--red); }
.text-lg { font-size: 1.2rem; line-height: 1.7; }

/* ===== Layout ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-red {
    background: var(--red);
    color: var(--white);
}

.section-red h2,
.section-red h3,
.section-red h4 { color: var(--white); }
.section-red p { color: rgba(255,255,255,0.85); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
    font-size: 1.1rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-50);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s;
}

.nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--gray-900);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 14px;
    background: var(--white);
}

.nav-mobile a:not(.btn) {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

.nav-mobile.open {
    display: flex;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-sm { padding: 9px 22px; font-size: 0.85rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    padding-left: 4px;
}

.btn-ghost:hover {
    color: var(--gray-900);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--gray-400);
    background: var(--white);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--red-100) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    opacity: 0.6;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
    bottom: 50px;
    left: -80px;
    opacity: 0.8;
}

.hero-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--red-50);
    top: 40%;
    left: 55%;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-50);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.hero-title {
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-dot {
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.75;
}

.hero-subtitle em {
    font-style: italic;
    color: var(--gray-700);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 48px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-proof-item {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.hero-proof-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero visual — flag-inspired */
.hero-visual {
    position: relative;
    flex-shrink: 0;
}

.hero-flag {
    width: 280px;
    height: 190px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
}

.hero-flag-circle {
    width: 90px;
    height: 90px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; }
}

.hero-kanji {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--red-100);
    line-height: 1;
    user-select: none;
}

/* ===== Marquee ===== */
.marquee {
    overflow: hidden;
    margin-bottom: 64px;
    padding: 14px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.marquee-inner {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Problem Section ===== */
.problem-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.problem-main h2 {
    margin-bottom: 20px;
}

.problem-main p {
    font-size: 1.1rem;
}

.problem-main strong {
    color: var(--red);
    font-weight: 700;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s;
}

.problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.problem-card-red {
    background: var(--red);
    border-color: var(--red);
}

.problem-card-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
}

.problem-card-red .problem-card-num { color: var(--white); }

.problem-card-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.problem-card-red .problem-card-label { color: rgba(255,255,255,0.85); }

/* ===== Deliverables Grid ===== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.deliverable-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.25s;
}

.deliverable-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.deliverable-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-200);
    margin-bottom: 12px;
    line-height: 1;
}

.deliverable-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.deliverable-card p {
    font-size: 0.875rem;
    line-height: 1.55;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-line {
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--gray-200);
}

.phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding-bottom: 48px;
}

.phase:last-of-type { padding-bottom: 0; }

.phase-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.phase-marker-dot {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-marker-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
}

.phase-marker-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.phase-content {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.3s;
}

.phase-content:hover {
    box-shadow: var(--shadow-md);
}

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

.phase-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    background: var(--red-50);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.phase-title {
    font-size: 1.5rem;
    color: var(--gray-900);
}

.phase-desc {
    margin-bottom: 24px;
    font-size: 1rem;
}

.phase-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: var(--red-200);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.step strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.step p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.55;
}

/* ===== Program Phases & Weeks (Enter Japan page) ===== */

/* Deliverables Pills */
.deliverables-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
}

.deliverable-pill {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    white-space: nowrap;
}

/* Phase */
.program-phase {
    margin-bottom: 48px;
}

.program-phase:last-of-type {
    margin-bottom: 0;
}

.program-phase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding: 40px 0;
    position: relative;
}

.program-phase-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.program-phase-header .phase-label {
    position: relative;
    background: var(--gray-50);
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 16px;
}

.program-phase-header h2 {
    position: relative;
    display: inline-block;
    color: var(--gray-900);
    margin: 8px auto 6px;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    background: var(--gray-50);
    padding: 0 20px;
}

.program-phase-weeks {
    position: relative;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 0 16px;
}

/* Phase description */
.program-phase-desc {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Weeks card */
.program-weeks-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
}

/* Week rows */
.program-week {
    border-bottom: 1px solid var(--gray-100);
}

.program-week:last-child {
    border-bottom: none;
}

.program-week-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    cursor: pointer;
}

.program-week-num {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--red);
    background: var(--red-50);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.program-week-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.program-week-deliverable {
    font-size: 0.85rem;
    color: var(--gray-400);
    white-space: nowrap;
    flex-shrink: 0;
}

.program-week-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    flex-shrink: 0;
}

.program-week-toggle .toggle-vertical {
    transition: opacity 0.2s, transform 0.2s;
}

.program-week:not(.collapsed) .program-week-toggle .toggle-vertical {
    opacity: 0;
    transform: rotate(90deg);
}

/* Week expanded detail */
.program-week-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 28px 28px;
}

.program-week.collapsed .program-week-detail {
    display: none;
}

.program-week-do h4,
.program-week-get h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.program-week-do h4 {
    color: var(--gray-400);
}

.program-week-get h4 {
    color: var(--red);
}

.program-week-do p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.program-deliverable {
    background: var(--red-50);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}

.program-deliverable strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--red-dark);
    margin-bottom: 10px;
}

.program-deliverable p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}

/* Team Section */
.team-header {
    margin-bottom: 48px;
}

.team-header h2 {
    margin-top: 0;
}

.team-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.team-photo img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.team-info h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red) !important;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.team-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.team-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.team-stat span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* FAQ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--red);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===== Ongoing ===== */
.ongoing {
    margin-top: 56px;
}

.ongoing-inner {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    text-align: center;
    background: var(--white);
}

.ongoing-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.ongoing-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pill {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.pill-dot {
    color: var(--gray-300);
    font-size: 1.2rem;
    line-height: 1;
}

/* ===== Playbook Intro ===== */
.playbook-header {
    max-width: 900px;
}

.playbook-intro h2 {
    margin-bottom: 32px;
}

.playbook-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 32px;
}

.playbook-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.playbook-pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.playbook-pillar-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 600px) {
    .playbook-pillars {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== Fit Section ===== */
.fit-header {
    max-width: 700px;
    margin-bottom: 48px;
}

.fit-header h2 {
    margin-bottom: 16px;
}

.fit-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.fit-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.fit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 28px;
}

.fit-card ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fit-card li {
    font-size: 0.95rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.55;
    color: var(--gray-600);
}

.fit-card li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.fit-yes h3 { color: #15803D; }
.fit-yes li::before { content: "\2713"; color: #16A34A; }
.fit-yes { border-color: #BBF7D0; background: #F0FDF4; }

.fit-no h3 { color: var(--gray-900); }
.fit-no li::before { content: "\2014"; color: var(--gray-400); font-weight: 400; }
.fit-no { border-color: #FECACA; background: var(--red-50); }

/* ===== Pricing ===== */
.section-pricing {
    background: #F9FAFB;
}

.pricing-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 880px;
    margin: 0 auto 32px;
    align-items: start;
}

/* Without card */
.pricing-without {
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.pricing-without h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.pricing-without ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-without li {
    font-size: 0.9rem;
    padding-left: 28px;
    position: relative;
    color: var(--gray-600);
    line-height: 1.5;
}

.pricing-without li::before {
    content: "\2715";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
}

/* With card (dark) */
.pricing-with {
    border-radius: var(--radius-xl);
    padding: 40px;
    background: var(--gray-900);
    border: 2px solid var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.pricing-with h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 12px;
}

.pricing-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
}

.pricing-with .pricing-period {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.9rem;
    padding-left: 26px;
    position: relative;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.pricing-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #34D399;
    font-weight: 700;
}

/* Guarantee */
.pricing-guarantee-statement {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 8px 0;
}

.pricing-guarantee-statement p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0;
}

.pricing-guarantee-statement strong {
    color: var(--gray-900);
    font-size: 1.15rem;
}


/* ===== About ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.value-card h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1rem;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ===== Apply / CTA ===== */
.apply-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.apply-info h2 {
    margin-bottom: 16px;
}

.apply-info > p {
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.apply-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-step {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.apply-step-num {
    width: 32px;
    height: 32px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.apply-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

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

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

.form-group:not(.form-row .form-group) {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-100);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.apply-form .btn {
    margin-top: 8px;
}

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

/* ===== Nav Dropdown ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-trigger svg {
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-left: 1px solid var(--gray-100);
}

.nav-dropdown-menu a {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    min-width: 240px;
}

.nav-dropdown-menu a:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: none;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.nav-dropdown-menu a.active {
    color: var(--red);
}

.nav-links a.active:not(.btn) {
    color: var(--gray-900);
}

/* Nav mobile additions */
.nav-mobile-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-top: 8px;
    margin-bottom: -6px;
}

.nav-mobile-sub {
    padding-left: 16px;
}

.nav-mobile a.active:not(.btn) {
    color: var(--red) !important;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.page-hero-compact {
    padding: 140px 0 60px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 48px;
}

.page-hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

/* Hero graphic */
.hero-graphic {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
}

.hero-graphic-kanji {
    position: absolute;
    top: -30px;
    right: -10px;
    font-size: 7rem;
    font-weight: 700;
    color: var(--red-100);
    line-height: 1;
    user-select: none;
    z-index: 0;
    opacity: 0;
    animation: kanjiIn 0.8s ease-out 0.2s forwards;
}

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

.hero-chart-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 24px 28px 20px;
    width: 100%;
    max-width: 400px;
    margin-top: 56px;
}

.hero-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.hero-chart-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.hero-chart-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: #16A34A;
    background: #F0FDF4;
    padding: 3px 10px;
    border-radius: 20px;
    opacity: 0;
    animation: badgePop 0.4s ease-out 2.0s forwards;
}

@keyframes badgePop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.hero-chart {
    width: 100%;
    display: block;
}

.services-hero-svg {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 1;
    margin: 56px auto 0 -40px;
    display: block;
}


/* Small floating flag accent */
.hero-graphic-flag {
    position: absolute;
    bottom: -16px;
    left: -20px;
    width: 72px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    animation: flagSlideIn 0.5s ease-out 1.6s forwards;
}

.hero-graphic-flag-circle {
    width: 24px;
    height: 24px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-soft 3s ease-in-out infinite;
}

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

@keyframes chartPulseWhite {
    0% { r: 5; opacity: 0.4; }
    70% { r: 16; opacity: 0; }
    100% { r: 16; opacity: 0; }
}

@keyframes chartPulseRed {
    0% { r: 5; opacity: 0.35; }
    70% { r: 16; opacity: 0; }
    100% { r: 16; opacity: 0; }
}

.page-hero .hero-subtitle {
    max-width: 600px;
}

/* ===== Service Card Grid (services page) ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 32px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #E5E7EB;
    transition: background 0.2s;
}

.service-card:hover::before {
    background: #DC2626;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.card-icon-flag {
    background: var(--white);
    border: 1px solid #E5E7EB;
    width: 52px;
    height: 36px;
    border-radius: 6px;
}

.card-flag-circle {
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 20px;
}

.card-expand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #DC2626;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    font-family: inherit;
}

.card-expand:hover {
    color: #B91C1C;
}

.service-card .expand-show { display: inline; }
.service-card .expand-hide { display: none; }
.service-card.open .expand-show { display: none; }
.service-card.open .expand-hide { display: inline; }

.card-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.open .card-detail {
    max-height: 400px;
}

.includes-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.includes-list {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.includes-list li {
    font-size: 13px;
    color: #4B5563;
    padding: 5px 0 5px 20px;
    position: relative;
}

.includes-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: 700;
    font-size: 12px;
}

.card-pricing {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    padding: 4px 12px;
}

.card-best-for {
    font-size: 12px;
    color: #9CA3AF;
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid #F3F4F6;
}

.card-best-for strong {
    color: #6B7280;
    font-weight: 600;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #E5E7EB;
}

.services-cta p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 24px;
}

.services-cta p strong {
    color: #111827;
}

.services-cta-secondary {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: #6B7280;
    text-decoration: none;
}

.services-cta-secondary:hover {
    color: #DC2626;
}

/* ===== Home Page CTA ===== */
.home-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.home-cta h2 {
    margin-bottom: 16px;
}

.home-cta > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.home-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Home Services Grid ===== */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.home-service-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.25s;
    position: relative;
}

.home-service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gray-200);
}

.home-service-featured {
    grid-column: 1 / -1;
    background: var(--red-50);
    border-color: var(--red-200);
}

.home-service-featured:hover {
    border-color: var(--red);
}

.home-service-wide {
    grid-column: 1 / -1;
    border-color: var(--gray-200);
}

.home-service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    background: var(--white);
    border: 1px solid var(--red-200);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.home-service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.home-service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.home-service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--red);
}

/* ===== Stats Grid (home why Japan) ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
}

.stat-card .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* ===== Why Us (home page) ===== */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-text h2 { margin-bottom: 16px; }
.why-text .text-lg { margin-top: 8px; }

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-card-icon {
    color: var(--red);
    margin-bottom: 12px;
}

.why-card h4 {
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.875rem;
    line-height: 1.55;
}

/* ===== About Story (about page) ===== */
.about-story-text {
    max-width: 720px;
}

.about-story-text h2 {
    margin-bottom: 20px;
}

.about-story-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ===== Approach Grid (about page) ===== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.approach-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.25s;
}

.approach-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.approach-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red-200);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.approach-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.875rem;
    line-height: 1.55;
}

/* ===== Contact Page ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

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

.contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.contact-info-card h3 {
    margin-bottom: 24px;
}

.contact-info-light {
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 24px 32px;
}

.contact-info-light h4 {
    margin-bottom: 4px;
}

.contact-steps .apply-step {
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-steps .apply-step:last-child {
    margin-bottom: 0;
}

.contact-steps .apply-step strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.contact-steps .apply-step p {
    font-size: 0.85rem;
    margin: 0;
}

.text-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.text-link:hover {
    color: var(--red-dark);
}

.form-title {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--gray-900);
}

/* ===== Footer (multi-page) ===== */
.footer {
    background: var(--gray-900);
    padding: 48px 0 32px;
}


.footer-brand p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Legacy footer compat */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual { display: none; }
    .hero-split { grid-template-columns: 1fr; }
    .hero-graphic { max-width: 340px; margin: 0 auto; }
    .hero-graphic-kanji { font-size: 5rem; top: -20px; right: 0; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-cards { grid-template-columns: repeat(2, 1fr); }
}

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

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero {
        padding: 120px 0 72px;
        min-height: auto;
    }

    .page-hero { padding: 120px 0 60px; }

    .problem-layout { grid-template-columns: 1fr; gap: 36px; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .fit-grid { grid-template-columns: 1fr; }
    .pricing-compare { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 36px; }
    .apply-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .home-services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr 1fr; }

    .card-grid { grid-template-columns: 1fr; }

    .service-card { padding: 24px; }

    .timeline-line { left: 19px; }
    .phase-marker-dot { width: 40px; height: 40px; }
    .phase-content { padding: 24px; }
    .phase { gap: 20px; }

    .program-phase-header { padding: 28px 0; }
    .program-week-header { flex-wrap: wrap; gap: 8px; }
    .program-week-deliverable { display: none; }
    .program-week-detail { grid-template-columns: 1fr; gap: 24px; }
    .team-layout { grid-template-columns: 1fr; }
    .team-photo img { width: 160px; height: 200px; }

    .ongoing-inner {
        padding: 24px 28px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav { gap: 40px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-proof-divider { display: none; }
    .marquee { margin-bottom: 48px; }

    .home-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .pricing-number { font-size: 2.5rem; }
    .ongoing-pills { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .why-cards { grid-template-columns: 1fr; }
    .hero-graphic { display: none; }
    .hero-split { gap: 24px; }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
    .deliverable-card,
    .phase-content,
    .fit-card,
    .pricing-card,
    .about-layout > div,
    .problem-layout > div,
    .apply-layout > div,
    .contact-layout > div,
    .service-card,
    .home-service-card,
    .why-card,
    .approach-card,
    .stat-card,
    .services-pricing-card,
    .ongoing,
    .program-phase,
    .program-week,
    .faq-item {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

    .animate-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
