@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap');

/* =====================================================
   MENTAI ToB LP - Arc.net Inspired Design System
   Light Mode with Vibrant Accents
   ===================================================== */

:root {
    /* --- Arc Light Color Palette --- */
    --bg-light: #FEFCF9;
    --bg-cream: #FBF8F3;
    --bg-white: #FFFFFF;
    --bg-accent: #4F46E5;
    --bg-accent-light: #6366F1;

    /* --- Accent Colors --- */
    --accent-blue: #4F46E5;
    --accent-blue-light: #818CF8;
    --accent-violet: #7C3AED;
    --accent-violet-light: #A78BFA;
    --accent-orange: #FB923C;
    --accent-pink: #EC4899;
    --success: #10B981;

    /* --- Text Colors --- */
    --text-dark: #1F2937;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* --- Gradients (Arc-style mesh) --- */
    --grad-hero: linear-gradient(135deg,
            #E0E7FF 0%,
            #C7D2FE 25%,
            #DDD6FE 50%,
            #FBF8F3 75%,
            #FEF3C7 100%);
    --grad-accent: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --grad-soft: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FEFCF9 100%);

    /* --- Shadows (Soft, Arc-style) --- */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.08);

    /* --- Radius (Generous, Arc-style) --- */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --pill: 9999px;

    /* --- Dimensions --- */
    --container-width: 1200px;
    --header-height: 72px;

    /* --- Typography --- */
    --font-sans: 'Noto Sans JP', sans-serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* =====================================================
   TYPOGRAPHY (Arc-style Serif Headlines)
   ===================================================== */

h1,
h2,
h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.3;
    margin-bottom: 12px;
    font-style: normal;
    font-weight: 500;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-cream {
    background: var(--bg-cream);
}

.section-accent {
    background: var(--bg-accent);
    color: var(--text-white);
}

.section-accent h2,
.section-accent h3 {
    color: var(--text-white);
}

.section-accent p {
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    text-align: center;
    margin-bottom: 72px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =====================================================
   WAVY SECTION DIVIDERS (Arc Signature)
   ===================================================== */

.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    overflow: hidden;
}

.wave-divider-top {
    top: -1px;
}

.wave-divider-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave-scallop {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C100,0 200,0 300,40 C400,0 500,0 600,40 C700,0 800,0 900,40 C1000,0 1100,0 1200,40 L1200,0 L0,0 Z' fill='%23FEFCF9'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.wave-scallop-cream {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C100,0 200,0 300,40 C400,0 500,0 600,40 C700,0 800,0 900,40 C1000,0 1100,0 1200,40 L1200,0 L0,0 Z' fill='%23FBF8F3'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.wave-scallop-accent {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C100,0 200,0 300,40 C400,0 500,0 600,40 C700,0 800,0 900,40 C1000,0 1100,0 1200,40 L1200,0 L0,0 Z' fill='%234F46E5'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

/* =====================================================
   HEADER (Minimal, Arc-style)
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(254, 252, 249, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent-blue);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.header-cta {
    display: flex;
    gap: 12px;
}

/* =====================================================
   BUTTONS (Arc-style Pill Buttons)
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.btn-primary:hover {
    background: #111827;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent-blue);
    color: var(--text-white);
}

.btn-accent:hover {
    background: var(--accent-violet);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.btn.sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* =====================================================
   CARDS (Soft, Floating Arc-style)
   ===================================================== */

.card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-card);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.card h3 {
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Feature Card with Check Marks */
.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.feature-card .check-list {
    list-style: none;
    margin-top: 24px;
}

.feature-card .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-body);
    font-size: 15px;
}

.feature-card .check-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 700;
    flex-shrink: 0;
}

/* Problem/Challenge Cards */
.problem-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
}

.problem-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-family: var(--font-sans);
    font-weight: 700;
}

.problem-card ul {
    list-style: none;
}

.problem-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-violet);
    border-radius: 50%;
}

.problem-metric {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-blue);
}

.problem-metric p {
    font-size: 13px;
    color: var(--text-body);
    margin-bottom: 0;
}

.problem-metric strong {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Step Cards */
.step-card {
    text-align: center;
    position: relative;
    background: var(--bg-white);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-accent);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-family: var(--font-sans);
    font-weight: 600;
}

/* =====================================================
   HERO SECTION (Arc-style Gradient Background)
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: var(--grad-hero);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
    pointer-events: none;
}

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

.hero-tagline {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-note::before {
    content: '●';
    color: var(--accent-blue);
    font-size: 6px;
}

.hero-mascot img {
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.2));
}

/* =====================================================
   DASHBOARD PREVIEW (Arc-style Window)
   ===================================================== */

.dashboard-preview {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dashboard-dots {
    position: absolute;
    top: 18px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) {
    background: #FF5F56;
}

.dashboard-dots span:nth-child(2) {
    background: #FFBD2E;
}

.dashboard-dots span:nth-child(3) {
    background: #27C93F;
}

.dashboard-preview img {
    width: 100%;
    margin-top: 48px;
}

/* =====================================================
   AI INTERVIEW SPECS
   ===================================================== */

.spec-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.spec-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.spec-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.spec-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   TRUST / CREDIBILITY
   ===================================================== */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.trust-item {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-card);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.trust-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-weight: 600;
}

/* =====================================================
   EVALUATION ITEMS
   ===================================================== */

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

@media (max-width: 767px) {
    .eval-grid {
        grid-template-columns: 1fr;
    }
}

.eval-item {
    text-align: center;
    padding: 56px 32px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.eval-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.eval-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.eval-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
}

/* =====================================================
   FINAL CTA (Accent Background)
   ===================================================== */

.final-cta {
    text-align: center;
    padding: 140px 0;
    position: relative;
    background: var(--bg-accent);
    color: var(--text-white);
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 24px;
    color: var(--text-white);
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.final-cta .btn-primary {
    background: var(--text-white);
    color: var(--accent-blue);
}

.final-cta .btn-primary:hover {
    background: var(--bg-cream);
}

.final-cta .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px 32px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark);
}

.faq-question::before {
    content: 'Q';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 32px 24px;
    padding-left: 80px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: 64px 0 32px;
    background: var(--bg-cream);
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.float {
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

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

    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .header-cta {
        display: none;
    }

    .grid-3 {
        gap: 24px;
    }

    .card {
        padding: 28px;
    }

    .final-cta {
        padding: 100px 0;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

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

.text-left {
    text-align: left;
}

.mb-0 {
    margin-bottom: 0;
}

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

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

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

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

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

/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

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

.form-group label .required {
    color: #EF4444;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    min-width: 240px;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

.about-hero {
    padding: 160px 0 80px;
    background: var(--grad-hero);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    flex-shrink: 0;
}

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

.team-role {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 600;
}

.team-bio {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

/* Mission / Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

.mission-card,
.vision-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mission-card h2,
.vision-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-card h2::before {
    content: '🎯';
}

.vision-card h2::before {
    content: '🔭';
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-body);
}

.tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-blue);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Company Info Table */
.company-info-table {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.company-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.company-info-label {
    padding: 20px 24px;
    background: var(--bg-cream);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.company-info-value {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .company-info-row {
        grid-template-columns: 1fr;
    }

    .company-info-label {
        padding: 16px 20px 8px;
    }

    .company-info-value {
        padding: 8px 20px 16px;
    }
}