/* ============================================
   SECTIONS — All page sections
   Hero, About (identity card), Why-Me, Services,
   Projects, Achievements, Stack, Contact (no form),
   Footer
   ============================================ */

/* ============================================
   [1] HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 64px;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite;
}

.blob-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,200,240,0.14) 0%, transparent 70%);
  top: -140px; right: -80px;
  animation-duration: 12s;
}

.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(157,78,221,0.12) 0%, transparent 70%);
  bottom: -80px; left: -100px;
  animation-duration: 14s;
  animation-delay: -5s;
}

.blob-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,200,240,0.06) 0%, transparent 70%);
  top: 38%; left: 28%;
  animation-duration: 16s;
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(16px,-16px) scale(1.04); }
  66%     { transform: translate(-12px,12px) scale(0.96); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

:root.light-mode .grid-overlay {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  width: 68px; height: 68px;
  background: radial-gradient(circle at 32% 32%, rgba(0,200,240,0.8), rgba(0,200,240,0.05) 65%, transparent);
  top: 22%; right: 14%;
  box-shadow: 0 0 30px rgba(0,200,240,0.2);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 40px; height: 40px;
  background: radial-gradient(circle at 32% 32%, rgba(157,78,221,0.8), rgba(157,78,221,0.05) 65%, transparent);
  top: 62%; right: 7%;
  box-shadow: 0 0 22px rgba(157,78,221,0.2);
  animation: orbFloat 11s ease-in-out infinite reverse;
}

.orb-3 {
  width: 22px; height: 22px;
  background: radial-gradient(circle at 32% 32%, rgba(0,200,240,0.7), transparent 65%);
  top: 78%; right: 22%;
  animation: orbFloat 14s ease-in-out infinite;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0); }
  25%     { transform: translate(-8px,-14px); }
  50%     { transform: translate(6px,-22px); }
  75%     { transform: translate(12px,-8px); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  background: rgba(0,200,240,0.06);
  border: 1px solid rgba(0,200,240,0.16);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 26px;
  animation: fadeSlideDown 0.8s ease both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(0.78); }
}

@keyframes fadeSlideDown {
  from { opacity:0; transform:translateY(-12px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-headline {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
  animation: fadeSlideUp 0.85s ease 0.1s both;
}

.hero-headline .line-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 12px;
  line-height: 1.75;
  animation: fadeSlideUp 0.85s ease 0.18s both;
}

.typing-wrapper {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  height: 26px;
  animation: fadeSlideUp 0.85s ease 0.26s both;
}

.typing-wrapper .role { color: var(--blue); font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

.cursor {
  display: inline-block;
  width: 1.5px; height: 1em;
  background: var(--blue);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.85s ease 0.34s both;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: fadeSlideUp 0.85s ease 0.44s both;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  transition: var(--t);
}

.stat-badge:hover {
  border-color: var(--border-blue);
  background: var(--card-bg-h);
}

.stat-icon {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  border: 1px solid rgba(0,200,240,0.14);
  flex-shrink: 0;
  transition: var(--t);
}

.stat-icon svg {
  width: 14px; height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}

.stat-badge:hover .stat-icon { background: var(--card-bg-h); }

.stat-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.stat-text span { font-size: 0.69rem; color: var(--text-muted); }

/* Hero 3D code card — desktop only */
.hero-3d-card { display: none; }

.card-3d-inner {
  background: rgba(13,13,26,0.88);
  border: 1px solid rgba(0,200,240,0.16);
  border-radius: var(--r-lg);
  padding: 22px;
  backdrop-filter: blur(28px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: cardSlideIn 1s ease 0.6s both;
}

:root.light-mode .card-3d-inner {
  background: rgba(255,255,255,0.88);
  border-color: rgba(0,150,200,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

@keyframes cardSlideIn {
  from { opacity:0; transform:translateX(28px) rotateY(-8deg); }
  to   { opacity:1; transform:translateX(0) rotateY(0); }
}

.card-3d-bar { display:flex; gap:6px; align-items:center; margin-bottom:18px; }
.dot-r { width:10px;height:10px;border-radius:50%;background:#ff5f57; }
.dot-y { width:10px;height:10px;border-radius:50%;background:#ffbd2e; }
.dot-g { width:10px;height:10px;border-radius:50%;background:#28ca41; }

.card-3d-code {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.8rem;
  line-height: 1.9;
}

.card-3d-code p { white-space: pre; }
.indent { padding-left: 16px; }
.c-kw   { color: #7aa2f7; }
.c-var  { color: var(--violet); }
.c-str  { color: #9ece6a; }
.c-bool { color: var(--blue); }
.c-cmt  { color: var(--text-muted); opacity:0.5; }
.terminal-cursor { color: var(--blue); animation: blink 1s step-end infinite; }


/* ============================================
   [2] ABOUT — Identity card replaces avatar
   ============================================ */
#about {
  padding: var(--section-y) 0;
  position: relative;
}

.about-grid { display: grid; gap: 48px; }

/* The identity card */
.about-avatar { display: flex; align-items: flex-start; justify-content: center; }

.identity-card {
  width: 100%;
  max-width: 260px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--t);
  position: relative;
}

.identity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.identity-card:hover {
  border-color: var(--border-blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), var(--shadow-glow);
  transform: translateY(-4px);
}

.id-card-top {
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* Monogram — clean box, no spinning ring */
.id-monogram {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0,200,240,0.08), rgba(157,78,221,0.08));
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.id-monogram span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* Subtle animated border (no spinning) */
.id-monogram::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--grad);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.identity-card:hover .id-monogram::after { opacity: 0.4; }

.id-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.id-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Credential rows */
.id-card-rows { padding: 8px 0; }

.id-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.id-row:last-child { border-bottom: none; }
.id-row:hover { background: var(--surface); }

.id-row-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.id-row-icon svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.id-row-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.id-row-icon.blue  { background: var(--blue-dim);     color: var(--blue);  border: 1px solid rgba(0,200,240,0.2); }
.id-row-icon.violet{ background: var(--violet-dim);   color: var(--violet);border: 1px solid rgba(157,78,221,0.2); }

.id-row-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.id-row-text span {
  font-size: 0.69rem;
  color: var(--text-muted);
}

/* About text */
.about-text h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

/* Service tier card */
.service-tier {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(0,200,240,0.04), rgba(157,78,221,0.03));
  border: 1px solid rgba(0,200,240,0.13);
}

.tier-label {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.8;
}

.tier-list { display: flex; flex-direction: column; gap: 7px; }

.tier-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.tier-item svg {
  width: 13px; height: 13px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 2px;
}

.tier-item.active { color: var(--text); }
.tier-item.active svg { stroke: #22c55e; }


/* ============================================
   [3] WHY ME — Stats Strip
   ============================================ */
#why-me {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0,200,240,0.015), rgba(157,78,221,0.015));
}

.why-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.why-item { flex: 1 1 120px; text-align: center; padding: 16px 18px; }

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 16px rgba(0,200,240,0.2));
}

.why-label { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

.why-divider { width: 1px; background: var(--border); display: none; margin: 12px 0; }


/* ============================================
   [4] SERVICES
   ============================================ */
#services {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.services-grid { display: grid; gap: 16px; }

.service-card {
  padding: 28px 26px;
  border-radius: var(--r-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.28s, background 0.28s, box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.28s;
}

.service-card:hover {
  border-color: var(--border-blue);
  background: var(--card-bg-h);
  box-shadow: 0 16px 44px rgba(0,0,0,0.25), var(--shadow-glow);
}

.service-card:hover::after { opacity: 1; }

.svc-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,200,240,0.05), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover .svc-glow { opacity: 1; }

.svc-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  border: 1px solid rgba(0,200,240,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: var(--t);
  position: relative; z-index: 1;
}

.svc-icon svg {
  width: 19px; height: 19px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.28s;
}

.service-card:hover .svc-icon {
  background: var(--card-bg-h);
  border-color: var(--border-blue);
  box-shadow: 0 0 14px rgba(0,200,240,0.15);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  transition: color 0.28s;
  position: relative; z-index: 1;
}

.service-card:hover h3 { color: var(--blue); }

.service-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.service-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; z-index: 1;
}

.service-features li {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
}

.service-features li svg {
  width: 12px; height: 12px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.svc-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  background: var(--card-bg-h);
  border: 1px solid var(--border-blue);
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ============================================
   [5] PROJECTS
   ============================================ */
#projects { padding: var(--section-y) 0; }

.projects-grid { display: grid; gap: 20px; }

.project-card {
  border-radius: var(--r-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.28s, box-shadow 0.28s;
  position: relative;
}

.proj-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,200,240,0.05), transparent 58%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.project-card:hover .proj-glow { opacity: 1; }

.project-card:hover {
  border-color: var(--border-blue);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4), var(--shadow-glow);
}

.project-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.project-impact {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  font-size: 0.7rem;
  font-weight: 600;
  color: #22c55e;
  white-space: nowrap;
  flex-shrink: 0;
}

.project-body { padding: 14px 24px 24px; }

.project-body h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
  transition: color 0.28s;
}

.project-card:hover .project-body h3 { color: var(--blue); }

.project-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.tech-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.project-links { display: flex; gap: 9px; }

.project-card.featured {
  border-color: rgba(0,200,240,0.18);
  background: linear-gradient(135deg, rgba(0,200,240,0.025), rgba(157,78,221,0.02));
}

.project-card.featured::before {
  content: 'Featured';
  position: absolute;
  top: 14px; left: 14px;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  background: var(--card-bg-h);
  border: 1px solid var(--border-blue);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ============================================
   [6] ACHIEVEMENTS
   ============================================ */
#achievements {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}

.achievements-grid { display: grid; gap: 12px; }

.achievement-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-color 0.28s, background 0.28s, transform 0.28s;
}

.achievement-card:hover {
  border-color: var(--border-blue);
  border-left-color: var(--blue);
  background: var(--card-bg-h);
  transform: translateX(4px);
}

.ach-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--blue-dim);
  border: 1px solid rgba(0,200,240,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ach-icon svg {
  width: 17px; height: 17px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}

.achievement-card:hover .ach-icon {
  background: var(--card-bg-h);
  border-color: var(--border-blue);
}

.achievement-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  transition: color 0.28s;
}

.achievement-card:hover .achievement-text strong { color: var(--blue); }

.achievement-text span { font-size: 0.79rem; color: var(--text-muted); line-height: 1.5; }


/* ============================================
   [7] TECH STACK
   ============================================ */
#stack { padding: 84px 0; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 40px;
}

.stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 18px 10px;
  border-radius: var(--r-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--t);
  text-align: center;
}

.stack-item:hover {
  border-color: var(--border-blue);
  background: var(--card-bg-h);
}

.stack-item svg {
  width: 20px; height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.7;
  transition: transform 0.3s var(--ease-spring);
}

.stack-item:hover svg { transform: scale(1.2) rotate(-4deg); }

.stack-item span {
  font-size: 0.71rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.28s;
}

.stack-item:hover span { color: var(--blue); }


/* ============================================
   [8] CONTACT — Email + WhatsApp only, no form
   ============================================ */
#contact {
  padding: var(--section-y) 0 120px;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,240,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.contact-inner h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.75;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* "Quick reply" badge */
.quick-reply-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-sm);
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.18);
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 44px;
}

.quick-reply-badge .qr-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Two big contact CTAs */
.contact-cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-btn-large {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--t);
  text-align: left;
  width: 100%;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.contact-btn-large::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.28s;
}

.contact-btn-large:hover {
  border-color: var(--border-blue);
  background: var(--card-bg-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25), var(--shadow-glow);
}

.contact-btn-large:hover::after { opacity: 1; }

.cbl-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.cbl-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.cbl-icon.email-icon {
  background: rgba(0,200,240,0.08);
  border: 1px solid rgba(0,200,240,0.2);
  color: var(--blue);
}

.cbl-icon.wa-icon {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #22c55e;
}

.contact-btn-large:hover .cbl-icon.email-icon {
  background: rgba(0,200,240,0.14);
  box-shadow: 0 0 16px rgba(0,200,240,0.12);
}

.contact-btn-large:hover .cbl-icon.wa-icon {
  background: rgba(34,197,94,0.14);
  box-shadow: 0 0 16px rgba(34,197,94,0.12);
}

.cbl-content { flex: 1; }

.cbl-title {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.cbl-subtitle {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.cbl-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.28s, color 0.28s;
}

.contact-btn-large:hover .cbl-arrow {
  transform: translate(2px, -2px);
  color: var(--blue);
}

/* Secondary links row */
.contact-links-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* BMC in contact */
.bmc-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: rgba(251,191,36,0.05);
  border: 1px solid rgba(251,191,36,0.15);
  transition: var(--t);
  max-width: 340px;
  margin: 0 auto;
  text-decoration: none;
  color: #b8860b;
}

.bmc-strip:hover {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.3);
  transform: translateY(-1px);
}

.bmc-strip-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.bmc-strip-sub {
  font-size: 0.72rem;
  opacity: 0.6;
}


/* ============================================
   [9] FOOTER
   ============================================ */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  transition: var(--t);
}

.footer-links a:hover { color: var(--blue); background: var(--blue-dim); }

.footer-copy { font-size: 0.76rem; color: var(--text-dim); }
.footer-built { font-size: 0.72rem; color: var(--text-dim); }
.footer-built span { color: #ef4444; }
