:root {
  --avaia-green: #00d414;
  --avaia-green-2: #7dff8b;
  --avaia-green-3: #dfffe3;

  --bg: #061009;
  --bg-2: #08160d;
  --bg-3: #0d1e13;

  --text: #f7fff8;
  --muted: rgba(247, 255, 248, 0.72);
  --soft: rgba(247, 255, 248, 0.08);
  --line: rgba(125, 255, 139, 0.18);
  --line-strong: rgba(125, 255, 139, 0.28);
  --white-line: rgba(255, 255, 255, 0.12);

  --card: rgba(7, 19, 11, 0.74);
  --card-2: rgba(255, 255, 255, 0.055);

  --radius: 30px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
video {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(6, 16, 9, 0.68);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 104px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 212, 20, 0.22));
}

.nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--avaia-green-2);
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 212, 20, 0.12);
  border: 1px solid var(--line);
  color: var(--avaia-green-2);
  font-weight: 800;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 66px;
  background: var(--bg);
}

.hero-poster,
.hero-video,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-poster {
  z-index: -5;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(1.25);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  opacity: 0.42;
}

.hero-video.is-hidden {
  display: none;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 16, 9, 0.98) 0%, rgba(6, 16, 9, 0.88) 42%, rgba(6, 16, 9, 0.58) 100%),
    radial-gradient(circle at 18% 24%, rgba(0, 212, 20, 0.27), transparent 23rem),
    radial-gradient(circle at 78% 38%, rgba(125, 255, 139, 0.18), transparent 26rem);
}

.hero-pattern {
  z-index: -2;
  background-image:
    linear-gradient(rgba(125, 255, 139, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 255, 139, 0.052) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-bottom-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.86fr);
  gap: 92px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-logo-wrap {
  width: min(370px, 82vw);
  padding: 0;
  margin: 0 0 12px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-logo-wrap img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 38px rgba(0, 212, 20, 0.24));
}

.hero-kicker,
.section-kicker {
  margin: 0 0 16px;
  color: var(--avaia-green-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 900;
}

.hero-kicker {
  width: min(370px, 82vw);
  margin: 0 0 34px;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.1;
  font-weight: 720;
  color: var(--avaia-green-2);
  text-shadow: 0 0 28px rgba(0, 212, 20, 0.24);
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(42px, 6.3vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.068em;
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16.5px, 1.7vw, 19.5px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  color: #031006;
  background: var(--avaia-green);
  box-shadow: 0 18px 44px rgba(0, 212, 20, 0.30);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--avaia-green-2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--white-line);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  background: rgba(125, 255, 139, 0.12);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--avaia-green-2);
  background: rgba(0, 212, 20, 0.09);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

/* LIVE CHAT */

.live-chat-card {
  position: relative;
  z-index: 4;
  transform: translateY(-72px);
}

.phone-shell {
  overflow: hidden;
  height: 548px;
  max-height: calc(100svh - 132px);
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  border: 1px solid rgba(125, 255, 139, 0.20);
  background:
    radial-gradient(circle at top right, rgba(0, 212, 20, 0.16), transparent 18rem),
    rgba(6, 12, 8, 0.88);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.035);
}

.avatar-dot {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #041006;
  background: var(--avaia-green);
  font-weight: 1000;
  box-shadow: 0 0 0 6px rgba(0, 212, 20, 0.10);
}

.chat-header-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.chat-header-copy strong {
  font-size: 15.5px;
}

.chat-header-copy span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.online-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--avaia-green-2);
  background: rgba(0, 212, 20, 0.09);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.online-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--avaia-green);
  box-shadow: 0 0 0 5px rgba(0, 212, 20, 0.12);
}

.chat-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 18px;
  background:
    linear-gradient(rgba(255,255,255,0.018), rgba(255,255,255,0.018)),
    radial-gradient(circle at 30% 20%, rgba(0, 212, 20, 0.08), transparent 18rem);
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 255, 139, 0.35) transparent;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(125, 255, 139, 0.35);
  border-radius: 999px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.message-row {
  display: flex;
  align-items: flex-end;
}

.message-row.lara {
  justify-content: flex-start;
}

.message-row.diego {
  justify-content: flex-end;
}

.message-bubble {
  width: fit-content;
  max-width: 84%;
  padding: 11px 13px;
  border-radius: 18px;
  line-height: 1.38;
  font-size: 13.5px;
  white-space: pre-line;
  animation: bubbleIn 0.26s ease both;
}

.message-row.lara .message-bubble {
  border-bottom-left-radius: 7px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255,255,255,0.07);
}

.message-row.diego .message-bubble {
  border-bottom-right-radius: 7px;
  color: #041006;
  background: var(--avaia-green);
  font-weight: 760;
}

.typing-row {
  display: flex;
  justify-content: flex-start;
  animation: bubbleIn 0.2s ease both;
}

.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 17px;
  border-bottom-left-radius: 7px;
  color: rgba(247, 255, 248, 0.76);
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 12.5px;
}

.typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--avaia-green-2);
  animation: typingDot 1s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.14s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.28s;
}

.chat-input-preview {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.035);
}

.chat-input-preview span {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(247,255,248,0.45);
  background: rgba(255,255,255,0.07);
  font-size: 13px;
}

.send-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--avaia-green-2) 0 28%, transparent 29%),
    var(--avaia-green);
  box-shadow: 0 12px 30px rgba(0, 212, 20, 0.24);
}

/* PROCESS TIMELINE */

.process-timeline {
  position: absolute;
  left: -175px;
  top: 118px;
  width: 198px;
  padding: 14px 14px 13px;
  border-radius: 20px;
  border: 1px solid rgba(125, 255, 139, 0.22);
  background: rgba(5, 16, 8, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  z-index: 6;
}

.process-title {
  margin: 0 0 12px;
  color: var(--avaia-green-2);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 30px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 16px;
  width: 1px;
  height: 18px;
  background: rgba(125, 255, 139, 0.22);
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--avaia-green);
  box-shadow: 0 0 0 5px rgba(0, 212, 20, 0.12);
  animation: processPulse 1.9s infinite ease-in-out;
}

.process-step:nth-child(3) .process-dot {
  animation-delay: 0.18s;
}

.process-step:nth-child(4) .process-dot {
  animation-delay: 0.36s;
}

.process-step:nth-child(5) .process-dot {
  animation-delay: 0.54s;
}

.process-step:nth-child(6) .process-dot {
  animation-delay: 0.72s;
}

.process-step p {
  margin: 0;
  color: rgba(247, 255, 248, 0.78);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 650;
}

/* SECTIONS */

.section {
  position: relative;
  padding: 104px 0;
}

.avatars-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 212, 20, 0.12), transparent 27rem),
    var(--bg);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading h2,
.experience-panel h2,
.contact-box h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.section-heading p,
.experience-panel p,
.contact-box p,
.capability-card p,
.experience-item p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.capability-card {
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(0, 212, 20, 0.10), transparent 14rem),
    var(--card-2);
}

.capability-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--avaia-green-2);
  background: rgba(0, 212, 20, 0.11);
  font-weight: 1000;
}

.capability-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.experience-section {
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.experience-panel {
  padding: 36px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(0, 212, 20, 0.18), transparent 18rem),
    rgba(255,255,255,0.045);
}

.experience-list {
  display: grid;
  gap: 16px;
}

.experience-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,0.045);
}

.experience-item span {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--avaia-green);
  box-shadow: 0 0 0 7px rgba(0, 212, 20, 0.10);
}

.experience-item p {
  margin: 0;
}

.contact-section {
  background: var(--bg-2);
}

.contact-box {
  text-align: center;
  padding: 66px 34px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(0, 212, 20, 0.20), transparent 26rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.contact-email-box {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 14px 18px;
  display: grid;
  gap: 5px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 212, 20, 0.08);
}

.contact-email-box span {
  color: var(--avaia-green-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email-box a {
  color: var(--text);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-email-box a:hover {
  color: var(--avaia-green-2);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--white-line);
  color: rgba(247,255,248,0.58);
  background: #040a06;
}

.footer-inner {
  text-align: center;
}

/* CHANNELS */

.channels-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 212, 20, 0.13), transparent 28rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.centered {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 44px;
}

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

.channel-card {
  min-height: 285px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(0, 212, 20, 0.10), transparent 14rem),
    rgba(255, 255, 255, 0.045);
}

.channel-card.featured-channel {
  border-color: rgba(125, 255, 139, 0.34);
  background:
    radial-gradient(circle at top right, rgba(0, 212, 20, 0.20), transparent 16rem),
    rgba(0, 212, 20, 0.075);
}

.channel-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--avaia-green-2);
  background: rgba(0, 212, 20, 0.10);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.channel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.web-note {
  margin-top: 20px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.web-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.web-note a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #031006;
  background: var(--avaia-green);
  font-weight: 900;
}

.web-note a:hover {
  background: var(--avaia-green-2);
}

/* CONTACT */

.contact-box > p {
  max-width: 760px;
  margin: 22px auto 34px;
}

/* ANIMATIONS */

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(7px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingDot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes processPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* RESPONSIVE */

@media (max-width: 1060px) {
  .hero {
    padding-top: 118px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .live-chat-card {
    max-width: 620px;
    margin: 0 auto;
    transform: none;
  }

  .phone-shell {
    height: 560px;
    max-height: none;
  }

  .process-timeline {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

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

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

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

  .web-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 78px;
  }

  .hero-logo-wrap,
  .hero-kicker {
    width: min(300px, 86vw);
  }

  .phone-shell {
    height: 540px;
    max-height: none;
    border-radius: 30px;
  }

  .process-timeline {
    padding: 14px;
  }

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

  .capability-card {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-link img {
    width: 88px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button,
  .web-note a {
    width: 100%;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: 12px;
  }

  .chat-header {
    align-items: flex-start;
  }

  .online-pill {
    display: none;
  }

  .message-bubble {
    max-width: 94%;
  }

  .section {
    padding: 76px 0;
  }

  .contact-box,
  .experience-panel {
    padding: 40px 22px;
  }
}

/* PLATFORM SECTION */

.platform-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 212, 20, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.platform-showcase {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.platform-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.platform-points {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-points article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.platform-points h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.platform-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .platform-points {
    grid-template-columns: 1fr;
  }
}

/* CONTACT FORM — AVAIA */

.contact-form {
  width: min(720px, 100%);
  margin: 34px auto 22px;
  display: grid;
  gap: 14px;
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 255, 248, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(125, 255, 139, 0.20);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 255, 248, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(125, 255, 139, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 212, 20, 0.10);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
  color: var(--avaia-green-2);
  font-size: 14px;
  font-weight: 800;
}

.contact-secondary {
  width: fit-content;
  max-width: 100%;
  margin: 10px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(247, 255, 248, 0.68);
  font-size: 15px;
}

.contact-secondary span {
  color: rgba(247, 255, 248, 0.62);
  font-weight: 650;
}

.contact-secondary a {
  color: var(--avaia-green-2);
  font-size: 17px;
  font-weight: 850;
}

.contact-secondary a:hover {
  color: var(--text);
}

/* HEADER WHATSAPP ICON */

.whatsapp-cta {
  width: 54px;
  min-height: 40px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.45);
  color: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.16);
}

.whatsapp-cta svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

.whatsapp-cta:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #7dff8b;
}

/* SOCIAL ICONS — FINAL */

.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-link svg {
  width: 38px;
  height: 38px;
  display: block;
}

/* Instagram */
.ig-bg {
  fill: url(#ig-gradient);
}

.ig-camera,
.ig-lens {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
}

.ig-dot {
  fill: #ffffff;
}

/* Facebook */
.fb-bg {
  fill: #1877f2;
}

.fb-mark {
  fill: #ffffff;
}

/* TikTok */
.tt-bg {
  fill: #000000;
}

.tt-cyan {
  fill: #25f4ee;
  transform: translate(-1.2px, 1.1px);
  opacity: 0.95;
}

.tt-red {
  fill: #fe2c55;
  transform: translate(1.2px, -0.8px);
  opacity: 0.95;
}

.tt-white {
  fill: #ffffff;
}

/* YouTube */
.yt-bg {
  fill: #ff0000;
}

.yt-play {
  fill: #ffffff;
}

.social-link:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 212, 20, 0.18);
}

@media (max-width: 760px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-secondary {
    display: grid;
    gap: 6px;
  }
}

.footer-legal {
  margin: 8px 0 0;
  color: rgba(247, 255, 248, 0.42);
  font-size: 13px;
  line-height: 1.5;
}

/* THANKS PAGE */

.thanks-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 212, 20, 0.18), transparent 28rem),
    var(--bg);
}

.thanks-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 58px 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(0, 212, 20, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: min(260px, 82vw);
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 38px rgba(0, 212, 20, 0.22));
}

.thanks-card h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
}

.thanks-card p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}