/* ============================================
   AKSHYAT RAJ — Premium Portfolio Stylesheet
   Inspired by Cha Yuan's premium aesthetics
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* === TOKENS === */
:root {
  /* ── Elegant Light Palette ───────────────────────────────
     Warm Ivory × Vibrant Crimson Rose × Amber Gold
     ────────────────────────────────────────────────── */

  --bg-deep:    #fdf6ee;           /* warm ivory — main page bg    */
  --bg-dark:    #f5e8d8;           /* warm sand cream — sections   */
  --bg-mid:     #ede0cc;           /* deeper cream                 */
  --bg-glass:   rgba(225, 29, 72, 0.06);
  --bg-glass2:  rgba(225, 29, 72, 0.11);

  /* Accent hierarchy */
  --purple:     #e11d48;           /* deep crimson rose — primary  */
  --purple-lt:  #f43f5e;           /* bright rose — lighter        */
  --teal:       #d97706;           /* warm amber gold — secondary  */
  --teal-lt:    #f59e0b;           /* bright amber                 */
  --gold:       #c2410c;           /* rich terracotta — highlight  */
  --gold-lt:    #ea580c;           /* warm orange                  */

  --ivory:      #fffaf5;
  --ivory-dim:  #fde8d8;
  /* TEXT — dark for light backgrounds */
  --text:       #1c0a0e;           /* very dark warm brown         */
  --text-dim:   #6b2737;           /* deep rose-brown              */
  --text-dimmer:#9c4a5a;           /* muted rose                   */
  --border:     rgba(225, 29, 72, 0.16);
  --border-acc: rgba(225, 29, 72, 0.32);

  /* Gradients */
  --grad-main: linear-gradient(135deg, #e11d48 0%, #d97706 100%); /* Rose → Gold */
  --grad-gold: linear-gradient(to right, transparent, #e11d48, transparent);
  --grad-dark: linear-gradient(to bottom, #f5e8d8, #ede0cc);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --font-alt:     'Space Grotesk', sans-serif;

  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 8px 32px rgba(180, 60, 60, 0.12);
  --shadow-lg: 0 20px 60px rgba(180, 60, 60, 0.18);

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  /* ── Elegant Dark Palette ──────────────────────────────
     Deep Garnet × Crimson × Rose Gold × Amber
     ──────────────────────────────────────────────────────── */
  --bg-deep:    #160810;           /* deep garnet — warm dark rich  */
  --bg-dark:    #220d18;           /* rich burgundy                */
  --bg-mid:     #351624;           /* vibrant plum-red             */
  --bg-glass:   rgba(244, 63, 94, 0.10);
  --bg-glass2:  rgba(244, 63, 94, 0.18);

  --purple:     #f43f5e;           /* vibrant crimson-rose — primary  */
  --purple-lt:  #fda4af;           /* soft blush rose — light       */
  --teal:       #f59e0b;           /* warm amber gold — secondary   */
  --teal-lt:    #fde68a;           /* pale champagne gold           */
  --gold:       #fb923c;           /* coral-orange — highlight      */
  --gold-lt:    #fdba74;           /* light coral                   */

  --ivory:      #fff1f2;           /* rose-white                   */
  --ivory-dim:  #fce7f3;
  --text:       #fef2f2;           /* warm near-white — rose tint   */
  --text-dim:   #fda4af;           /* soft rose — secondary text   */
  --text-dimmer:#fb7185;           /* muted rose — tertiary        */
  --border:     rgba(244, 63, 94, 0.22);
  --border-acc: rgba(253, 164, 175, 0.42);

  --grad-main: linear-gradient(135deg, #f43f5e 0%, #f59e0b 100%);
  --grad-gold: linear-gradient(to right, transparent, #f43f5e, transparent);
  --grad-dark: linear-gradient(to bottom, #220d18, #351624);

  --shadow:    0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
}

/* ============================================================
   FEATURE: SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--grad-main);
  z-index: 10000;
  transition: width 0.1s ease-out;
  pointer-events: none;
}

/* ============================================================
   FEATURE: THEME TOGGLE BUTTON
   ============================================================ */
#theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
}
#theme-toggle:hover {
  color: var(--text);
  background: var(--bg-glass);
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ============================================================
   FEATURE: LOADING SPLASH SCREEN
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-logo {
  width: 90px;
  height: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(225,29,72,0.5));
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}
.loader-bar {
  width: 160px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--grad-main);
  border-radius: 99px;
  animation: loaderFill 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}
.loader-text {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}

/* ============================================================
   FEATURE: PAGE TRANSITION OVERLAY
   ============================================================ */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
#page-transition.slide-in  { animation: ptIn  0.35s cubic-bezier(0.76,0,0.24,1) forwards; }
#page-transition.slide-out { animation: ptOut 0.35s cubic-bezier(0.76,0,0.24,1) forwards; }
@keyframes ptIn  { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes ptOut { from { transform: scaleX(1); } to { transform: scaleX(0); transform-origin: right; } }

/* ============================================================
   FEATURE: TYPING ANIMATION
   ============================================================ */
.typed-role {
  color: var(--text);
  font-style: italic;
}
.typed-cursor {
  display: inline-block;
  color: var(--purple);
  font-weight: 300;
  animation: blink 0.85s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   FEATURE: SECTION HEADER (shared)
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   FEATURE: TESTIMONIALS
   ============================================================ */
.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-alt);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-dimmer);
}

/* ============================================================
   FEATURE: CERTIFICATIONS PAGE
   ============================================================ */
.cert-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cert-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-family: var(--font-alt);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}
.cert-card h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.cert-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.cert-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dimmer);
  font-family: var(--font-alt);
}
.cert-meta span { display: flex; align-items: center; gap: 5px; }
.cert-achievement {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--transition);
}
.cert-achievement:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.achieve-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.cert-achievement h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.cert-achievement p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.achieve-year {
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  background: var(--bg-glass2);
  padding: 4px 14px;
  border-radius: 50px;
}

/* ============================================================
   FEATURE: BLOG PAGE
   ============================================================ */
.blog-featured {
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,72,0.12), transparent 70%);
  pointer-events: none;
}
.blog-featured-tag {
  display: inline-block;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.blog-category {
  display: inline-block;
  background: rgba(225,29,72,0.12);
  color: var(--purple);
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dimmer);
  font-family: var(--font-alt);
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-thumb-lg {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass2);
  border: 1px solid var(--border-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--purple);
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 120px;
  background: linear-gradient(135deg, rgba(225,29,72,0.15), rgba(225,29,72,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--purple);
}
.blog-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-title-sm {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.blog-excerpt-sm {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}
.blog-readmore {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.blog-readmore:hover { background: var(--bg-glass); color: var(--purple-lt); }
.blog-coming-soon { opacity: 0.7; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* === TYPOGRAPHY === */
.font-display { font-family: var(--font-display); }
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text { color: var(--gold); }

/* Gold divider line */
.gold-line {
  height: 1px;
  background: var(--grad-gold);
  opacity: 0.5;
  margin: 0;
}

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  transition: left 0.1s, top 0.1s;
}

/* === NAVBAR === */
.navbar-portfolio {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar-portfolio.scrolled {
  background: color-mix(in srgb, var(--bg-deep) 95%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--border);
}
.navbar-portfolio .container-fluid {
  max-width: 1320px;
  margin: auto;
  width: 100%;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(244, 63, 94, 0.40));
  transition: var(--transition);
}
.navbar-brand:hover .brand-logo-img {
  filter: drop-shadow(0 4px 16px rgba(253, 164, 175, 0.65));
  transform: scale(1.04);
}

/* Nav links */
.navbar-nav { gap: 0; }
.nav-link {
  font-family: var(--font-alt);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text) !important;
  background: var(--bg-glass2);
}
.cta-nav {
  background: var(--grad-main) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 50px !important;
}
.cta-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.50);
}
.navbar-toggler {
  border: 1px solid var(--border) !important;
  padding: 6px 10px !important;
}
.navbar-toggler-icon {
  filter: none;
}

/* === EYEBROW LABEL === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* === BUTTONS === */
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font-alt);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(225, 29, 72,0.4);
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225, 29, 72,0.55);
  color: #fff;
}
.btn-grad:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-alt);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--purple);
  background: rgba(96, 150, 180,0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-alt);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 1px solid rgba(225, 29, 72,0.4);
  transition: var(--transition);
}
.btn-gold:hover {
  background: rgba(96, 150, 180,0.1);
  border-color: var(--gold);
  color: var(--gold-lt);
}

/* === GLASS CARD === */
.glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.glass:hover {
  border-color: var(--border-acc);
  background: var(--bg-glass2);
}

/* === SECTIONS === */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.section-subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-orb-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin: 20px 0 24px;
}
.hero-text .lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 420px;
}
.hero-card {
  width: 300px;
  height: 360px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass2);
  border: 1px solid var(--border-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.10), rgba(217, 119, 6, 0.06));
}
/* === HERO LOGO (replaces avatar text) === */
.hero-logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 28px rgba(225, 29, 72, 0.45));
  animation: logoBreath 4s ease-in-out infinite;
}
@keyframes logoBreath {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(225, 29, 72, 0.40)); }
  50%       { filter: drop-shadow(0 0 44px rgba(217, 119, 6, 0.65)); }
}
.orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.18), transparent 65%);
  animation: orbFloat 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -20px); }
  66% { transform: translate(-10px, 15px); }
}
.floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-acc);
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.12);
  animation: tagFloat 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
.floating-tag i { color: var(--purple); }
/* Tags positioned clearly outside the card edges */
.tag-1 { top: 10%;    right:  -10px; animation-delay: 0s;   transform: translateX(100%); }
.tag-2 { top: 50%;    left:   -10px; animation-delay: 1.5s; transform: translateX(-100%) translateY(-50%); }
.tag-3 { bottom: 12%; right:  -10px; animation-delay: 0.8s; transform: translateX(100%); }
@keyframes tagFloat {
  0%, 100% { transform: translateX(100%) translateY(0); }
  50%       { transform: translateX(100%) translateY(-8px); }
}
/* tag-2 floats differently (left side) */
.tag-2 { animation-name: tagFloatLeft; }
@keyframes tagFloatLeft {
  0%, 100% { transform: translateX(-100%) translateY(-50%); }
  50%       { transform: translateX(-100%) translateY(calc(-50% - 8px)); }
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72,0.15), transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.page-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 500px;
}

/* === SERVICE CARDS === */
.service-card {
  padding: 40px 32px;
  height: 100%;
}
.service-card .num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-dimmer);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.service-card .icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(225, 29, 72,0.14);
  border: 1px solid rgba(225, 29, 72,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple-lt);
  margin-bottom: 20px;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.service-card ul { padding: 0; }
.service-card ul li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* === PROJECT CARDS === */
.project-card {
  overflow: hidden;
  height: 100%;
}
.project-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(225, 29, 72,0.20), rgba(217, 119, 6,0.10));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--purple-lt);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-thumb::after { opacity: 0.15; }
.project-body { padding: 24px; }
.project-body h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.project-body p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.project-tag {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-lt);
  background: rgba(225, 29, 72,0.14);
  border: 1px solid rgba(225, 29, 72,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.project-links { display: flex; gap: 16px; }
.project-links a {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.project-links a:hover { color: var(--teal); }

/* === SKILL CARDS === */
.skill-card { padding: 28px 24px; }
.skill-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(217, 119, 6,0.25);
  border: 1px solid rgba(225, 29, 72,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 14px;
}
.skill-card h5 {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.skill-card .level {
  font-size: 0.75rem;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.skill-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-main);
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.profile-card {
  padding: 40px 28px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.avatar-xl {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(225, 29, 72,0.28);
}

/* === ABOUT PAGE LOGO AVATAR === */
.avatar-xl-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--bg-glass2);
  border: 2px solid var(--border-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 4px rgba(225, 29, 72,0.20), var(--shadow);
  overflow: hidden;
  padding: 18px;
  transition: var(--transition);
}
.avatar-xl-logo:hover {
  box-shadow: 0 0 0 6px rgba(244, 63, 94,0.35), var(--shadow-lg);
  transform: scale(1.03);
}
.profile-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(225, 29, 72, 0.5));
}

/* === CONTACT PAGE LOGO SHOWCASE === */
.logo-showcase-card {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--bg-glass2);
  border: 1px solid var(--border-acc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.logo-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(225, 29, 72, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.logo-glow-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--border-acc);
  background: rgba(217, 119, 6, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.08), 0 0 40px rgba(225, 29, 72, 0.20);
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.08), 0 0 40px rgba(225, 29, 72, 0.20); }
  50%       { box-shadow: 0 0 0 12px rgba(244, 63, 94, 0.14), 0 0 60px rgba(244, 63, 94, 0.30); }
}
.logo-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(244, 63, 94, 0.5));
}
.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.profile-meta {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.profile-meta .item { text-align: center; }
.profile-meta .k { font-size: 0.7rem; color: var(--text-dimmer); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.profile-meta .v { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.socials a:hover {
  border-color: var(--purple);
  color: var(--purple-lt);
  background: rgba(96, 150, 180,0.1);
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin: 12px 0 24px;
}
.about-content p { color: var(--text-dim); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }

/* === TIMELINE === */
.timeline { position: relative; padding: 32px 0; margin: 32px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}
.timeline-item {
  padding-left: 28px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(225, 29, 72,0.30);
}
.timeline-item .year {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.timeline-item h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-item p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

/* === CV PAGE === */
.cv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.cv-section { padding: 36px; margin-bottom: 24px; }
.cv-section h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.cv-section h4 i { color: var(--purple-lt); }
.cv-entry { display: grid; grid-template-columns: 160px 1fr; gap: 24px; margin-bottom: 24px; }
.cv-entry .when {
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  padding-top: 2px;
}
.cv-entry h6 {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.cv-entry .where { font-size: 0.82rem; color: var(--text-dimmer); margin-bottom: 8px; }
.cv-entry p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { padding: 40px 32px; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.75; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(225, 29, 72,0.14);
  border: 1px solid rgba(225, 29, 72,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple-lt);
  flex-shrink: 0;
}
.contact-item .meta small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 2px;
}
.contact-item .meta span { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.contact-form { padding: 40px 36px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(0,0,0,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  color: var(--text) !important;
  font-family: var(--font-body);
  font-size: 0.93rem;
  padding: 0.85rem 1.1rem;
  transition: var(--transition);
}
.form-control::placeholder { color: var(--text-dimmer) !important; }
.form-control:focus {
  outline: none !important;
  border-color: var(--purple) !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 72,0.20) !important;
  background: rgba(0,0,0,0.06) !important;
}
textarea.form-control { min-height: 140px; resize: vertical; }
.alert-success-portfolio {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(225, 29, 72,0.12);
  border: 1px solid rgba(225, 29, 72,0.30);
  color: var(--teal-lt);
  font-size: 0.9rem;
}
.alert-success-portfolio.show { display: flex; align-items: center; gap: 10px; }

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer h6 {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: var(--transition);
}
.footer ul a:hover { color: var(--purple-lt); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dimmer);
}
.footer-logo-img { height: 44px; width: auto; margin-bottom: 16px; }

/* === CTA STRIP === */
.cta-strip {
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(225, 29, 72,0.12), rgba(217, 119, 6,0.08));
  border: 1px solid var(--border-acc);
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.cta-strip p { color: var(--text-dim); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SECTION GOLD DIVIDER === */
.section-divider { height: 1px; background: var(--grad-gold); opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; padding: 60px 0 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cv-entry { grid-template-columns: 120px 1fr; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip { padding: 40px 28px; }
  .cv-entry { grid-template-columns: 1fr; gap: 4px; }
  .navbar-portfolio { padding: 0 1rem; }
  .navbar-collapse {
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    margin-top: 4px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.08);
  }
}

/* === SKILL SECTION HEADING === */
.skills-group-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.skills-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Trust badges strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.trust-item i { color: var(--teal); font-size: 1.1rem; }

/* === FOOTER LEGAL LINKS === */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--text-dimmer);
  transition: var(--transition);
  font-family: var(--font-alt);
  letter-spacing: 0.03em;
}
.footer-legal-links a:hover {
  color: var(--teal-lt);
}
.footer-legal-links span {
  color: var(--text-dimmer);
  font-size: 0.7rem;
}
@media (max-width: 600px) {
  .footer-legal-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 48px;
}
@media (max-width: 600px) {
  .legal-content { padding: 36px 24px; }
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
}
.legal-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 60%;
  background: var(--grad-main);
  border-radius: 2px;
}
.legal-section p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.legal-list li {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.75;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.legal-link {
  color: var(--teal-lt);
  text-decoration: underline;
  text-decoration-color: rgba(225, 29, 72, 0.35);
  transition: var(--transition);
}
.legal-link:hover {
  color: var(--purple-lt);
  text-decoration-color: var(--purple-lt);
}
.legal-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
