*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F7F4EE;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --primary: #E8FF47;
  --primary-dark: #C8E000;
  --accent1: #FFD4B3;
  --accent2: #B8F0E0;
  --accent3: #D4C5FF;
  --text: #0D0D0D;
  --text-muted: #6B6B6B;
  --border: #0D0D0D;
  --shadow: 4px 4px 0px #0D0D0D;
  --shadow-lg: 8px 8px 0px #0D0D0D;
  --radius: 18px;
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

/* TAG */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: var(--primary);
  padding: 6px 16px;
  border: 2px solid #000;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.section-title em::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  transform: skewX(-15deg);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow);
  border-radius: 12px;
  background: white;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #000;
}

.btn-outline:hover {
  background: white;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--black);
  color: white;
}

.btn-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

/* ── NAVBAR ── */
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border: 2px solid #000;
  border-radius: 100px;
  padding: 10px 12px 10px 24px;
  max-width: 1020px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #000;
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: #000;
  padding: 8px 14px;
  border-radius: 100px;
  transition: 0.18s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary);
  color: #000;
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.hamburger {
  display: none;
  background: none;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: 0.2s;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
  text-align: center;
}

/* Floating blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.35) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 240, 224, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite 3s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  background: white;
  border: 2px solid #000;
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, transparent 60%, var(--primary) 60%);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* HERO AVAILABILITY PILL */
.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 2px solid var(--black);
}

.avail-icon {
  color: var(--primary);
  display: flex;
}

/* DECOR ICONS */
.decor-el {
  position: absolute;
  pointer-events: none;
  animation: floatDecor 5s ease-in-out infinite;
}

.decor-el svg {
  display: block;
}

.d1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.d2 {
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.d3 {
  bottom: 25%;
  left: 6%;
  animation-delay: 2s;
}

.d4 {
  bottom: 30%;
  right: 7%;
  animation-delay: 0.5s;
}

@keyframes floatDecor {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--black);
  color: white;
  padding: 44px 0;
}

.stat-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

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

.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-cell span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
}

.marquee-track .dot {
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2.5px solid #000;
  box-shadow: 10px 10px 0px var(--primary);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e2d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.15);
}

.about-img-actual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img-actual {
  transform: scale(1.04);
}

.about-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid #000;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.afc-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: 2px solid #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
}

.about-float-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.afc1 {
  top: 24px;
  right: -24px;
  animation: floatCard 4s ease-in-out infinite;
}

.afc2 {
  bottom: 60px;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite 2s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.about-pills span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border: 2px solid #000;
  border-radius: 100px;
  background: white;
  box-shadow: 2px 2px 0 #000;
  transition: 0.18s;
}

.about-pills span:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
}

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

/* ── SERVICES ── */
.services {
  background: var(--bg);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: white;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.svc-icon {
  width: 64px;
  height: 64px;
  border: 2px solid #000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.svc-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.svc-link {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.svc-link:hover {
  gap: 12px;
}

.svc-c1 {
  background: var(--primary);
}

.svc-c2 {
  background: var(--accent3);
}

.svc-c3 {
  background: var(--accent2);
}

.svc-c4 {
  background: var(--accent1);
}

/* ── SKILLS ── */
.skills-section {
  background: white;
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.skill-item {
  margin-bottom: 22px;
}

.skill-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-meta span {
  font-size: 0.88rem;
  font-weight: 700;
}

.skill-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: var(--black);
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills-tools h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--bg);
  border: 2px solid #000;
  border-radius: var(--radius);
  transition: 0.18s;
  cursor: default;
}

.tool-badge:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.tool-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.tool-badge span {
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── EXPERIENCE ── */
.experience {
  background: var(--bg);
}

.exp-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 32px 1fr;
  margin-bottom: 0;
}

.tl-year {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
  padding-right: 14px;
  padding-top: 22px;
}

.tl-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid #000;
  margin-top: 20px;
  flex-shrink: 0;
}

.tl-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 255, 71, 0.4);
}

.tl-line {
  width: 2px;
  flex: 1;
  background: #000;
  margin-top: 6px;
  min-height: 40px;
  opacity: 0.15;
}

.tl-card {
  background: white;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 24px;
  margin-left: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.tl-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.tl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tl-header h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
}

.tl-company {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.tl-badge {
  background: var(--primary);
  color: #000;
  border: 1.5px solid #000;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.tl-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.tl-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tl-skills span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--bg);
  border: 1.5px solid #000;
  border-radius: 100px;
}

.why-hire h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 #000;
}

.why-point strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.why-point p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.why-numbers {
  display: flex;
  gap: 0;
  border: 2px solid #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-num {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 2px solid #000;
  background: white;
}

.why-num:last-child {
  border-right: none;
}

.why-num strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.why-num .plus {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-muted);
}

.why-num p {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── PORTFOLIO (ROW SLIDER) ── */
.portfolio {
  background: white;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 18px;
  border: 2px solid #000;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: 0.18s;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 2px 2px 0 #000;
}

/* SLIDER */
.proj-slider-wrap {
  position: relative;
  overflow: hidden;
}

.proj-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2 cards visible at a time, each ~50% minus gap */
.project-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 2.5px solid #000;
  box-shadow: var(--shadow);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  background: var(--bg);
}

.project-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.project-card[data-hidden="true"] {
  opacity: 0.3;
  pointer-events: none;
}

.proj-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .proj-img img {
  transform: scale(1.07);
}

.proj-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.15);
}

.proj-img.bg-yellow {
  background: #FFF9C4;
}

.proj-img.bg-purple {
  background: #EDE7FF;
}

.proj-img.bg-mint {
  background: #E0F7F2;
}

.proj-img.bg-peach {
  background: #FFE8DC;
}

.proj-img.bg-dark {
  background: #1a1a2e;
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}

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

.proj-info {
  color: white;
}

.proj-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.proj-tags span {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
}

.proj-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.proj-info p {
  font-size: 0.8rem;
  opacity: 0.75;
}

.proj-ext {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  transition: 0.2s;
}

.proj-ext:hover {
  background: var(--primary);
}

.proj-card-footer {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #000;
}

.proj-card-footer h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.proj-card-footer span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.sl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.18s;
  box-shadow: var(--shadow);
}

.sl-btn:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.sl-dots {
  display: flex;
  gap: 8px;
}

.sl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s;
}

.sl-dot.active {
  background: #000;
  width: 24px;
  border-radius: 4px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.testimonials .section-tag {
  background: var(--primary);
}

.testimonials .section-title {
  color: white;
}

.testi-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.2s;
}

.testi-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 18px;
}

.testi-stars svg {
  fill: var(--primary);
}

.testi-stars span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 6px;
}

.testi-quote {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: white;
}

.testi-author span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.18s;
}

.t-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.2s;
}

.t-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.ci-icon {
  width: 38px;
  height: 38px;
  border: 2px solid #000;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 #000;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.18s;
  box-shadow: 2px 2px 0 #000;
}

.social-btn:hover {
  background: var(--primary);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #000;
}

.contact-form {
  background: white;
  border: 2px solid #000;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 2px solid #000;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: #000;
  outline: none;
  transition: 0.18s;
  resize: vertical;
  font-family: var(--font-body);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232, 255, 71, 0.3);
}

.form-group textarea {
  min-height: 130px;
}

.full-w {
  width: 100%;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: white;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ── SCROLL REVEAL ── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .about-grid,
  .exp-layout,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skills-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testi-track {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .header {
    top: 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: white;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-headline {
    letter-spacing: -2px;
  }

  .stat-row {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testi-track {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex: 0 0 calc(90vw - 56px);
  }

  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-numbers {
    flex-direction: column;
  }

  .why-num {
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .why-num:last-child {
    border-bottom: none;
  }
}
