/* ═══════════════════════════════════════════════════════════════
   SAT Plus — Subpage Styles (Full Glassmorphism)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Hero ──────────────────────────────────────────────── */
.page-hero {
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero--rich {
    padding: 160px 24px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Page Slideshow (auto-injected by components.js) ────────── */
.page-hero--rich .hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.page-hero--rich .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom,
            rgba(238, 242, 243, 0.78) 0%,
            rgba(238, 242, 243, 0.65) 40%,
            rgba(238, 242, 243, 0.88) 100%
        );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

[data-theme="dark"] .page-hero--rich .hero-overlay {
    background:
        linear-gradient(to bottom,
            rgba(10, 10, 12, 0.72) 0%,
            rgba(10, 10, 12, 0.58) 40%,
            rgba(10, 10, 12, 0.82) 100%
        );
}

@keyframes heroSlide {
    0%    { opacity: 0; transform: scale(1.05); }
    1.5%  { opacity: 1; transform: scale(1.05); }
    9%    { opacity: 1; transform: scale(1); }
    11%   { opacity: 0; transform: scale(1); }
    100%  { opacity: 0; transform: scale(1.05); }
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(120, 190, 32, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 190, 32, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 10%, transparent 80%);
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

/* ─── Page Glows ─────────────────────────────────────────────── */
.page-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.page-glow--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(120, 190, 32, 0.22), transparent 70%);
    filter: blur(60px);
    top: -250px; right: -150px;
    animation: glowFloat 8s ease-in-out infinite;
}

.page-glow--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent 70%);
    filter: blur(60px);
    bottom: -150px; left: -100px;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

.page-glow--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(120, 190, 32, 0.12), transparent 70%);
    filter: blur(50px);
    top: 30%; left: 10%;
    animation: glowFloat 12s ease-in-out infinite;
}

.page-glow--4 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(120, 190, 32, 0.15), transparent 70%);
    filter: blur(60px);
    top: -100px; left: -200px;
}

.page-glow--5 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.12), transparent 70%);
    filter: blur(60px);
    bottom: -100px; right: -100px;
}

.page-glow--6 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(120, 190, 32, 0.18), transparent 70%);
    filter: blur(60px);
    top: -200px; left: 50%;
    transform: translateX(-50%);
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-15px, 10px); }
}

/* ─── Badge ──────────────────────────────────────────────────── */
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.45);
    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: 24px;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .page-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);
}

.page-badge svg { opacity: 0.6; }

/* ─── Titles ─────────────────────────────────────────────────── */
.page-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

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

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

/* ─── Section Glass ──────────────────────────────────────────── */
.section-glass {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-glass--alt {
    background: rgba(120, 190, 32, 0.03);
}

.section-glass--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(120, 190, 32, 0.06), transparent 70%);
    pointer-events: none;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 48px;
}

.section-header-left .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.25);
    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.3);
}

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

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

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

/* ─── Service Stats Row ──────────────────────────────────────── */
.service-stats {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

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

.stat-pill {
    padding: 24px;
    text-align: center;
    background: var(--surface);
    backdrop-filter: saturate(180%) var(--blur);
    -webkit-backdrop-filter: saturate(180%) var(--blur);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--ease-apple);
}

.stat-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 0 20px rgba(120, 190, 32, 0.08);
}

.stat-pill-num {
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-pill-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ─── Bento Service Grid ─────────────────────────────────────── */
.bento-service {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 14px;
}

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

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

.bento-s-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 190, 32, 0.25), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-s-card:hover::after { opacity: 1; }

.bento-s-card--large {
    grid-row: span 2;
    padding: 40px;
}

.bento-s-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(120, 190, 32, 0.25);
    animation: iconBreath 4s ease-in-out infinite;
}

@keyframes iconBreath {
    0%, 100% { box-shadow: 0 4px 20px rgba(120, 190, 32, 0.25); }
    50% { box-shadow: 0 4px 28px rgba(120, 190, 32, 0.4); }
}

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

.bento-s-card--large h3 { font-size: 24px; }

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

.bento-s-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

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

.bento-s-tags span:hover {
    background: rgba(120, 190, 32, 0.12);
    border-color: rgba(120, 190, 32, 0.30);
    transform: translateY(-1px);
}

[data-theme="dark"] .bento-s-tags span {
    background: rgba(120, 190, 32, 0.10);
    border-color: rgba(120, 190, 32, 0.20);
    box-shadow: none;
}

/* ─── Process Grid ───────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.process-step {
    padding: 32px;
    position: relative;
    transition: all 0.4s var(--ease-apple);
    background: var(--surface);
    backdrop-filter: saturate(180%) var(--blur);
    -webkit-backdrop-filter: saturate(180%) var(--blur);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-step:hover {
    transform: translateY(-4px);
    background: var(--surface-hover);
    border-color: var(--surface-border-hover);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 0 20px rgba(120, 190, 32, 0.06);
}

.process-step:hover .process-num {
    transform: scale(1.1);
}

.process-num {
    display: block;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    transition: transform 0.4s var(--ease-apple);
}

.process-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Tech Cloud ─────────────────────────────────────────────── */
.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-pill {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 980px;
    cursor: default;
    transition: all 0.3s var(--ease-apple);
    background: var(--surface);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border: 1px solid var(--surface-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tech-pill:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 0 20px rgba(120, 190, 32, 0.12);
    border-color: rgba(120, 190, 32, 0.25);
    color: var(--gradient-start);
}

/* ─── Why Us Grid ────────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.why-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-list li:last-child { border-bottom: none; }

.why-list strong {
    font-size: 16px;
    color: var(--text-primary);
}

.why-list span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Code Card */
.why-code-card {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

.code-dots {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--surface-border);
}

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

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #febc2e; }
.code-dots span:nth-child(3) { background: #28c840; }

.why-code-card pre {
    padding: 24px;
    margin: 0;
    background: #0a0a0c;
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
}

.why-code-card code {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
    color: #e4e4e7;
}

.c-kw { color: #c678dd; }
.c-fn { color: #61afef; }
.c-prop { color: #e06c75; }
.c-str { color: #98c379; }

/* ─── CTA Glass ──────────────────────────────────────────────── */
.page-cta {
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-cta--glass {
    background: rgba(120, 190, 32, 0.03);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--surface);
    backdrop-filter: saturate(200%) blur(20px);
    -webkit-backdrop-filter: saturate(200%) blur(20px);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

/* Legacy CTA support */
.page-cta > .container > h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-cta > .container > p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ─── Image Showcase ─────────────────────────────────────────── */
.img-showcase {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--surface-border);
    background: var(--surface);
    backdrop-filter: saturate(180%) var(--blur-light);
    -webkit-backdrop-filter: saturate(180%) var(--blur-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    margin: 32px 0;
    transition: box-shadow 0.4s var(--ease-apple), border-color 0.4s var(--ease-apple);
}

.img-showcase.revealed {
    transition: box-shadow 0.4s var(--ease-apple), border-color 0.4s var(--ease-apple), transform 0.4s var(--ease-apple);
}

.img-showcase:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(120, 190, 32, 0.08);
    transform: translateY(-3px);
    border-color: rgba(120, 190, 32, 0.2);
}

.img-showcase img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-apple);
}

.img-showcase:hover img {
    transform: scale(1.03);
}

.img-showcase img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-showcase:hover img::after {
    opacity: 1;
}

.img-showcase-caption {
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--surface);
    backdrop-filter: saturate(180%) var(--blur-light);
    border-top: 1px solid var(--surface-border);
}

.img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

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

.img-gallery .img-showcase {
    margin: 0;
}

@media (max-width: 768px) {
    .img-gallery, .img-gallery--3 { grid-template-columns: 1fr; }
}

/* ─── Page Content (legal, simple pages) ─────────────────────── */
.page-content {
    padding: 60px 0 120px;
}

.page-content .container { max-width: 800px; }

.page-content h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin: 48px 0 16px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 12px;
}

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

.page-content ul, .page-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

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

.page-content strong { color: var(--text-primary); font-weight: 600; }

.page-content a {
    color: var(--gradient-start);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.page-content a:hover { border-bottom-color: var(--gradient-start); }

/* ─── Features Grid (legacy) ─────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 40px 0;
}

.feature-card {
    background: var(--surface);
    backdrop-filter: saturate(180%) var(--blur);
    -webkit-backdrop-filter: saturate(180%) var(--blur);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all var(--duration) var(--ease-apple);
}

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

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ─── Dark Mode ──────────────────────────────────────────────── */
[data-theme="dark"] .feature-card:hover,
[data-theme="dark"] .bento-s-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(120, 190, 32, 0.06);
}

[data-theme="dark"] .why-code-card {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .bento-s-tags span {
    background: rgba(120, 190, 32, 0.12);
    border-color: rgba(120, 190, 32, 0.2);
}

[data-theme="dark"] .tech-pill:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(120, 190, 32, 0.15);
}

[data-theme="dark"] .page-glow--1 { opacity: 0.6; }
[data-theme="dark"] .page-glow--2 { opacity: 0.4; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .bento-service { grid-template-columns: 1fr 1fr; }
    .bento-s-card--large { grid-row: span 1; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bento-service { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .page-hero--rich { padding: 110px 16px 40px; min-height: auto; }
    .section-glass { padding: 40px 0; }
    .page-content { padding: 32px 0 60px; }
    .cta-card { padding: 32px 20px; }
    .page-hero { padding: 100px 16px 32px; }
    .page-title { font-size: 28px !important; letter-spacing: -1px; }
    .page-subtitle { font-size: 15px; }
    .process-step { padding: 20px; }
    .bento-s-card { padding: 20px; }
    .upload-zone { padding: 24px; }
    .msg-bubble.mine { margin-left: 16px; }
    .msg-bubble.other { margin-right: 16px; }
    .img-showcase { margin: 16px 0; }
    .page-glow { display: none; }
}

@media (max-width: 480px) {
    .page-hero-cta { flex-direction: column; align-items: center; }
    .page-hero-cta .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .stats-row { grid-template-columns: 1fr; gap: 8px; }
    .stat-pill { padding: 16px; }
    .stat-pill-num { font-size: 24px; }
    .section-glass { padding: 24px 0; }
    .tech-cloud { gap: 6px; }
    .tech-pill { padding: 8px 16px; font-size: 12px; }
    .cta-card { padding: 24px 16px; }
    .cta-card h2 { font-size: 22px; }
    .photo-thumb { width: 60px; height: 60px; }
}