/* ═══════════════════════════════════════════════════════
   SAURABH VERMA — Digital Marketing Strategist
   Portfolio CSS
   ═══════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:       #08080f;
  --bg2:      #0e0e1a;
  --bg3:      #13131f;
  --border:   rgba(255,255,255,.07);
  --purple:   #7c3aed;
  --purple-l: #a78bfa;
  --gold:     #f59e0b;
  --gold-l:   #fcd34d;
  --green:    #10b981;
  --text:     #e2e8f0;
  --muted:    #8892a4;
  --card-bg:  #0f0f1c;
  --radius:   14px;
  --shadow:   0 4px 32px rgba(0,0,0,.5);
  --trans:    .2s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--purple-l); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

/* ── Utility ───────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 5rem 0; }
.sec-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--purple-l);
  margin-bottom: .6rem;
}
.sec-title { margin-bottom: .6rem; }
.sec-sub { color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; }
.tag {
  display: inline-block;
  padding: .2rem .7rem; border-radius: 20px; font-size: .72rem; font-weight: 600;
  background: rgba(124,58,237,.12); color: var(--purple-l);
  border: 1px solid rgba(124,58,237,.25);
}
.badge-gold {
  background: rgba(245,158,11,.12); color: var(--gold);
  border: 1px solid rgba(245,158,11,.25);
}
.badge-green {
  background: rgba(16,185,129,.12); color: var(--green);
  border: 1px solid rgba(16,185,129,.2);
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: 8px; font-size: .9rem;
  font-weight: 600; cursor: pointer; transition: all var(--trans);
  border: none; text-decoration: none;
}
.btn-primary {
  background: var(--purple); color: #fff;
}
.btn-primary:hover { background: #6d28d9; color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--purple-l); color: var(--purple-l); }
.divider {
  height: 1px; background: var(--border); margin: 0;
}

/* ── NAV ───────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 1.5rem; max-width: 1140px; margin: 0 auto;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-l), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  color: var(--muted); font-size: .875rem; font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  padding: .45rem 1.1rem !important; font-size: .82rem !important;
}
.nav-toggle {
  display: none; cursor: pointer; background: none; border: none;
  color: var(--text); font-size: 1.4rem;
}
@media(max-width:768px){
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: .6rem;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg2); padding: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 90vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,.12) 0%, transparent 70%),
              var(--bg);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}
#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='%237c3aed' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center; position: relative;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.2rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
  50%  { box-shadow: 0 0 0 7px rgba(16,185,129,.06); }
}
.hero-eyebrow span { font-size: .8rem; color: var(--green); font-weight: 600; letter-spacing: .05em; }
.hero-name {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--purple-l) 80%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
}
.hero-title {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted); font-weight: 400; margin-bottom: 1.4rem;
}
.hero-title strong { color: var(--gold); font-weight: 600; }
.hero-bio {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
  max-width: 540px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-l), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-lbl { font-size: .78rem; color: var(--muted); margin-top: .1rem; }

/* Photo */
.hero-photo-wrap {
  position: relative; flex-shrink: 0;
}
.hero-photo-ring {
  width: 320px; height: 380px;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  box-shadow: 0 8px 60px rgba(124,58,237,.35);
}
.hero-photo-ring img {
  width: 100%; height: 100%;
  border-radius: 22px; object-fit: cover; object-position: center top;
}
.hero-photo-badge {
  position: absolute; bottom: -12px; left: -12px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: .6rem 1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem;
}
.hero-photo-badge-icon { font-size: 1.4rem; }
.hero-photo-badge-text { font-size: .72rem; line-height: 1.4; }
.hero-photo-badge-text strong { color: var(--gold); display: block; font-size: .85rem; }

@media(max-width:900px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: flex; justify-content: center; order: -1; }
  .hero-photo-ring { width: 220px; height: 260px; }
}

/* ── ABOUT ─────────────────────────────────────────────── */
#about { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-achievements {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.achievement-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  transition: border-color var(--trans);
}
.achievement-card:hover { border-color: rgba(124,58,237,.4); }
.achievement-card h4 { color: var(--purple-l); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .4rem; }
.achievement-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; margin: 0; }
@media(max-width:768px){ .about-grid { grid-template-columns: 1fr; } }

/* ── EXPERTISE ─────────────────────────────────────────── */
#expertise { background: var(--bg); }
.expertise-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.expertise-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  transition: all var(--trans);
  position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--purple), var(--gold));
  opacity: 0; transition: opacity var(--trans);
}
.expertise-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124,58,237,.15); }
.expertise-card:hover::before { opacity: 1; }
.expertise-icon {
  font-size: 2rem; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(124,58,237,.12); border-radius: 12px;
}
.expertise-card h3 { color: var(--text); margin-bottom: .6rem; font-size: 1rem; }
.expertise-card p { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 0; }

/* ── JOURNEY ───────────────────────────────────────────── */
#journey { background: var(--bg2); }
.journey-list {
  display: block; position: relative; padding-bottom: 1rem;
}
.journey-list::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--purple), transparent);
  z-index: 0;
}
.journey-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0 1.5rem; padding: 0 0 2rem 0;
  position: relative; align-items: start;
}
/* Each item after the first starts mid-way through the previous */
.journey-item + .journey-item {
  margin-top: -180px;
}
.journey-dot {
  grid-column: 2; grid-row: 1;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--bg3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: var(--purple-l);
  z-index: 1; transition: all var(--trans);
  justify-self: center; margin-top: 1.2rem;
}
.journey-item:hover .journey-dot {
  border-color: var(--purple); background: rgba(124,58,237,.15);
}
/* Odd items: card on LEFT */
.journey-item:nth-child(odd) .journey-card {
  grid-column: 1; grid-row: 1;
}
/* Even items: card on RIGHT */
.journey-item:nth-child(even) .journey-card {
  grid-column: 3; grid-row: 1;
}
.journey-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  transition: border-color var(--trans);
}
.journey-item:hover .journey-card { border-color: rgba(124,58,237,.3); }
.journey-role { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.journey-company {
  font-size: .8rem; color: var(--purple-l); font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: .8rem;
}
.journey-card ul { padding-left: 0; }
.journey-card li {
  font-size: .875rem; color: var(--muted); line-height: 1.7;
  padding: .2rem 0 .2rem 1.2rem; position: relative;
}
.journey-card li::before {
  content: '›'; position: absolute; left: 0; color: var(--purple-l); font-weight: 700;
}
/* Mobile: single column stack */
@media(max-width: 768px) {
  .journey-list::before { left: 20px; transform: none; }
  .journey-item { grid-template-columns: 42px 1fr; gap: 0 1rem; }
  .journey-item + .journey-item { margin-top: 0; }
  .journey-dot { grid-column: 1; grid-row: 1; border-radius: 50%; margin-top: .8rem; }
  .journey-item:nth-child(odd) .journey-card,
  .journey-item:nth-child(even) .journey-card { grid-column: 2; grid-row: 1; }
}

/* ── CASE STUDIES ──────────────────────────────────────── */
#case-studies { background: var(--bg); }
.cs-filter-bar {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem;
}
.cs-filter {
  padding: .35rem .9rem; border-radius: 20px; font-size: .78rem;
  font-weight: 600; cursor: pointer; transition: all var(--trans);
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--muted);
}
.cs-filter:hover, .cs-filter.active {
  background: rgba(124,58,237,.15); border-color: var(--purple-l);
  color: var(--purple-l);
}
.cs-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.cs-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--trans);
}
.cs-card:hover { border-color: rgba(124,58,237,.3); }
.cs-header {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem; cursor: pointer;
  user-select: none;
}
.cs-header:hover .cs-title { color: var(--purple-l); }
.cs-hl { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }
.cs-icon {
  font-size: 1.5rem; flex-shrink: 0; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: rgba(124,58,237,.12);
}
.cs-num { font-size: .7rem; color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .2rem; }
.cs-title { font-size: 1rem; font-weight: 700; color: var(--text); transition: color var(--trans); }
.cs-meta { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.cs-hr { display: flex; align-items: center; gap: 1rem; margin-left: auto; flex-shrink: 0; }
.cs-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.cs-arrow { color: var(--muted); font-size: .85rem; transition: transform .25s ease; flex-shrink: 0; }
.cs-body {
  display: none; padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  animation: fadeIn .2s ease;
}
.cs-body.open { display: block; }
.cs-overview {
  color: var(--muted); font-size: .9rem; line-height: 1.8;
  padding: 1rem 0 1.2rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.2rem;
}
.cs-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 1.5rem;
}
.cs-cols h4 { color: var(--purple-l); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .7rem; }
.cs-cols ul { display: flex; flex-direction: column; gap: .4rem; }
.cs-cols li { font-size: .875rem; color: var(--muted); padding-left: 1.1rem; position: relative; line-height: 1.6; }
.cs-cols li::before { content: '›'; position: absolute; left: 0; color: var(--purple-l); }
.metrics-row {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem;
}
.metric {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: .8rem 1.2rem; text-align: center;
  min-width: 100px;
}
.metric-num { font-size: 1.3rem; font-weight: 800; color: var(--purple-l); }
.metric-lbl { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
.proof-section { margin-top: .5rem; }
.proof-label { font-size: .78rem; color: var(--gold); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.proof-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.proof-item img { width: 100%; border-radius: 8px; }
.proof-table-wrap { overflow-x: auto; }
.data-table-wrap { font-size: .82rem; }
.data-table-wrap h4 { margin-bottom: .5rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: rgba(124,58,237,.15); color: var(--purple-l);
  padding: .5rem .7rem; text-align: left; font-size: .75rem;
  font-weight: 700; letter-spacing: .04em;
}
.data-table td { padding: .5rem .7rem; border-bottom: 1px solid var(--border); color: var(--muted); font-size: .82rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td.pos { color: var(--green); font-weight: 600; }
.table-footnote { font-size: .72rem; color: var(--muted); font-style: italic; margin-top: .5rem; }
@media(max-width:640px){
  .cs-cols { grid-template-columns: 1fr; }
  .cs-hr { display: none; }
  .proof-grid { grid-template-columns: 1fr !important; }
  .proof-table-wrap { grid-column: auto !important; }
}

/* ── PROJECTS ──────────────────────────────────────────── */
#projects { background: var(--bg2); }
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.project-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  transition: all var(--trans);
}
.project-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-2px); }
.project-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem; opacity: .6;
}
.project-card h3 { color: var(--text); margin-bottom: .6rem; font-size: 1.05rem; }
.project-card p { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 0; }


/* ── CONSULTING (redesigned) ────────────────────────────────────────────────── */
#consulting { background: var(--bg); }

/* Logo Slider */
.logo-slider-wrap {
  position: relative; overflow: hidden;
  margin-bottom: 2.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-slider-wrap::before,
.logo-slider-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.logo-slider-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logo-slider-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.logo-slider {
  display: flex; gap: 2rem; align-items: center;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}
.logo-slider:hover { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-slide {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: .6rem 1rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; min-width: 110px; height: 60px;
  transition: border-color var(--trans);
}
.logo-slide:hover { border-color: rgba(124,58,237,.4); }
.logo-slide img { max-height: 40px; max-width: 100px; object-fit: contain; }
.logo-text-fallback { font-size: .72rem; color: var(--muted); font-weight: 600; }

/* Tabbed consulting brands */
.ct-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.2rem;
}
.ct-tab {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 50px; cursor: pointer; color: var(--muted);
  font-size: .75rem; font-weight: 600; font-family: inherit;
  transition: border-color var(--trans), color var(--trans), background var(--trans);
  white-space: nowrap;
}
.ct-tab:hover {
  border-color: rgba(124,58,237,.4); color: var(--text);
}
.ct-tab-active {
  background: rgba(124,58,237,.15);
  border-color: var(--purple);
  color: var(--purple-l);
}
.ct-tab-logo {
  height: 20px; max-width: 52px;
  object-fit: contain; border-radius: 3px;
  filter: grayscale(0.3);
}
.ct-tab-active .ct-tab-logo { filter: none; }

/* Single content panel */
.ct-panels { position: relative; }
.ct-panel { display: none; animation: fadeIn .22s ease; }
.ct-panel-active { display: block; }
.ct-panel-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.ct-panel-logo {
  height: 36px; max-width: 90px; object-fit: contain;
  background: rgba(255,255,255,.05); border-radius: 6px; padding: .25rem .4rem;
  flex-shrink: 0;
}
.ct-panel-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.ct-panel-meta { font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.ct-panel-bullets {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 1.4rem 1.3rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.ct-panel-bullets li {
  font-size: .875rem; color: var(--muted); line-height: 1.65;
  padding-left: 1.2rem; position: relative;
}
.ct-panel-bullets li::before { content: '›'; position: absolute; left: 0; color: var(--purple-l); font-weight: 700; }

@media(max-width:600px){
  .ct-tab { padding: .4rem .65rem; font-size: .7rem; }
  .ct-tab-logo { height: 22px; max-width: 60px; }
}

/* ── CONTACT ───────────────────────────────────────────── */
#contact {
  background: var(--bg2);
  text-align: center;
}
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-tagline {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800; margin-bottom: 1rem;
}
.contact-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.7; }
.contact-cards {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-bottom: 2rem;
}
.contact-card {
  flex: 0 1 calc(33.333% - 0.7rem); min-width: 150px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  text-align: center; transition: all var(--trans);
}
.contact-card:hover { border-color: var(--purple-l); transform: translateY(-2px); }
.contact-card-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.contact-card-label { font-size: .72rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.contact-card-val { font-size: .88rem; color: var(--text); font-weight: 500; word-break: break-all; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--muted); font-size: .82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); font-size: .82rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--text); }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────── */
@media(max-width:640px){
  .hero-stats { gap: 1.2rem; }
  .nav-links { gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-photo-badge { left: 0; bottom: -8px; font-size: .78rem; }
  .hero-photo-ring { width: 200px; height: 240px; }
}
