/* ============================================================
   ConvertEasy — Global Stylesheet
   ============================================================ */

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

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

:root {
  --brand:       #2563EB;
  --brand-dark:  #1D4ED8;
  --brand-light: #EFF6FF;
  --accent:      #F59E0B;
  --danger:      #EF4444;
  --success:     #10B981;
  --text:        #111827;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --bg:          #F9FAFB;
  --white:       #FFFFFF;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --font-body:   'Inter', sans-serif;
  --font-display:'Sora', sans-serif;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
main { flex: 1; }

/* ── Header / Nav ───────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.logo svg { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand);
  background: var(--brand-light);
}

.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); display: block; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
}
.mobile-nav a:hover { background: var(--brand-light); color: var(--brand); }
.mobile-nav.open { display: flex; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 55%, #0ea5e9 100%);
  padding: 72px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 580px;
  margin: 0 auto 36px;
  opacity: .88;
}
.hero-search {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .98rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.hero-search button {
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: .92rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.hero-search button:hover { background: var(--brand-dark); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); }
.hero-stats .stat span { font-size: .85rem; opacity: .7; }

/* ── Section ────────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 500px;
}

/* ── Category Tabs ──────────────────────────────────────────── */
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ── Tool Grid / Cards ──────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.tool-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.tool-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: var(--text);
}
.tool-card:hover::before { transform: scaleX(1); }

.tool-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.tool-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.tool-card p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Icon color themes */
.ic-red    { background: #FEF2F2; }
.ic-blue   { background: #EFF6FF; }
.ic-green  { background: #ECFDF5; }
.ic-purple { background: #F5F3FF; }
.ic-orange { background: #FFF7ED; }
.ic-pink   { background: #FDF2F8; }
.ic-teal   { background: #F0FDFA; }
.ic-yellow { background: #FEFCE8; }

/* ── Drop Zone ──────────────────────────────────────────────── */
.drop-zone {
  border: 2.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.drop-zone.dragover, .drop-zone:hover {
  border-color: var(--brand);
  background: var(--brand-light);
}
.drop-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.drop-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.drop-zone h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.drop-zone p { color: var(--text-muted); font-size: .9rem; }
.drop-zone .btn { margin-top: 20px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,.4); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #dc2626; }
.btn-success { background: var(--success); color: var(--white); }
.btn-success:hover { background: #059669; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: 8px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Progress Bar ───────────────────────────────────────────── */
.progress-wrap { margin: 24px 0; display: none; }
.progress-wrap.show { display: block; }
.progress-label { font-size: .85rem; color: var(--text-muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.progress-bar { height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), #60a5fa);
  border-radius: 50px;
  width: 0;
  transition: width .4s ease;
}

/* ── File List ──────────────────────────────────────────────── */
.file-list { margin-top: 24px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: .9rem;
}
.file-item .file-name { flex: 1; font-weight: 500; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item .file-size { color: var(--text-muted); font-size: .8rem; white-space: nowrap; }
.file-item .remove-btn {
  background: none; border: none; cursor: pointer;
  color: var(--danger); font-size: 1.1rem; line-height: 1; padding: 2px 6px;
}
.file-item .handle { cursor: grab; color: var(--text-muted); font-size: 1.1rem; }

/* ── Tool Page Layout ───────────────────────────────────────── */
.tool-page { padding: 48px 0 72px; }
.tool-page-header { margin-bottom: 36px; }
.tool-page-header .breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; }
.tool-page-header .breadcrumb a { color: var(--text-muted); }
.tool-page-header .breadcrumb a:hover { color: var(--brand); }
.tool-page-header h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.tool-page-header p { color: var(--text-muted); max-width: 560px; }

.tool-workspace {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.options-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}
.options-panel h3 { font-size: .9rem; font-weight: 700; margin-bottom: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.option-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.option-row label { font-size: .9rem; font-weight: 500; min-width: 140px; }
.option-row select, .option-row input[type=number], .option-row input[type=range] {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .9rem;
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.option-row select:focus, .option-row input:focus { border-color: var(--brand); }
.option-row input[type=range] { padding: 0; width: 140px; accent-color: var(--brand); }

/* ── Result Area ────────────────────────────────────────────── */
.result-area {
  display: none;
  padding: 24px;
  background: #ECFDF5;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius);
  margin-top: 24px;
  text-align: center;
}
.result-area.show { display: block; }
.result-area h3 { color: #065F46; font-size: 1.1rem; margin-bottom: 6px; }
.result-area p { color: #047857; font-size: .9rem; margin-bottom: 16px; }

/* ── Alert ──────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  margin: 16px 0;
  display: none;
}
.alert.show { display: flex; align-items: center; gap: 10px; }
.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-info  { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* ── How It Works ───────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.how-step { text-align: center; padding: 24px 16px; }
.step-num {
  width: 48px; height: 48px;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.how-step p { font-size: .87rem; color: var(--text-muted); }

/* ── Features Strip ─────────────────────────────────────────── */
.features-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
}
.feat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .87rem;
  font-weight: 500;
}
.feat-badge span { font-size: 1.1rem; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  gap: 16px;
  user-select: none;
}
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--brand); flex-shrink: 0; font-weight: 700; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #111827;
  color: #D1D5DB;
  padding: 56px 0 32px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: #9CA3AF; }
footer h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: .92rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #9CA3AF; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .83rem;
  color: #6B7280;
}
.footer-bottom a { color: #6B7280; }
.footer-bottom a:hover { color: var(--white); }

/* ── Ads placeholder ────────────────────────────────────────── */
.ad-slot {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  min-height: 90px;
  margin: 24px 0;
}
.ad-slot-leaderboard { min-height: 90px; }
.ad-slot-rectangle  { min-height: 250px; max-width: 336px; }

/* ── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111827;
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 9999;
  font-size: .88rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,.3);
}
.cookie-banner a { color: #93C5FD; }
.cookie-banner .btn { flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ── Tooltip ────────────────────────────────────────────────── */
[data-tip] { position: relative; cursor: help; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: #111827;
  color: var(--white);
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 100;
}
[data-tip]:hover::after { opacity: 1; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast-wrap { position: fixed; top: 80px; right: 20px; z-index: 9998; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: #111827;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .88rem;
  box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease;
  max-width: 300px;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .tools-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .tool-workspace { padding: 20px; }
  .hero-stats { gap: 24px; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .option-row label { min-width: auto; }
}
@media (max-width: 420px) {
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 48px 0 60px; }
  .hero-search { flex-direction: column; border-radius: var(--radius); padding: 12px; gap: 8px; }
  .hero-search button { width: 100%; justify-content: center; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-blue { background: var(--brand-light); color: var(--brand); }
.badge-green { background: #ECFDF5; color: #065F46; }
.badge-red { background: #FEF2F2; color: #991B1B; }
.hidden { display: none !important; }

/* ── Page: static pages ─────────────────────────────────────── */
.static-page { padding: 56px 0 80px; max-width: 760px; }
.static-page h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.static-page .meta { color: var(--text-muted); font-size: .85rem; margin-bottom: 36px; }
.static-page h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 10px; }
.static-page p { color: #374151; line-height: 1.8; margin-bottom: 14px; }
.static-page ul { color: #374151; line-height: 1.8; padding-left: 22px; margin-bottom: 14px; }

/* ── Loader overlay ─────────────────────────────────────────── */
.processing-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.processing-overlay.show { display: flex; }
.processing-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.processing-box p { font-size: .88rem; color: var(--text-muted); }

/* ── Page-specific: About ────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 32px; }
.team-card { text-align: center; padding: 28px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--brand-light); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.team-card h3 { font-weight: 700; margin-bottom: 4px; }
.team-card p { color: var(--text-muted); font-size: .85rem; }
