:root {
  --red: #dc2626;
  --red-dim: rgba(220, 38, 38, 0.12);
  --red-border: rgba(220, 38, 38, 0.28);
  --bg: #080808;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --surface: #141414;
  --border: #1e1e1e;
  --border2: #262626;
  --text: #e8e8e8;
  --muted: #6b6b6b;
  --muted2: #4a4a4a;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise texture overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ── Custom cursor glow ── */
#cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.055) 0%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* ─────────────────── Navigation ─────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo-text .red {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  padding: 9px 20px;
  background: var(--red);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 13.5px;
  font-family: var(--font-body);
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  margin-left: 8px;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  background: #c02020;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}
.nav-cta:hover::before {
  opacity: 1;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ─────────────────── Hero ─────────────────── */
.hero {
  padding: 140px 28px 80px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

/* Ambient blobs */
.bg-blob {
  position: fixed;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.09), transparent 65%);
  top: 0;
  right: -100px;
  animation: floatBlob 10s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.bg-blob-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05), transparent 70%);
  bottom: 0;
  left: -200px;
  animation: floatBlob 14s ease-in-out 2s infinite reverse;
  z-index: 0;
  pointer-events: none;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(40px) scale(1.05);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: 100px;
  color: #ff7070;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: badgePulse 3s ease-in-out infinite;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -2px;
  color: #fff;
}

/* Gradient text for the typed word */
#type-text {
  background: linear-gradient(135deg, #ff4444 0%, #ff8080 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-size: 51px;
}

#type-text::after {
  content: "|";
  -webkit-text-fill-color: var(--red);
  animation: blink 0.9s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero .tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--red);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  background: #c02020;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  border-color: #444;
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: inline-flex;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero visual – peacock */
.hero-visual {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.peacock-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peacock-img {
  position: absolute;
  width: 240px;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transform-origin: bottom center;
  opacity: 0;
  transform: rotate(0deg) scale(0.8);
  transition: all 1.3s var(--ease-out);
}

.peacock-wrapper.open .img1 {
  transform: rotate(-25deg) translateY(-10px);
  opacity: 1;
}
.peacock-wrapper.open .img2 {
  transform: rotate(-8deg);
  opacity: 1;
  transition-delay: 0.18s;
}
.peacock-wrapper.open .img3 {
  transform: rotate(8deg);
  opacity: 1;
  transition-delay: 0.36s;
}
.peacock-wrapper.open .img4 {
  transform: rotate(25deg) translateY(-10px);
  opacity: 1;
  transition-delay: 0.54s;
}

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
}

/* ─────────────────── Services ─────────────────── */
.services {
  padding: 110px 28px;
  background: #0b0b0b;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.section-label {
  color: var(--red);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

.intro-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(220, 38, 38, 0.1));
}

@keyframes float-ill {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink-ill {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

.ill-float {
  animation: float-ill 4s ease-in-out infinite;
}
.ill-orbit {
  animation: spin-slow 12s linear infinite;
  transform-origin: 230px 170px;
}
.ill-orbit2 {
  animation: spin-slow 18s linear infinite reverse;
  transform-origin: 230px 170px;
}
.ill-blink1 {
  animation: blink-ill 2.4s ease-in-out infinite;
}
.ill-blink2 {
  animation: blink-ill 2.4s ease-in-out 0.4s infinite;
}
.ill-blink3 {
  animation: blink-ill 2.4s ease-in-out 0.8s infinite;
}
.ill-pulse {
  animation: blink-ill 1.8s ease-in-out infinite;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
  transform-style: preserve-3d;
}

/* Red accent line top */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

/* Bottom glow */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.5s var(--ease-out);
  opacity: 0.5;
}

.service-card:hover {
  border-color: var(--border2);
  transform: translateY(-6px);
  background: #181818;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(220, 38, 38, 0.08);
    cursor: pointer;
}

.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover::after {
  width: 80%;
}

.service-card:nth-child(1) {
  grid-column: span 6;
}
.service-card:nth-child(2) {
  grid-column: span 6;
}
.service-card:nth-child(3) {
  grid-column: span 4;
}
.service-card:nth-child(4) {
  grid-column: span 4;
}
.service-card:nth-child(5) {
  grid-column: span 4;
}
.service-card:nth-child(6) {
  grid-column: span 7;
}
.service-card:nth-child(7) {
  grid-column: span 5;
}

.service-icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s var(--ease-spring);
  filter: grayscale(0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.0) rotate(5deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #f0f0f0;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ─────────────────── Why Choose ─────────────────── */
.why-choose {
  padding: 110px 28px;
  background: var(--bg);
  position: relative;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
}

.why-content h2 .highlight {
  color: var(--red);
}

.why-content .intro-text {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 400;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--border);
  transform: translateX(6px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
}

.feature-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.stats-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.stats-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.4),
    transparent
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 4px;
}

.stat-box {
  text-align: left;
}

.stat-box .number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-box .label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.tech-stack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.tech-stack h4 {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12.5px;
  color: #888;
  transition: all 0.25s ease;
  cursor: default;
  font-weight: 500;
}

.tech-tag:hover {
  border-color: var(--red);
  color: #ff8080;
  background: var(--red-dim);
  transform: translateY(-2px);
}

/* ─────────────────── Sponsors ─────────────────── */
.sponsors {
  padding: 80px 28px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Fade edges of slider */
.sponsors::before,
.sponsors::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 10;
  pointer-events: none;
}
.sponsors::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.sponsors::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.sponsors-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sponsor-slider {
  overflow: hidden;
  position: relative;
}

.sponsor-track {
  display: flex;
  gap: 20px;
  animation: scrollSponsors 22s linear infinite;
}

.sponsor-item {
  min-width: 280px;
  padding: 18px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  color: #888;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.sponsor-item:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-4px);
}

@keyframes scrollSponsors {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────── Portfolio ─────────────────── */
.portfolio {
  padding: 110px 28px;
  background: #080808;
  position: relative;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #0d0d0d;
  border: 1px solid var(--border);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.3s;
}

.portfolio-item:nth-child(1) {
  grid-row: span 2;
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.008);
  border-color: #2a2a2a;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(220, 38, 38, 0.12);
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(220, 38, 38, 0.07),
    transparent 50%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
  z-index: 10;
}

.portfolio-item:hover::after {
  transform: scaleX(1);
}

.portfolio-image {
  width: 100%;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.portfolio-item:nth-child(1) .portfolio-image {
  height: 100%;
  min-height: 420px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease-out),
    filter 0.5s ease;
  filter: brightness(0.75) saturate(0.85);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
  filter: brightness(0.5) saturate(1.1);
}

.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(8, 8, 8, 0.55) 70%,
    rgba(8, 8, 8, 0.97) 100%
  );
  transition: opacity 0.4s;
}

.portfolio-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  padding: 5px 13px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff7070;
  transition: all 0.3s;
}

.portfolio-item:hover .portfolio-tag {
  background: rgba(220, 38, 38, 0.28);
  border-color: rgba(220, 38, 38, 0.65);
}

.portfolio-number {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 2px;
  font-family: monospace;
  transition: color 0.3s;
}

.portfolio-item:hover .portfolio-number {
  color: rgba(220, 38, 38, 0.55);
}

.portfolio-info {
  padding: 22px 26px 26px;
  position: relative;
  z-index: 5;
  background: linear-gradient(to bottom, transparent, #0d0d0d 30%);
}

.portfolio-item:nth-child(1) .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.98) 0%,
    rgba(8, 8, 8, 0.65) 65%,
    transparent 100%
  );
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-out);
}

.portfolio-item:nth-child(1):hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f0f0f0;
  letter-spacing: -0.3px;
  transition: color 0.3s;
}

.portfolio-item:nth-child(1) .portfolio-info h3 {
  font-size: 23px;
}
.portfolio-item:hover .portfolio-info h3 {
  color: #fff;
}

.portfolio-info p {
  color: #555;
  font-size: 13.5px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s var(--ease-out),
    color 0.3s,
    opacity 0.3s;
  opacity: 0;
}

.portfolio-item:nth-child(1) .portfolio-info p {
  max-height: 100px;
  opacity: 1;
  color: #888;
}
.portfolio-item:hover .portfolio-info p {
  max-height: 100px;
  opacity: 1;
  color: #777;
}

.portfolio-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.35s 0.05s,
    transform 0.35s 0.05s;
}

.portfolio-item:hover .portfolio-arrow {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-arrow svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}

.portfolio-item:hover .portfolio-arrow svg {
  transform: translateX(3px);
}

/* ─────────────────── Process ─────────────────── */
.process {
  padding: 110px 28px;
  background: var(--bg2);
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline {
  margin-top: 64px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border2) 20%,
    var(--border2) 80%,
    transparent
  );
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 52px;
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s var(--ease-out);
}

.process-step.active {
  opacity: 1;
  transform: translateX(0);
}

.step-number {
  width: 58px;
  height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
}

.process-step:hover .step-number {
  transform: scale(1.12);
  box-shadow:
    0 0 0 10px rgba(220, 38, 38, 0.1),
    0 0 30px rgba(220, 38, 38, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}

.step-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ─────────────────── Contact ─────────────────── */
.contact {
  padding: 110px 28px;
  background: #0a0a0a;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s ease;
}

.contact-box:hover {
  border-color: var(--border2);
}

.contact-box h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.2px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-item span  {
  color: #999;
  font-size: 14.5px;
}
.__cf_email__{
  color: #999;
  text-decoration: none;
  font-size: 14.5px;
}


.whatsapp-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #25d366, #1aad55);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 14.5px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20ba5a, #169a4b);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.4),
    transparent
  );
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: #888;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14.5px;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.04);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted2);
}
.form-group select option {
  background: #1a1a1a;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  background: #c02020;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}
.submit-btn:hover::before {
  opacity: 1;
}

/* ─────────────────── Footer ─────────────────── */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 70px 28px 28px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.3),
    transparent
  );
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.75;
  max-width: 300px;
  font-size: 14.5px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--muted2);
  font-size: 13.5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
  transform: translateY(-2px);
}

/* ─────────────────── WhatsApp Widget ─────────────────── */
.wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #1ead55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  z-index: 9999;
  border: none;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}

.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waRing 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 8px 28px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0.06);
  }
}

@keyframes waRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes whatsappBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-18px);
  }
  60% {
    transform: translateY(-9px);
  }
}

.wa-btn.bounce {
  animation: whatsappBounce 1.8s ease;
}

.wa-widget {
  position: fixed;
  bottom: 108px;
  right: 30px;
  width: 340px;
  background: #111;
  border: 1px solid #222;
  border-radius: 20px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(37, 211, 102, 0.06);
  z-index: 9998;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s var(--ease-spring),
    opacity 0.25s ease;
}

.wa-widget.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-header {
  background: linear-gradient(135deg, #1a6630, #128c44);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.wa-header-info {
  flex: 1;
}
.wa-header-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.wa-header-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-online-dot {
  width: 7px;
  height: 7px;
  background: #7fff7f;
  border-radius: 50%;
  display: inline-block;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.wa-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.wa-bubble-area {
  padding: 20px 16px 14px;
  background: #0e1a14;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 0
  );
  background-size: 22px 22px;
}

.wa-bubble {
  background: #1f2e23;
  border: 1px solid #2a3d2e;
  border-radius: 4px 14px 14px 14px;
  padding: 11px 14px;
  max-width: 82%;
  position: relative;
}

.wa-bubble p {
  font-size: 13.5px;
  color: #d4e8d4;
  line-height: 1.55;
  margin: 0;
}
.wa-bubble-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
  margin-top: 5px;
}

.wa-form {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #111;
}

.wa-input {
  width: 100%;
  padding: 10px 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  color: var(--text);
  font-size: 13.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.wa-input:focus {
  border-color: #25d366;
}
.wa-input::placeholder {
  color: #444;
}
.wa-textarea {
  min-height: 72px;
  line-height: 1.5;
}

.wa-send {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #25d366, #1ead55);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    opacity 0.2s,
    transform 0.15s;
  letter-spacing: 0.3px;
}

.wa-send:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.wa-send:active {
  transform: scale(0.98);
}
.wa-send svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.wa-footer-note {
  text-align: center;
  font-size: 11px;
  color: #333;
  margin-top: 2px;
}

.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  animation: badgePop 0.4s var(--ease-spring) forwards;
}

@keyframes badgePop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* ─────────────────── Reveal animations ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children reveals */
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.18s;
}
.reveal:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal:nth-child(5) {
  transition-delay: 0.34s;
}

/* ─────────────────── Mobile Nav Menu ─────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  display: block;
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mob-cta {
  margin-top: 8px;
  padding: 13px 20px;
  background: var(--red);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  display: block;
  transition: background 0.2s;
}

.mobile-menu .mob-cta:hover {
  background: #c02020;
}

/* ─────────────────── Responsive ─────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  #type-text{
    font-size: 20px;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-illustration {
    display: none;
  }
  .why-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .service-card {
    grid-column: span 6 !important;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item:nth-child(1) {
    grid-row: span 1;
  }
  .hero-stats {
    display: inline-flex;
    flex-wrap: wrap;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Wide portfolio card stacks on tablet */
  .portfolio-wide {
    grid-template-columns: 1fr !important;
  }
  .portfolio-wide .portfolio-image {
    height: 240px !important;
    min-height: unset !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 20px 50px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .hero .tagline {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-cta {
    gap: 10px;
    margin-bottom: 36px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* Stats strip → simple row */
  .hero-stats {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.018);
    width: 100%;
    overflow: hidden;
  }

  .stat-item {
    display: flex !important;
    flex-direction: column;
    flex: 1;
    padding: 14px 10px;
    border-right: 1px solid var(--border);
    margin-right: 0;
    text-align: center;
    align-items: center;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .stat-number {
    font-size: 20px;
  }
  .stat-label {
    font-size: 10px;
  }

  /* Sections */
  .services {
    padding: 70px 20px;
  }
  .why-choose {
    padding: 70px 20px;
  }
  .portfolio {
    padding: 70px 20px;
  }
  .sponsors {
    padding: 50px 20px;
  }
  .process {
    padding: 70px 20px;
  }
  .contact {
    padding: 70px 20px;
  }
  footer {
    padding: 50px 20px 20px;
  }

  /* Section labels/titles */
  .section-title {
    font-size: clamp(26px, 7vw, 36px);
    letter-spacing: -1px;
  }
  .section-desc {
    font-size: 15px;
  }

  /* Services */
  .services-grid {
    gap: 12px;
  }
  .service-card {
    grid-column: span 12 !important;
    padding: 24px;
  }
  .service-icon {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-card p {
    font-size: 13.5px;
  }

  /* Why choose */
  .why-content h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .why-content .intro-text {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .feature-item {
    padding: 14px 16px;
  }
  .feature-text h4 {
    font-size: 15px;
  }
  .feature-text p {
    font-size: 13px;
  }

  /* Stats box */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-box .number {
    font-size: 30px;
  }
  .stat-box .label {
    font-size: 12px;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .portfolio-item:nth-child(1) {
    grid-row: span 1;
  }
  .portfolio-image {
    height: 220px !important;
  }
  .portfolio-item:nth-child(1) .portfolio-image {
    min-height: 280px !important;
  }

  /* Make info always visible on mobile (no hover) */
  .portfolio-info p {
    max-height: 80px !important;
    opacity: 1 !important;
    color: #666 !important;
  }
  .portfolio-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
  .portfolio-item:nth-child(1) .portfolio-info {
    transform: translateY(0) !important;
  }

  /* Wide card */
  .portfolio-wide {
    display: block !important;
  }
  .portfolio-wide .portfolio-image {
    height: 200px !important;
    min-height: unset !important;
  }
  .portfolio-wide .portfolio-info {
    padding: 24px !important;
  }
  .portfolio-wide .portfolio-info h3 {
    font-size: 18px !important;
    margin-bottom: 8px;
  }

  /* Sponsors */
  .sponsors::before,
  .sponsors::after {
    width: 60px;
  }
  .sponsor-item {
    min-width: 200px;
    font-size: 13px;
    padding: 14px 18px;
  }

  /* Process */
  .process-timeline::before {
    left: 21px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .step-content h3 {
    font-size: 18px;
  }
  .step-content p {
    font-size: 14px;
  }
  .process-step {
    gap: 24px;
    margin-bottom: 36px;
  }

  /* Contact */
  .contact-wrapper {
    gap: 28px;
    margin-top: 40px;
  }
  .contact-form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }

  /* WhatsApp */
  .wa-widget {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
  }
  .wa-btn {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .wa-btn svg {
    width: 28px;
    height: 28px;
  }

  /* Disable cursor glow on mobile */
  #cursor-glow {
    display: none;
  }

  /* Disable heavy blob animation on mobile */
  .bg-blob {
    display: none;
  }
  .bg-blob-2 {
    display: none;
  }
}

/* Very small phones */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 30px;
  }
  .stat-number {
    font-size: 17px;
  }
  .stat-label {
    font-size: 9px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 11px 18px;
    font-size: 13px;
  }
  .service-card {
    padding: 20px;
  }
}
