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

:root {
  --bg: #0a0a12;
  --bg2: #12121e;
  --bg3: #1a1a2e;
  --surface: #1e1e32;
  --surface2: #262640;
  --text: #e8e8f0;
  --text2: #9898b8;
  --accent1: #7c5cfc;
  --accent2: #a855f7;
  --accent3: #06b6d4;
  --gold: #f59e0b;
  --whatsapp: #25d366;
  --grad1: linear-gradient(135deg, #7c5cfc, #a855f7);
  --grad2: linear-gradient(135deg, #06b6d4, #7c5cfc);
  --grad3: linear-gradient(135deg, #f59e0b, #ef4444);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent1); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent1); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.text-accent { color: var(--accent1); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; background: var(--accent1);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width .3s, height .3s, background .3s;
}

.cursor-ring {
  position: fixed; width: 40px; height: 40px; border: 2px solid rgba(124,92,252,.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: all .08s ease;
}

.cursor-dot.hover { width: 16px; height: 16px; background: var(--accent3); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--accent3); opacity: .5; }

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Particles ── */
#particles-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
}

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,18,.75); backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(124,92,252,.1);
  transition: transform .4s, background .4s;
}

nav.hidden { transform: translateY(-100%); }

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

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

.nav-links a {
  color: var(--text2); text-decoration: none; font-size: .85rem; font-weight: 500;
  padding: .4rem 1rem; border-radius: 100px; transition: all .3s; position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(124,92,252,.15);
}

.nav-cta a {
  background: var(--grad1); color: #fff !important; font-weight: 600;
  padding: .5rem 1.2rem !important;
}

.nav-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(124,92,252,.4);
}

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}

.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--text);
  border-radius: 2px; position: absolute; left: 0;
  transition: all .3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(10,10,18,.97); backdrop-filter: blur(30px);
    flex-direction: column; padding: 5rem 2rem 2rem; gap: 1rem;
    transition: right .4s ease; border-left: 1px solid rgba(124,92,252,.15);
  }
  .nav-links.open { right: 0; }
}

/* ── Sections ── */
section {
  position: relative; z-index: 1;
  padding: 6rem 1.5rem; max-width: 1200px; margin: 0 auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent1); margin-bottom: .75rem;
  background: rgba(124,92,252,.12); padding: .3rem 1rem; border-radius: 100px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem;
}

.section-sub {
  color: var(--text2); font-size: 1.05rem; max-width: 600px; line-height: 1.7;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem; position: relative; z-index: 1; text-align: center;
  max-width: 100%; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,18,.7), rgba(10,10,18,.95));
}

.hero-content { max-width: 900px; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 500; color: var(--accent3);
  background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2);
  padding: .4rem 1.2rem; border-radius: 100px; margin-bottom: 1.5rem;
  animation: fadeUp .8s .2s both;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: .5rem;
  animation: fadeUp .8s .3s both;
}

.hero h1 .gradient-text {
  background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .gradient-text-gold {
  background: var(--grad3); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typing {
  font-size: 1.2rem; color: var(--text2); min-height: 2rem; margin-bottom: 2rem;
  animation: fadeUp .8s .5s both;
}

.hero-typing .cursor-blink {
  animation: blink .8s infinite; color: var(--accent1);
  font-weight: 100; margin-left: 2px;
}

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

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .8s .7s both;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 2rem; border-radius: 100px; font-weight: 600;
  font-size: .9rem; text-decoration: none; transition: all .3s;
  cursor: pointer; border: none; white-space: nowrap;
}

.btn-primary {
  background: var(--grad1); color: #fff;
  box-shadow: 0 4px 25px rgba(124,92,252,.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(124,92,252,.5);
}

.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid rgba(255,255,255,.15);
}

.btn-outline:hover {
  border-color: var(--accent1);
  background: rgba(124,92,252,.1);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 4px 25px rgba(37,211,102,.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37,211,102,.5);
}

.btn-gold {
  background: var(--grad3); color: #fff;
  box-shadow: 0 4px 25px rgba(245,158,11,.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(245,158,11,.5);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; margin-top: 3rem;
  animation: fadeUp .8s .9s both;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700;
  background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: .8rem; color: var(--text2); margin-top: .2rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text2); font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; animation: fadeUp 1s 1.2s both;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent1), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ── About ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: center;
  margin-top: 2rem;
}

.about-visual { position: relative; }

.about-img-wrapper {
  position: relative; width: 100%; aspect-ratio: 1; max-width: 380px; margin: 0 auto;
}

.about-img-placeholder {
  width: 100%; height: 100%; border-radius: var(--radius);
  overflow: hidden; position: relative;
}

.about-img-placeholder .glow-ring {
  position: absolute; inset: -3px; border-radius: var(--radius);
  background: conic-gradient(from 0deg, var(--accent1), var(--accent3), var(--accent1));
  opacity: .4; animation: spin 6s linear infinite; z-index: -1;
}

@keyframes spin { to { transform: rotate(360deg); } }

.about-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}

.about-img-wrapper:hover img { transform: scale(1.05); }

.about-floating-badge {
  position: absolute; bottom: -10px; right: -10px; background: var(--bg3);
  border: 1px solid rgba(124,92,252,.3); border-radius: var(--radius-sm);
  padding: .8rem 1.2rem; backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.about-floating-badge .emoji { font-size: 1.5rem; }

.about-floating-badge p { font-size: .75rem; color: var(--text2); }

.about-floating-badge strong { color: var(--text); font-weight: 600; }

.about-floating-badge .badge-sub {
  font-size: .7rem; color: var(--accent1); margin-top: 1px;
}

.about-text h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; margin-bottom: 1rem;
}

.about-text p {
  color: var(--text2); margin-bottom: 1rem; font-size: .95rem;
}

.about-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem;
}

.about-tags span {
  background: rgba(124,92,252,.1); border: 1px solid rgba(124,92,252,.15);
  padding: .3rem 1rem; border-radius: 100px; font-size: .8rem; color: var(--accent1);
  transition: all .3s;
}

.about-tags span:hover {
  background: rgba(124,92,252,.2); transform: translateY(-2px);
}

/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}



.service-card {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 1.8rem 1.5rem; border: 1px solid rgba(255,255,255,.04);
  transition: all var(--transition); position: relative; overflow: hidden;
  cursor: pointer; display: block; text-decoration: none; color: inherit;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad1); transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,92,252,.2);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.service-card .service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}

.service-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }

.service-card p {
  font-size: .85rem; color: var(--text2); line-height: 1.6;
  flex: 1; margin-bottom: .5rem;
}

.service-card .tag {
  display: inline-block; margin-top: .8rem; font-size: .7rem; font-weight: 500;
  color: var(--accent3); background: rgba(6,182,212,.1);
  padding: .2rem .7rem; border-radius: 100px; width: fit-content;
}

.card-arrow {
  position: absolute; bottom: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(124,92,252,.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--accent1); font-size: .8rem;
  transition: all .4s; opacity: 0; transform: translateX(-8px);
}

.service-card:hover .card-arrow {
  opacity: 1; transform: translateX(0);
}

.service-card .card-link {
  display: inline-block; margin-top: .8rem; font-size: .8rem; font-weight: 600;
  color: var(--accent1); transition: all .3s;
}

.service-card .card-link:hover {
  color: var(--accent3); transform: translateX(4px);
}

/* ── Tools Marquee ── */
.section-tools {
  max-width: 100%; padding: 2rem 0;
}

.tools-showcase { text-align: center; }

.tools-header { margin-bottom: 1.5rem; }

.tools-marquee {
  display: flex; overflow: hidden; padding: .5rem 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.tools-track {
  display: flex; gap: 1rem; animation: marquee 40s linear infinite;
  flex-shrink: 0;
}

.tools-track-reverse {
  animation: marquee-reverse 40s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.tool-chip {
  display: flex; align-items: center; gap: .6rem;
  background: var(--surface); border: 1px solid rgba(255,255,255,.06);
  border-radius: 100px; padding: .5rem 1.2rem .5rem .8rem;
  white-space: nowrap; font-size: .85rem; transition: all .3s;
}

.tool-chip:hover {
  border-color: var(--accent1); background: var(--surface2);
  transform: translateY(-2px);
}

.tool-chip .tool-icon {
  font-size: 1.1rem; color: var(--accent1);
}

/* ── Skills ── */
.skills-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem;
}

.skill-category h4 {
  font-size: .9rem; font-weight: 600; margin-bottom: 1.2rem;
  color: var(--accent3); text-transform: uppercase; letter-spacing: 1px;
  display: flex; align-items: center; gap: .5rem;
}

.skill-bar-group { margin-bottom: 1rem; }

.skill-bar-header {
  display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: .4rem;
}

.skill-bar-header span:last-child { color: var(--accent1); font-weight: 600; }

.skill-bar-track {
  height: 6px; background: var(--bg3); border-radius: 10px; overflow: hidden;
}

.skill-bar-fill {
  height: 100%; border-radius: 10px; background: var(--grad1);
  width: 0; transition: width 1.2s ease;
}

/* ── Project Slider ── */
.slider-container {
  position: relative; margin-top: 2.5rem; overflow: hidden;
  border-radius: var(--radius-sm); background: var(--surface);
  border: 1px solid rgba(255,255,255,.04);
}

.slider-wrapper {
  display: flex; transition: transform .5s ease;
}

.slider-slide {
  min-width: 100%; display: flex; flex-direction: row;
}

.slider-img {
  flex: 0 0 45%; overflow: hidden; min-height: 300px;
}

.slider-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}

.slider-slide:hover .slider-img img { transform: scale(1.05); }

.slider-body {
  flex: 1; padding: 2rem; display: flex; flex-direction: column;
  justify-content: center;
}

.slider-body .project-tag {
  display: inline-block; font-size: .7rem; font-weight: 500;
  background: rgba(245,158,11,.1); padding: .2rem .7rem;
  border-radius: 100px; margin-bottom: .6rem; width: fit-content;
}

.slider-body h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: .6rem; }

.slider-body p {
  font-size: .9rem; color: var(--text2); line-height: 1.6; margin-bottom: 1rem;
}

.project-tech { display: flex; flex-wrap: wrap; gap: .4rem; }

.project-tech span {
  font-size: .7rem; background: var(--bg3); color: var(--text2);
  padding: .2rem .7rem; border-radius: 100px;
}

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1); color: var(--text);
  font-size: 1.1rem; cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--accent1); color: #fff;
  border-color: var(--accent1);
}

.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }

.slider-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}

.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: all .3s;
}

.slider-dots span.active {
  background: var(--accent1); width: 24px; border-radius: 4px;
}

@media (max-width: 768px) {
  .slider-slide { flex-direction: column; }
  .slider-img { flex: unset; height: 220px; }
  .slider-body { padding: 1.5rem; }
  .slider-btn { width: 36px; height: 36px; font-size: .9rem; }
  .slider-btn-prev { left: 8px; }
  .slider-btn-next { right: 8px; }
}

/* ── Certifications ── */
.cert-timeline {
  position: relative; margin-top: 2.5rem; padding-left: 2rem;
}

.cert-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--accent1), var(--accent3), transparent);
}

.cert-item {
  position: relative; padding-bottom: 2rem; padding-left: 1.5rem;
  opacity: 0; transform: translateY(30px); transition: all .6s;
}

.cert-item.revealed { opacity: 1; transform: translateY(0); }

.cert-item::before {
  content: ''; position: absolute; left: -2.55rem; top: .3rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent1);
  border: 3px solid var(--bg); box-shadow: 0 0 0 3px rgba(124,92,252,.3);
}

.cert-item h4 { font-size: 1rem; font-weight: 600; }

.cert-item .cert-meta {
  font-size: .8rem; color: var(--accent3); margin: .2rem 0 .4rem;
  display: flex; align-items: center; gap: .4rem;
}

.cert-item p { font-size: .85rem; color: var(--text2); }

/* ── Goals ── */
.goals-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}

.goal-card {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,.04);
  text-align: center; transition: all .4s;
}

.goal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,92,252,.2);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.goal-card .goal-icon {
  font-size: 2.5rem; margin-bottom: .8rem; color: var(--accent1);
}

.goal-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }

.goal-card p { font-size: .85rem; color: var(--text2); }

/* ── Quote Section ── */
.quote-section {
  text-align: center; max-width: 700px;
}

.quote-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 3rem 2.5rem; border: 1px solid rgba(124,92,252,.15);
  position: relative;
}

.quote-icon {
  font-size: 2rem; color: var(--accent1); opacity: .4; margin-bottom: 1rem;
}

.quote-card blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 500; line-height: 1.5;
  background: var(--grad2); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.quote-card cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-size: .9rem; color: var(--text2); font-weight: 500;
}

/* ── Contact ── */
.contact-section {
  text-align: center; padding-bottom: 3rem;
}

.contact-ctas {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  background: var(--surface); border-radius: var(--radius-sm);
  padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,.04);
  text-decoration: none; color: var(--text); transition: all .4s; display: block;
}

.contact-card:hover {
  transform: translateY(-6px); border-color: var(--accent1);
  background: var(--surface2); box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.contact-card .c-icon {
  font-size: 2rem; margin-bottom: .6rem; display: block;
  color: var(--accent1);
}

.contact-card h4 { font-size: .95rem; font-weight: 600; }

.contact-card p { font-size: .8rem; color: var(--text2); margin-top: .2rem; }

/* ── Footer ── */
footer {
  text-align: center; padding: 2rem; border-top: 1px solid rgba(255,255,255,.04);
  color: var(--text2); font-size: .8rem; position: relative; z-index: 1;
}

footer a { color: var(--accent1); text-decoration: none; }

.footer-heart { color: var(--accent1); display: inline-block; animation: heartBeat 1.5s infinite; }

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ── Reveal Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .7s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(40px); transition: all .7s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(.9); transition: all .7s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-children > * {
  opacity: 0; transform: translateY(20px); transition: all .5s;
}

.stagger-children.revealed > * { opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: .1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: .15s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: .2s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: .25s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: .3s; }
.stagger-children.revealed > *:nth-child(7) { transition-delay: .35s; }
.stagger-children.revealed > *:nth-child(8) { transition-delay: .4s; }
.stagger-children.revealed > *:nth-child(9) { transition-delay: .45s; }
.stagger-children.revealed > *:nth-child(10) { transition-delay: .5s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-tags { justify-content: center; }
  .about-floating-badge {
    position: relative; bottom: auto; right: auto;
    margin-top: 1rem; justify-content: center;
  }
  .skills-container { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  section { padding: 4rem 1rem; }
  .section-title { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: 1fr; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .contact-ctas .btn { width: 100%; justify-content: center; }
  .hero-typing { font-size: 1rem; }
  .quote-card blockquote { font-size: 1.1rem; }
  .quote-card { padding: 2rem 1.5rem; }
}
