/* ═══════════════════════════════════════════════════════════════
   SAT Plus — Index Page Styles
   Sections: Hero, Services, Expertise, About, Contact
   Base, header, footer, dark mode → see components.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section Common ─────────────────────────────────────────── */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gradient-start);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(120, 190, 32, 0.15);
    padding: 6px 16px;
    border-radius: 980px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .section-tag {
    background: rgba(120, 190, 32, 0.08);
    border-color: rgba(120, 190, 32, 0.20);
    box-shadow: none;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 24px 80px;
}

/* ─── Slideshow Background ───────────────────────────────────── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 91s infinite;
    transform: scale(1.05);
}

/* 13 images × 7s each = 91s total cycle */
.hero-slide:nth-child(1)  { animation-delay: 0s; }
.hero-slide:nth-child(2)  { animation-delay: 7s; }
.hero-slide:nth-child(3)  { animation-delay: 14s; }
.hero-slide:nth-child(4)  { animation-delay: 21s; }
.hero-slide:nth-child(5)  { animation-delay: 28s; }
.hero-slide:nth-child(6)  { animation-delay: 35s; }
.hero-slide:nth-child(7)  { animation-delay: 42s; }
.hero-slide:nth-child(8)  { animation-delay: 49s; }
.hero-slide:nth-child(9)  { animation-delay: 56s; }
.hero-slide:nth-child(10) { animation-delay: 63s; }
.hero-slide:nth-child(11) { animation-delay: 70s; }
.hero-slide:nth-child(12) { animation-delay: 77s; }
.hero-slide:nth-child(13) { animation-delay: 84s; }

@keyframes heroSlide {
    0%    { opacity: 0; transform: scale(1.05); }
    1.5%  { opacity: 1; transform: scale(1.05); }  /* fade in */
    9%    { opacity: 1; transform: scale(1); }      /* visible + slow zoom out */
    11%   { opacity: 0; transform: scale(1); }      /* fade out */
    100%  { opacity: 0; transform: scale(1.05); }
}

/* Overlay — réduit pour laisser voir les photos */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(238, 242, 243, 0.45) 0%,
            rgba(238, 242, 243, 0.30) 35%,
            rgba(238, 242, 243, 0.55) 100%
        );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

[data-theme="dark"] .hero-overlay {
    background:
        linear-gradient(to bottom,
            rgba(10, 10, 12, 0.50) 0%,
            rgba(10, 10, 12, 0.35) 35%,
            rgba(10, 10, 12, 0.60) 100%
        );
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(120, 190, 32, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 190, 32, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.7;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.hero-glow--blue {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(120, 190, 32, 0.25), rgba(76, 175, 80, 0.1), transparent 70%);
    filter: blur(80px);
    top: -300px;
    right: -200px;
}

.hero-glow--purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2), rgba(120, 190, 32, 0.08), transparent 70%);
    filter: blur(80px);
    bottom: -200px;
    left: -150px;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.40);
    border-radius: var(--radius-xl);
    padding: 56px 48px 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .hero-content {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: saturate(200%) blur(16px);
    -webkit-backdrop-filter: saturate(200%) blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.50);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .hero-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-gradient,
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-tertiary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.5) translateY(0); }
    50% { opacity: 0.8; transform: scaleY(1) translateY(5px); }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Bento Grid
   ═══════════════════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: saturate(200%) blur(18px);
    -webkit-backdrop-filter: saturate(200%) blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--duration) var(--ease-apple);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .bento-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, rgba(120, 190, 32, 0.5) 50%, transparent 90%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.bento-card:hover {
    border-color: var(--surface-border-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

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

.bento-card--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 16px rgba(120, 190, 32, 0.3);
    transition: transform 0.3s var(--ease-apple), box-shadow 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 6px 24px rgba(120, 190, 32, 0.4);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.bento-card--hero h3 { font-size: 28px; }

.bento-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.bento-tag {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gradient-start);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 190, 32, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s var(--ease-apple);
}

.bento-tag:hover {
    background: rgba(120, 190, 32, 0.10);
    border-color: rgba(120, 190, 32, 0.30);
    transform: translateY(-1px);
}

[data-theme="dark"] .bento-tag {
    background: rgba(120, 190, 32, 0.08);
    border-color: rgba(120, 190, 32, 0.12);
    box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════════
   EXPERTISE — Stats
   ═══════════════════════════════════════════════════════════════ */
.expertise {
    background: rgba(120, 190, 32, 0.04);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 20% 50%, rgba(120, 190, 32, 0.18), transparent 70%),
        radial-gradient(circle 400px at 80% 40%, rgba(76, 175, 80, 0.12), transparent 70%);
    pointer-events: none;
}

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

.stat-card {
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-apple);
    background: rgba(255, 255, 255, 0.40) !important;
    backdrop-filter: saturate(200%) blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 30px rgba(120, 190, 32, 0.08) !important;
}

[data-theme="dark"] .stat-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.10) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.stat-card:hover .stat-number {
    transform: scale(1.08);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s var(--ease-apple);
}

.stat-unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--gradient-start);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-content strong { color: var(--text-primary); }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.about-tag {
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gradient-start);
    border: 1px solid rgba(120, 190, 32, 0.20);
    transition: all 0.3s var(--ease-apple);
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-tag:hover {
    background: rgba(120, 190, 32, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(120, 190, 32, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(120, 190, 32, 0.35);
}

[data-theme="dark"] .about-tag {
    background: rgba(120, 190, 32, 0.08);
    border-color: rgba(120, 190, 32, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-card { overflow: hidden; }

.about-card-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 0.5px solid var(--surface-border);
}

.about-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.about-card-dot:nth-child(1) { background: #ff5f57; }
.about-card-dot:nth-child(2) { background: #febc2e; }
.about-card-dot:nth-child(3) { background: #28c840; }

.about-card-body {
    padding: 24px;
    background: var(--code-bg);
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
}

.about-card-body code {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
    color: var(--code-text);
}

.code-keyword { color: #c678dd; }
.code-var { color: #e06c75; }
.code-prop { color: #61afef; }
.code-string { color: #98c379; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
    background: rgba(120, 190, 32, 0.03);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 500px at 30% 50%, rgba(120, 190, 32, 0.15), transparent 70%),
        radial-gradient(circle 400px at 70% 30%, rgba(76, 175, 80, 0.10), transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.contact-form { padding: 40px; }

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.3s var(--ease-apple);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.12);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(120, 190, 32, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
    font-weight: 400;
}

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

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 12px;
}

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

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(255, 255, 255, 0.50);
    border-color: rgba(255, 255, 255, 0.40);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="light"] .form-group input:hover,
[data-theme="light"] .form-group select:hover,
[data-theme="light"] .form-group textarea:hover {
    background: rgba(255, 255, 255, 0.60);
    border-color: rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.65);
}

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

.info-card {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(120, 190, 32, 0.1), rgba(76, 175, 80, 0.1));
    color: var(--gradient-start);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-apple),
                transform 0.7s var(--ease-apple);
}

[data-anim="fade-right"] { transform: translateX(-30px); }
[data-anim="fade-left"] { transform: translateX(30px); }
[data-anim].visible { opacity: 1; transform: translate(0, 0); }

/* ═══════════════════════════════════════════════════════════════
   DARK MODE — Index-specific overrides
   ═══════════════════════════════════════════════════════════════ */
[data-theme="dark"] .hero-glow { opacity: 0.2; }
[data-theme="dark"] .hero-bg-grid { opacity: 0.25; }

[data-theme="dark"] .bento-tag {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

[data-theme="dark"] .about-tag {
    background: linear-gradient(135deg, rgba(120, 190, 32, 0.15), rgba(76, 175, 80, 0.15));
    border-color: rgba(120, 190, 32, 0.25);
}

[data-theme="dark"] .about-card-body { background: #0a0a0a; }

[data-theme="dark"] .info-icon {
    background: linear-gradient(135deg, rgba(120, 190, 32, 0.2), rgba(76, 175, 80, 0.2));
}

[data-theme="dark"] .bento-icon {
    box-shadow: 0 0 24px rgba(120, 190, 32, 0.3);
}

[data-theme="dark"] .bento-card:hover {
    box-shadow: var(--shadow-md), 0 0 40px rgba(120, 190, 32, 0.08);
}

[data-theme="dark"] .stat-card:hover {
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Index-specific
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--hero { grid-column: span 2; grid-row: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--hero { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 40px; }
    .hero-title { letter-spacing: -1px; }
    .hero-content { padding: 32px 24px 28px; }
    .hero-badge { padding: 8px 16px; font-size: 12px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .about-content p { font-size: 15px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-content { padding: 24px 16px 20px; }
    .hero-title { font-size: 28px !important; }
    .hero-subtitle { font-size: 15px; }
    .section { padding: 40px 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 24px 16px; }
    .stat-number { font-size: 32px; }
    .bento-card { padding: 20px; }
    .bento-card--hero { padding: 24px; }
    .bento-card h3 { font-size: 17px; }
    .bento-card--hero h3 { font-size: 22px; }
}