/* =============================================
   ABOUT PAGE - MODERN REDESIGN 2026
   Bento grid, interactive timeline, smooth animations
   ============================================= */

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
   :root {
    --about-bg: #fafafa;
    --about-bg-alt: #f5f5f5;
    --about-card-bg: #ffffff;
    --about-border: rgba(0, 0, 0, 0.06);
    --about-text: #1a1a1a;
    --about-text-muted: #6b7280;
    --about-text-subtle: #9ca3af;
    --about-accent: #6366f1;
    --about-accent-light: #818cf8;
    --about-accent-glow: rgba(99, 102, 241, 0.15);
    --about-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --about-gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --about-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --about-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --about-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --about-shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
}

/* =============================================
   PAGE WRAPPER
   ============================================= */
.about-page-wrapper {
    background: var(--about-bg);
    color: var(--about-text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* =============================================
   IMMERSIVE HERO
   ============================================= */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--about-bg) 100%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--about-accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.about-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--about-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.about-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--about-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--about-text);
}

.about-hero-title .wave {
    display: inline-block;
    animation: wave 2.5s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50%, 100% { transform: rotate(0deg); }
}

.about-hero-title .gradient-text {
    background: var(--about-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--about-text-muted);
    margin-bottom: 40px;
}

.about-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--about-text);
    box-shadow: var(--about-shadow-sm);
    transition: all 0.3s ease;
}

.about-hero-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--about-shadow-md);
    border-color: var(--about-accent);
}

/* Hero Image */
.about-hero-image {
    position: relative;
}

.about-hero-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    /* box-shadow: var(--about-shadow-xl); */
}

.about-hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: var(--about-gradient); */
    opacity: 0.1;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.about-hero-image-wrapper:hover::before {
    opacity: 0.05;
}

.about-hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating badges */
.about-hero-badge {
    position: absolute;
    background: var(--about-card-bg);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--about-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: floatBadge 6s ease-in-out infinite;
}

.about-hero-badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.about-hero-badge-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-hero-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--about-accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-hero-badge-text {
    display: flex;
    flex-direction: column;
}

.about-hero-badge-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text);
}

.about-hero-badge-label {
    font-size: 0.75rem;
    color: var(--about-text-muted);
}

/* =============================================
   BENTO GRID SECTION
   ============================================= */
.about-bento-section {
    padding: 100px 0;
    background: var(--about-bg);
}

.about-bento-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-bento-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--about-accent);
    margin-bottom: 16px;
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--about-text);
    margin-bottom: 16px;
}

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

.bento-card {
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--about-shadow-lg);
    border-color: var(--about-accent);
}

/* Card sizes */
.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

/* Story card */
.bento-story {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-story h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 16px;
}

.bento-story p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--about-text-muted);
    margin-bottom: 12px;
}

.bento-story p:last-child {
    margin-bottom: 0;
}

/* Stats card */
.bento-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--about-gradient);
    color: white;
    border: none;
}

.bento-stat:hover {
    transform: translateY(-4px) scale(1.02);
}

.bento-stat-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.bento-stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Education card */
.bento-education h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.education-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--about-border);
    font-size: 0.9375rem;
    color: var(--about-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.education-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.education-list li::before {
    content: '🎓';
    font-size: 1rem;
}

/* Quote card */
.bento-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.bento-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--about-text);
    margin: 0;
    position: relative;
    padding-left: 24px;
    border-left: 4px solid var(--about-accent);
}

.bento-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--about-text-muted);
}

/* Tech stack card */
.bento-tech h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 20px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: var(--about-bg);
    border: 1px solid var(--about-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.1);
    border-color: var(--about-accent);
    background: var(--about-accent-glow);
}

/* =============================================
   TIMELINE SECTION
   ============================================= */
.about-timeline-section {
    padding: 100px 0;
    background: var(--about-bg-alt);
}

.about-timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-timeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.timeline-modern {
    position: relative;
    padding-left: 60px;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--about-accent) 0%, var(--about-accent-light) 50%, var(--about-border) 100%);
}

.timeline-item-modern {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item-modern:last-child {
    padding-bottom: 0;
}

.timeline-marker-modern {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--about-card-bg);
    border: 3px solid var(--about-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item-modern:hover .timeline-marker-modern {
    transform: scale(1.1);
    background: var(--about-accent);
    color: white;
}

.timeline-card-modern {
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 20px;
    padding: 28px 32px;
    transition: all 0.3s ease;
}

.timeline-item-modern:hover .timeline-card-modern {
    transform: translateX(8px);
    box-shadow: var(--about-shadow-md);
    border-color: var(--about-accent);
}

.timeline-card-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 8px;
}

.timeline-card-modern p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--about-text-muted);
    margin: 0;
}

.timeline-card-modern ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--about-text-muted);
}

.timeline-card-modern li {
    margin-bottom: 6px;
    font-size: 0.9375rem;
}

/* =============================================
   COFFEE SECTION
   ============================================= */
.about-coffee-section {
    padding: 100px 0;
    background: var(--about-bg);
    position: relative;
    overflow: hidden;
}

.about-coffee-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-coffee-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--about-shadow-xl);
}

.about-coffee-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-coffee-image:hover img {
    transform: scale(1.03);
}

.about-coffee-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--about-text);
    margin-bottom: 24px;
}

.about-coffee-content > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--about-text-muted);
    margin-bottom: 24px;
}

.coffee-values {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.coffee-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.coffee-value:hover {
    transform: translateX(8px);
    border-color: var(--about-accent);
    box-shadow: var(--about-shadow-sm);
}

.coffee-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--about-accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.coffee-value-text h4 {
    font-weight: 600;
    color: var(--about-text);
    margin-bottom: 4px;
}

.coffee-value-text p {
    font-size: 0.9375rem;
    color: var(--about-text-muted);
    margin: 0;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.about-philosophy-section {
    padding: 100px 0;
    background: var(--about-bg-alt);
}

.about-philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-philosophy-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.philosophy-card-modern {
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.philosophy-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--about-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.philosophy-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--about-shadow-lg);
}

.philosophy-card-modern:hover::before {
    transform: scaleX(1);
}

.philosophy-icon-modern {
    width: 64px;
    height: 64px;
    background: var(--about-accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.philosophy-card-modern:hover .philosophy-icon-modern {
    background: var(--about-accent);
    transform: scale(1.1);
}

.philosophy-card-modern h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 12px;
}

.philosophy-card-modern p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--about-text-muted);
    margin: 0;
}

/* =============================================
   SKILLS MARQUEE
   ============================================= */
.about-skills-section {
    padding: 80px 0;
    background: var(--about-bg);
    overflow: hidden;
}

.skills-marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.skills-marquee-wrapper::before,
.skills-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.skills-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--about-bg) 0%, transparent 100%);
}

.skills-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--about-bg) 0%, transparent 100%);
}

.skills-marquee {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
}

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

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--about-card-bg);
    border: 1px solid var(--about-border);
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--about-text);
    white-space: nowrap;
    box-shadow: var(--about-shadow-sm);
}

/* =============================================
   FINAL CTA
   ============================================= */
.about-cta-section {
    padding: 120px 0;
    background: var(--about-text);
    color: white;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.about-cta-section p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

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

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--about-gradient);
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =============================================
   INTERACTIVE PROCESS
   ============================================= */
.process-interactive-section {
    padding: 120px 0;
    background: var(--about-bg-alt, #f8fafc);
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* opacity and transform controlled by JS scroll animation */
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--about-text, #1e293b);
}

.process-step-content p {
    font-size: 1.125rem;
    color: var(--about-text-muted, #64748b);
    line-height: 1.7;
    margin-bottom: 24px;
}

.process-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--about-text-muted, #64748b);
}

.process-step-tag svg {
    color: var(--about-primary, #6366f1);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .about-hero-content {
        max-width: 100%;
    }
    
    .about-hero-tags {
        justify-content: center;
    }
    
    .about-hero-badge {
        display: none;
    }
    
    .about-coffee-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .philosophy-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }
    
    .bento-stat-value {
        font-size: 3rem;
    }
    
    .timeline-modern {
        padding-left: 40px;
    }
    
    .timeline-modern::before {
        left: 13px;
    }
    
    .timeline-marker-modern {
        left: -40px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .philosophy-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .process-step-item {
        grid-template-columns: 60px 1fr;
        gap: 24px;
        padding: 32px 0;
    }
    
    .process-step-number {
        font-size: 3rem;
    }
    
    .process-step-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    .timeline-card-modern {
        padding: 20px;
    }
}
