:root {
  --bg: #0a0a0f;
  --bg-soft: #101018;
  --bg-card: #15151f;
  --bg-card-2: #1b1b28;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f8;
  --text-muted: #a0a0b3;
  --text-dim: #6b6b7d;
  --accent: #7c5cff;
  --accent-2: #b14dff;
  --accent-3: #ff5c8a;
  --gradient: linear-gradient(135deg, #7c5cff 0%, #b14dff 45%, #ff5c8a 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(255, 92, 138, 0.14));
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 18px 50px rgba(124, 92, 255, 0.35);
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2a3a;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ---------- Background effects ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
}

.bg-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.5;
}
.bg-glow--one {
  top: -200px;
  left: -150px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.45), transparent 70%);
}
.bg-glow--two {
  top: 30%;
  right: -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 92, 138, 0.28), transparent 70%);
}
.bg-glow--three {
  bottom: -250px;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(177, 77, 255, 0.3), transparent 70%);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}
.brand__mark svg {
  width: 24px;
  height: 24px;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__text strong {
  font-size: 1.05rem;
}
.brand__text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 82vw);
    background: rgba(12, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 24px 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border-left: 1px solid var(--border);
    z-index: 1001;
  }
  .nav__links.open {
    transform: translateX(0);
  }
  .nav__links a {
    font-size: 1.25rem;
    width: 100%;
    padding: 12px 0;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(124, 92, 255, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.1);
  transform: translateY(-3px);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #06230f;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: #2be071;
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp svg {
  width: 20px;
  height: 20px;
}
.btn--lg {
  padding: 19px 42px;
  font-size: 1.08rem;
}
.btn--block {
  width: 100%;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wa-float svg {
  width: 32px;
  height: 32px;
}
.wa-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 20px 54px rgba(37, 211, 102, 0.6);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
.wa-float__tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-card-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wa-float:hover .wa-float__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gradient-soft);
  border: 1px solid rgba(177, 77, 255, 0.3);
  font-size: 0.82rem;
  font-weight: 500;
  color: #d8c7ff;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero__title .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 38px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.stat__value {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
}
.stat__value .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
}
.hero__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--gradient-soft);
  opacity: 0.5;
  pointer-events: none;
}
.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.hero__card-item {
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  transition: all 0.3s ease;
}
.hero__card-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.hero__card-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.hero__card-item .icon svg {
  width: 20px;
  height: 20px;
}
.hero__card-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.hero__card-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero__card-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 10, 15, 0.9);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.hero__card-floating .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__card-floating .avatar svg {
  width: 22px;
  height: 22px;
}
.hero__card-floating strong {
  display: block;
  font-size: 0.9rem;
}
.hero__card-floating span {
  font-size: 0.75rem;
  color: var(--whatsapp);
  font-weight: 600;
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Section shell ---------- */
.section {
  padding: 110px 0;
}
.section--soft {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0.02) 70%, transparent);
}
.section__head {
  max-width: 700px;
  margin-bottom: 56px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.section__head--center .eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.section__title .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: var(--shadow);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  border: 1px solid rgba(177, 77, 255, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}
.service-card:hover .icon {
  background: var(--gradient);
}
.service-card .icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card__link svg {
  width: 16px;
  height: 16px;
}
.service-card:hover .service-card__link {
  gap: 14px;
}

/* ---------- About preview ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--gradient-soft);
  min-height: 420px;
  display: grid;
  place-items: center;
}
.about__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(124, 92, 255, 0.2) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.6;
}
.about__visual-core {
  position: relative;
  text-align: center;
  padding: 40px;
}
.about__visual-core .logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  box-shadow: var(--shadow-accent);
}
.about__visual-core .logo svg {
  width: 52px;
  height: 52px;
}
.about__visual-core h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.about__visual-core p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about__copy p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}
.about__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
}
.about__point .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about__point .tick svg {
  width: 12px;
  height: 12px;
}

/* ---------- Portfolio ---------- */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.portfolio-item__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-item__bg {
  transform: scale(1.08);
}
.portfolio-item__bg--1 {
  background: linear-gradient(135deg, #6d28d9 0%, #db2777 60%, #f97316 100%);
}
.portfolio-item__bg--2 {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 55%, #8b5cf6 100%);
}
.portfolio-item__bg--3 {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 55%, #db2777 100%);
}
.portfolio-item__bg--4 {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 55%, #3b82f6 100%);
}
.portfolio-item__bg--5 {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 60%, #6366f1 100%);
}
.portfolio-item__bg--6 {
  background: linear-gradient(135deg, #1e293b 0%, #475569 55%, #0ea5e9 100%);
}
.portfolio-item__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(160deg, transparent 40%, rgba(0, 0, 0, 0.65));
}
.portfolio-item__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.portfolio-item__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(10, 10, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.portfolio-item__content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.portfolio-item__content p {
  font-size: 0.85rem;
  opacity: 0.8;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-item__content p {
  transform: translateY(0);
  opacity: 0.8;
}

/* ---------- Why us / process ---------- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.process-step__num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Big WhatsApp CTA ---------- */
.cta {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 80px 56px;
  text-align: center;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% -10%, rgba(124, 92, 255, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 110%, rgba(37, 211, 102, 0.2), transparent 70%);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 85%);
}
.cta > * {
  position: relative;
}
.cta__title {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta__title .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cta__note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact__info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.contact__info-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.contact__item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact__item:last-of-type {
  border-bottom: none;
}
.contact__item .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient-soft);
  border: 1px solid rgba(177, 77, 255, 0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__item .icon svg {
  width: 20px;
  height: 20px;
}
.contact__item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact__item a, .contact__item span {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s ease;
}
.contact__item a:hover {
  color: var(--accent-2);
}
.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.contact__socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.contact__socials a:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-4px);
}
.contact__socials svg {
  width: 18px;
  height: 18px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 20px;
}
.form__group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form__group label span {
  color: var(--accent-3);
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-dim);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.15);
}
.form__group textarea {
  resize: vertical;
  min-height: 130px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--whatsapp);
  font-size: 0.92rem;
  font-weight: 500;
}
.form__success.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial .stars {
  color: #fbbf24;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.testimonial blockquote {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial__author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: 180px 0 90px;
  text-align: center;
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.page-hero__title .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Services detail ---------- */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.35s ease;
}
.service-detail:hover {
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateY(-4px);
}
.service-detail__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.service-detail__top .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-detail__top .icon svg {
  width: 24px;
  height: 24px;
}
.service-detail h2 {
  font-size: 1.4rem;
}
.service-detail > p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 22px;
}
.service-detail__list {
  display: grid;
  gap: 12px;
}
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.service-detail__list .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-detail__list .tick svg {
  width: 11px;
  height: 11px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 20px 0 24px;
  max-width: 320px;
}
.footer__title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}
.footer__links {
  display: grid;
  gap: 12px;
}
.footer__links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__links a:hover {
  color: var(--accent-2);
  transform: translateX(4px);
}
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.25s ease;
}
.footer__socials a:hover {
  color: var(--text);
}
.footer__socials svg {
  width: 18px;
  height: 18px;
}
.footer__contact {
  display: grid;
  gap: 16px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__contact-item a {
  transition: color 0.25s ease;
}
.footer__contact-item a:hover {
  color: var(--accent-2);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  color: var(--text-dim);
  font-size: 0.86rem;
}
.footer__bottom .links {
  display: flex;
  gap: 24px;
}
.footer__bottom .links a {
  color: var(--text-dim);
  font-size: 0.86rem;
  transition: color 0.25s ease;
}
.footer__bottom .links a:hover {
  color: var(--text);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero {
    padding: 150px 0 80px;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
  .cta {
    padding: 60px 30px;
  }
}

@media (max-width: 620px) {
  .services__grid,
  .portfolio__grid,
  .process__grid {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    gap: 24px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta__actions .btn {
    width: 100%;
  }
  .wa-float__tip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
