/* =============================================
   Visentio v2 — Modern Redesign
   ============================================= */

/* --- Design Tokens --- */
:root {
    --primary-teal: #00B294;
    --secondary-teal: #008080;
    --soft-coral: #FF7F7F;
    --graphite-gray: #4A4A4A;
    --pale-mint: #E8F5F5;
    --white: #fff;
    --dark-background: #0f1f1e;
    --dark-surface: #162b2a;

    /* Default = dark */
    --bg: var(--dark-background);
    --surface: var(--dark-surface);
    --text-primary: var(--primary-teal);
    --text-body: rgba(255,255,255,0.85);
    --text-heading: var(--white);
    --glass-bg: rgba(15,31,30,0.72);
    --glass-border: rgba(0,178,148,0.12);
    --glass-hover: rgba(0,178,148,0.18);
    --card-bg: rgba(22,43,42,0.65);
    --shadow: rgba(0,0,0,0.35);
    --nav-height: 72px;
}

/* Light tokens — single source of truth.
   The inline <head> script sets data-theme before first paint,
   so there is no need for a @media (prefers-color-scheme: light) duplicate. */
[data-theme="light"] {
    --bg: #f0faf8;
    --surface: var(--white);
    --text-primary: var(--secondary-teal);
    --text-body: var(--graphite-gray);
    --text-heading: #1a3a38;
    --glass-bg: rgba(255,255,255,0.72);
    --glass-border: rgba(0,128,128,0.12);
    --glass-hover: rgba(0,128,128,0.10);
    --card-bg: rgba(255,255,255,0.70);
    --shadow: rgba(0,80,70,0.08);
}

[data-theme="dark"] {
    --bg: var(--dark-background);
    --surface: var(--dark-surface);
    --text-primary: var(--primary-teal);
    --text-body: rgba(255,255,255,0.85);
    --text-heading: var(--white);
    --glass-bg: rgba(15,31,30,0.72);
    --glass-border: rgba(0,178,148,0.12);
    --glass-hover: rgba(0,178,148,0.18);
    --card-bg: rgba(22,43,42,0.65);
    --shadow: rgba(0,0,0,0.35);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--bg);
    min-height: 100vh;
    transition: background-color 0.4s ease, color 0.4s ease;
    -webkit-font-smoothing: antialiased;
}

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--primary-teal);
    color: var(--dark-background);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 3px;
}

/* --- Background Mesh --- */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0,178,148,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,128,128,0.06) 0%, transparent 70%);
    transition: opacity 0.4s;
}

[data-theme="light"] .bg-mesh {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0,178,148,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,128,128,0.05) 0%, transparent 70%);
}

/* --- Sticky Nav --- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 clamp(1rem, 4vw, 3rem);
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid var(--glass-border);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: 0 2px 24px var(--shadow);
}

.nav-logo img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0,178,148,0.25));
    transition: filter 0.3s;
}
.nav-logo img:hover { filter: drop-shadow(0 0 10px rgba(0,178,148,0.4)); }

/* Center nav links */
.nav-center {
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 1rem;
    border-radius: 24px;
    transition: background 0.25s, color 0.25s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--glass-hover);
    color: var(--primary-teal);
}

/* Right side: lang + theme + hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Theme toggle */
.theme-btn {
    background: var(--glass-hover);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.theme-btn:hover { background: var(--primary-teal); color: var(--dark-background); }

/* Language switch */
.lang-switch {
    display: flex;
    gap: 2px;
    background: var(--glass-hover);
    border-radius: 24px;
    padding: 3px;
}
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-body);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    transition: all 0.2s;
}
.lang-btn:hover { color: var(--primary-teal); }
.lang-btn.active {
    background: var(--primary-teal);
    color: var(--dark-background);
}

/* Hidden by default — shown only inside mobile overlay */
.nav-center .lang-switch { display: none; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    order: 3;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 5vw, 4rem) 4rem;
    overflow: hidden;
}

.hero-logo {
    width: min(75vw, 520px);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0,178,148,0.2));
    animation: fadeInScale 0.8s ease-out both;
}

.hero h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    background: linear-gradient(135deg, var(--primary-teal), #66ddcc, var(--primary-teal));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite, fadeInUp 0.8s 0.15s ease-out both;
}

.hero p {
    max-width: 600px;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin: 1.25rem auto 2.25rem;
    color: var(--text-body);
    animation: fadeInUp 0.8s 0.3s ease-out both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-teal);
    color: var(--dark-background);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 32px;
    box-shadow: 0 4px 20px rgba(0,178,148,0.3);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    animation: fadeInUp 0.8s 0.45s ease-out both;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,178,148,0.4);
    background: #00c9a7;
}
.hero-cta svg { width: 18px; height: 18px; }

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
    color: var(--text-primary);
    opacity: 0.5;
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem clamp(1.5rem, 5vw, 3rem);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
}
#about .section-title { text-align: center; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: center;
}
.section-subtitle a,
.section-subtitle a:visited {
    color: var(--primary-teal);
    text-decoration: none;
    transition: opacity 0.2s;
}
.section-subtitle a:hover { opacity: 0.75; text-decoration: underline; }

/* --- Numbers Strip --- */
.numbers-strip {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 5rem);
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.number-item {
    text-align: center;
}
.number-value {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.1;
}
.number-label {
    font-size: 0.85rem;
    color: var(--text-body);
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* --- Trust / Logo Wall --- */
.trust-section {
    padding: 2rem 0 3rem;
    text-align: center;
}
.trust-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-body);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}
.trust-group {
    margin-bottom: 2rem;
}
.trust-group-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-body);
    opacity: 0.4;
    margin-bottom: 0.75rem;
}
.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
}
.trust-logos span {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 600;
    color: var(--text-body);
    opacity: 0.45;
    transition: opacity 0.25s;
    white-space: nowrap;
}
.trust-logos span:hover {
    opacity: 0.8;
}

/* --- Service Cards --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow);
    border-color: var(--primary-teal);
}

.card h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* --- Contact Section --- */
.contact-section {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 1.5rem);
    max-width: 1100px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.contact-email {
    text-align: center;
    margin-bottom: 3rem;
}
.contact-email a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-decoration: none;
    padding: 0.85rem 2rem;
    border: 2px solid var(--primary-teal);
    border-radius: 32px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.contact-email a:hover {
    background: var(--primary-teal);
    color: var(--dark-background);
    transform: translateY(-2px);
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.team-card {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary-teal);
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-teal);
    box-shadow: 0 4px 16px rgba(0,178,148,0.2);
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.82rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 0.9rem;
}

.team-card a {
    display: block;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}
.team-card a:hover { color: var(--primary-teal); }

.team-email-link {
    display: inline-block !important;
    margin-top: 0.5rem;
    padding: 0.2rem 0.2rem !important;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.75rem !important;
    transition: all 0.25s !important;
    max-width: 100%;
    overflow-wrap: break-word;
    text-align: center;
}
.team-email-link:hover {
    border-color: var(--primary-teal) !important;
    background: var(--glass-hover);
}

/* Company details */
.company-details {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}
.company-details h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}
.company-details p,
.company-details a {
    font-size: 0.9rem;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.7;
}
.company-details a:hover { color: var(--primary-teal); }
.company-details small {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    opacity: 0.7;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem clamp(1.5rem, 5vw, 3rem);
    max-width: 1100px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-teal); }

/* --- Content / Subpage Layout --- */
.page-hero {
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: 0.75rem;
    text-align: center;
}
.page-hero .hero-logo {
    animation: fadeInScale 0.6s ease-out both;
}

.content-card {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3.5rem);
}
.content-card h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}
.content-card h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 2rem 0 0.6rem;
}
.content-card p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}
.content-card a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: opacity 0.2s;
}
.content-card a:hover { opacity: 0.8; text-decoration: underline; }
.content-card small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.65;
    font-size: 0.82rem;
}

/* --- Vidra Page --- */
.vidra-hero-logo {
    width: min(45vw, 220px);
    height: auto;
    margin-bottom: 0.5rem;
    animation: fadeInScale 0.6s ease-out both;
}

.primary-install {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-teal);
    color: var(--dark-background) !important;
    padding: 0.85rem 2rem;
    border-radius: 32px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,178,148,0.3);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.primary-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,178,148,0.4);
    background: #00c9a7;
    color: var(--dark-background) !important;
    opacity: 1 !important;
}
.primary-install svg { width: 18px; height: 18px; }

.vidra-steps {
    margin-top: 2rem;
}
.vidra-steps h3 {
    margin-top: 2rem;
}
.vidra-steps ol {
    padding-left: 1.4rem;
    margin: 1rem 0;
}
.vidra-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.65;
}
.vidra-steps strong {
    color: var(--text-heading);
}

.vidra-about {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}
.vidra-about h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

/* --- Success Page --- */
.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .content-card { margin-left: 1rem; margin-right: 1rem; border-radius: 16px; }
    .page-hero { padding-top: calc(var(--nav-height) + 2rem); }
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-children > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 200% center; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .reveal-children > * { opacity: 1; transform: none; }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .site-nav {
        grid-template-columns: auto 1fr auto;
    }

    .hamburger { display: flex; }

    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
        transition: right 0.35s ease;
        z-index: 105;
    }
    .nav-center.open { right: 0; }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .nav-right .lang-switch { display: none; }
    .nav-center .lang-switch {
        display: flex;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--glass-border);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 104;
    }
    .mobile-overlay.open { display: block; }

    .hero { min-height: 90vh; padding-bottom: 3rem; }
    .hero-logo { width: min(80vw, 340px); }

    .cards-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-section { margin-left: 1rem; margin-right: 1rem; border-radius: 16px; }
    .section { padding-left: 1.5rem; padding-right: 1.5rem; }

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

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