:root {
  --bg: #060606;
  --bg-soft: #0e0e10;
  --panel: rgba(24, 24, 27, 0.82);
  --panel-strong: rgba(18, 18, 20, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f2f2;
  --muted: #a2a0a7;
  --muted-strong: #c9c7cd;
  --indigo: #4038ff;
  --violet: #8f20ff;
  --magenta: #ff1ba8;
  --rose: #ff4061;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #101010 0%, #070707 18%, #050505 100%);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.noise-layer,
.grid-layer,
.spotlight,
.background-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-fx {
  z-index: -2;
  overflow: hidden;
}

.noise-layer {
  z-index: -3;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 45%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px);
  background-size: 240px 240px, 300px 300px, 270px 270px, 340px 340px;
}

.grid-layer {
  z-index: -2;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.spotlight {
  z-index: -1;
  filter: blur(80px);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.34;
  mix-blend-mode: screen;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

.aurora-one {
  top: 8%;
  left: -8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(64, 56, 255, 0.34), transparent 68%);
}

.aurora-two {
  top: 30%;
  right: -10%;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(255, 27, 168, 0.28), transparent 68%);
  animation-duration: 22s;
}

.aurora-three {
  bottom: 10%;
  left: 20%;
  width: 34rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(143, 32, 255, 0.24), transparent 72%);
  animation-duration: 26s;
}

.light-column {
  position: absolute;
  top: -18%;
  left: 50%;
  width: min(26vw, 18rem);
  height: 70vh;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.18;
  filter: blur(22px);
  animation: lightSweep 10s ease-in-out infinite;
}

.particle-field {
  position: absolute;
  inset: 0;
}

.bg-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.spotlight-left {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 25%);
}

.spotlight-right {
  background:
    radial-gradient(circle at 50% 68%, rgba(139, 32, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 64%, rgba(255, 27, 168, 0.18), transparent 20%);
}

.site-header,
.section {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 1.2rem;
  z-index: 10;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(17, 17, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: none;
  justify-content: center;
  gap: 2rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #ffffff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 0 14px rgba(255, 27, 168, 0.35);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: transform 180ms ease, background 180ms ease;
  align-items: center;
}

.hamburger-line {
  width: 1.2rem;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lead-capture button,
.contact-submit {
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.icon-button {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-button span {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  opacity: 0.9;
}

.icon-button span::after {
  content: "";
  position: absolute;
  width: 0.45rem;
  height: 2px;
  background: #ffffff;
  right: -0.35rem;
  bottom: -0.1rem;
  transform: rotate(45deg);
  border-radius: 999px;
}

.signin-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
}

.signin-button::after {
  content: "→";
  font-size: 0.95rem;
}

.icon-button:hover,
.signin-button:hover,
.lead-capture button:hover,
.contact-submit:hover {
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 3.5rem;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}

.hero-copy {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7d2db;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.hero h1,
.section-heading h2,
.panel-copy h2,
.contact-copy h2 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(3.1rem, 9vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.hero-text,
.section-heading p,
.panel-copy p,
.contact-copy p,
.capture-note,
.form-note {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.whatsapp-button,
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.2rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--indigo), var(--violet) 48%, var(--magenta) 78%, var(--rose));
  box-shadow:
    0 12px 30px rgba(170, 22, 130, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-actions {
  margin: 2rem 0 0.8rem;
  display: flex;
  justify-content: center;
}

.whatsapp-icon {
  display: block;
}

.capture-note {
  margin: 0;
}

.growth-track {
  position: relative;
}

.growth-curve {
  position: relative;
  width: 100%;
  height: 15rem;
}

.growth-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 14px rgba(255, 27, 168, 0.22));
}

.milestones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: -1.25rem;
}

.milestone {
  position: relative;
  padding-top: 1.4rem;
  text-align: center;
}

.milestone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 2.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-50%);
}

.milestone-dot {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.02), 0 0 18px currentColor;
}

.milestone h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.milestone p {
  max-width: 15rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.statement {
  padding-top: 3rem;
  text-align: center;
}

.statement-wrap {
  max-width: 54rem;
  margin-inline: auto;
}

.statement-wrap p {
  margin: 1.5rem 0 0;
  color: #ddd8df;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.7;
  letter-spacing: -0.04em;
}

.avatar-group {
  display: inline-flex;
  margin: 0 0.3rem;
  vertical-align: middle;
}

.avatar {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: -0.35rem;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-a {
  background: linear-gradient(135deg, #ff6c82, #ff1ba8);
}

.avatar-b {
  background: linear-gradient(135deg, #7b2cff, #ff3f8e);
}

.avatar-c {
  background: linear-gradient(135deg, #3930ff, #8f20ff);
}

.capability-pills {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.capability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0edf1;
}

.capability-pill i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: inline-block;
}

.team-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  text-align: left;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(21, 21, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 3rem;
}

.service-item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-item-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.5);
}

.service-item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 20, 1) 0%, transparent 40%);
  pointer-events: none;
}

.service-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-content {
  padding: 1.8rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.service-item-badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 27, 168, 0.1);
  border: 1px solid rgba(255, 27, 168, 0.2);
  color: var(--magenta);
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 0 10px rgba(255, 27, 168, 0.2);
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-highlights li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: #ddd7df;
}

.service-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: bold;
}

.team-card,
.service-item,
.testimonial-card,
.contact-card {
  transform: translateY(0) scale(1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.card-pop {
  opacity: 0;
  transform: translateY(32px) scale(0.92);
}

.card-pop.card-pop-visible {
  animation: cardPopIn 720ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  animation-delay: var(--card-delay, 0ms);
}

.team-card:hover,
.team-card:focus-within,
.service-item:hover,
.service-item:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within,
.contact-card:hover,
.contact-card:focus-within,
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 20px rgba(255, 27, 168, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -32% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 27, 168, 0.2), transparent 72%);
  filter: blur(12px);
}

.team-avatar {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.team-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.team-role {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd7df;
  font-size: 0.78rem;
}

.team-linkedin {
  color: #ddd7df;
  transition: color 200ms ease, transform 200ms ease;
  display: flex;
  align-items: center;
}

.team-linkedin:hover {
  color: #0077b5;
  transform: translateY(-2px);
}

.team-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials-section {
  padding-top: 2rem;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 1;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #070707, rgba(7, 7, 7, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #070707, rgba(7, 7, 7, 0));
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 1rem 0;
  animation: marqueeRight 26s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  min-width: 10rem;
  margin: 0 0.75rem;
  padding: 1rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f1edf2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 56, 255, 0.9), rgba(255, 27, 168, 0.9));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

/* Portfolio Section */
.portfolio-section {
  padding-top: 2rem;
}

.portfolio-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.portfolio-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 300ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 300ms ease, border-color 300ms ease;
  box-shadow: var(--shadow);
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 20, 1) 0%, transparent 40%);
  pointer-events: none;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05) translateY(-5px);
}

.portfolio-content {
  padding: 1.8rem;
  position: relative;
  z-index: 2;
}

.portfolio-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.portfolio-content p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.portfolio-tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ddd7df;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 32, 255, 0.18), transparent 72%);
  filter: blur(16px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-logo {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta strong {
  font-size: 1rem;
}

.testimonial-meta span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-top: 0.4rem;
}

.testimonial-rating svg {
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.testimonial-card p {
  margin: 0;
  color: #ddd8df;
  line-height: 1.8;
}

.section-heading {
  max-width: 38rem;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading h2,
.panel-copy h2,
.contact-copy h2 {
  font-size: clamp(2.45rem, 5vw, 3.6rem);
}

.panel-shell,
.contact-card {
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.panel-shell {
  padding: 1.3rem;
  display: grid;
  gap: 1.4rem;
}

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

.service-card .portfolio-image {
  position: relative;
}

.service-badge-overlay {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(64, 56, 255, 0.95), rgba(255, 27, 168, 0.95));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-card .portfolio-image {
  aspect-ratio: 16 / 10; /* Medium size aspect ratio */
}

.service-highlights {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.service-highlights li {
  position: relative;
  padding-left: 1.2rem;
  color: #d8d2db;
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-highlights li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 0 10px rgba(255, 27, 168, 0.4);
}

/* Clean up old service styles */
.service-item, .service-item-media, .service-item-content, .service-item-header, .service-item-badge {
  display: none;
}

.contact-card {
  padding: 1.4rem;
  display: grid;
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  color: #f4eff3;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 1rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #88828b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 27, 168, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 27, 168, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 12;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #17b857);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(37, 211, 102, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-icon {
  display: block;
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.client-logo-img {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
}

/* =========================================
   Footer
   ========================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 8rem 10% 4rem 10%;
  background: #030105;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8rem;
}

.footer-watermark {
  position: absolute;
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6rem;
  max-width: 76rem;
  margin: 0 auto;
}

.footer-brand .brand {
  margin-bottom: 2.2rem;
  font-size: 1.6rem;
}

.footer-brand p {
  color: #88828b;
  line-height: 1.6;
  max-width: 20rem;
  font-size: 0.95rem;
}

.footer-nav h4, .footer-services h4, .footer-socials h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-nav nav, .footer-services nav, .footer-socials nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a, .footer-services a, .footer-socials a {
  color: #88828b;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav a:hover, .footer-services a:hover, .footer-socials a:hover {
  color: var(--magenta);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 76rem;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: #6b666d;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: #6b666d;
  text-decoration: none;
  transition: color 200ms ease;
  position: relative;
}

.footer-legal a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -0.9rem;
  color: rgba(255, 255, 255, 0.1);
}

.footer-legal a:hover {
  color: #ffffff;
}


@media (min-width: 720px) {
  .whatsapp-button {
    min-width: 15rem;
  }

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

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-shell,
  .contact-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

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

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: row;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: auto;
  }

  .mobile-menu-btn {
    display: none;
  }

  .section {
    padding: 6.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (max-width: 719px) {
  .site-header {
    grid-template-columns: auto 1fr;
    border-radius: 999px;
    padding: 0.6rem 0.8rem 0.6rem 1.2rem;
    align-items: center;
  }

  .brand-text {
    font-size: 1.1rem;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .site-nav {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    background: rgba(17, 17, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
    z-index: 99;
    display: flex;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 3.4rem;
    height: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes auroraDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, -5%, 0) scale(1.08);
  }
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translateX(-50%) scaleY(1);
    opacity: 0.1;
  }
  50% {
    transform: translateX(-50%) scaleY(1.08);
    opacity: 0.24;
  }
}

@keyframes particleFloat {
  0% {
    transform: translate3d(0, 40px, 0) scale(0.85);
    opacity: 0;
  }
  15%,
  75% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(var(--drift-x), -120px, 0) scale(1.2);
    opacity: 0;
  }
}

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

@keyframes cardPopIn {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.92);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.team-avatar img,
.testimonial-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-copy-animated > * {
  opacity: 0;
  animation: heroSlideUp 800ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.hero-copy-animated .section-pill { animation-delay: 150ms; }
.hero-copy-animated h1 { animation-delay: 300ms; }
.hero-copy-animated .hero-text { animation-delay: 450ms; }
.hero-copy-animated .hero-actions { animation-delay: 600ms; }
.hero-copy-animated .capture-note { animation-delay: 750ms; }

@keyframes dash {
  0% {
    stroke-dashoffset: 1800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.growth-curve path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: dash 2.5s ease-out forwards;
  animation-delay: 800ms;
}
