/* ============================= */
/* RESET */
/* ============================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 229, 255, 0.08), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(111, 99, 255, 0.09), transparent 20%),
    linear-gradient(180deg, #050b16 0%, #07101d 38%, #091425 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.012),
    rgba(255, 255, 255, 0.028)
  );
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(120, 137, 167, 0.2);
  color: #d9e7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  backdrop-filter: blur(14px);
}

.section-title {
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-text {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.95;
}

.text-gradient {
  background: linear-gradient(90deg, #f7fbff 0%, #6bdcff 45%, #85a9ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  transition: var(--transition);
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #13dfff 0%, #6f63ff 100%);
  color: #06111d;
  box-shadow:
    0 16px 38px rgba(18, 219, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px rgba(18, 219, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.09);
  color: #f4f8ff;
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(4, 10, 20, 0.88),
    rgba(4, 10, 20, 0.72)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.navbar::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(105, 220, 255, 0.18),
    transparent
  );
  pointer-events: none;
}

.navbar__inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: max-content;
}

.logo__text {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
  text-transform: lowercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #b7c5db;
  font-size: 16px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav__link span {
  position: relative;
  z-index: 2;
}

.nav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid transparent;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6de1ff, #7d72ff);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav__link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav__link:hover::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav__link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar__cta {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  box-shadow:
    0 12px 28px rgba(17, 211, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(17, 211, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

.hero__ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.18;
}

.hero__ambient--one {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 120px;
  background: #19dfff;
}

.hero__ambient--two {
  width: 300px;
  height: 300px;
  left: -60px;
  bottom: 40px;
  background: #6c63ff;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero__title {
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}

.hero__description {
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.95;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero__meta-item {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.018)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero__meta-label {
  display: block;
  color: #8ea2bf;
  font-size: 13px;
  margin-bottom: 8px;
}

.hero__meta-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.7;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  width: 100%;
  max-width: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}

.hero-frame__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-frame__toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.hero-frame__body {
  padding: 26px;
}

.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-showcase__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #8fdcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-showcase__head h3 {
  font-size: 32px;
  line-height: 1.15;
}

.hero-showcase__signal {
  display: inline-flex;
  align-items: end;
  gap: 5px;
  min-height: 34px;
}

.hero-showcase__signal span {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #13deff, #6d63ff);
}

.hero-showcase__signal span:nth-child(1) {
  height: 12px;
}

.hero-showcase__signal span:nth-child(2) {
  height: 22px;
}

.hero-showcase__signal span:nth-child(3) {
  height: 16px;
}

.hero-showcase__text {
  color: var(--text-muted);
  line-height: 1.95;
  font-size: 16px;
}

.hero-showcase__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card__label {
  display: block;
  color: #8ea2bf;
  font-size: 12px;
  margin-bottom: 6px;
}

.hero-stat-card strong {
  font-size: 15px;
  line-height: 1.6;
}

.hero-showcase__panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-panel-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-card__number {
  display: inline-block;
  margin-bottom: 10px;
  color: #7fd8ff;
  font-size: 13px;
  font-weight: 800;
}

.hero-panel-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-panel-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-float {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.hero-float span {
  font-size: 13px;
  font-weight: 700;
  color: #e8f2ff;
}

.hero-float--one {
  top: 40px;
  left: -20px;
}

.hero-float--two {
  bottom: 40px;
  right: -16px;
}

/* ============================= */
/* WHY */
/* ============================= */

.why-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transition: var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(107, 220, 255, 0.08),
    transparent 36%
  );
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(110, 207, 255, 0.2);
}

.why-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #8fe1ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.95;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 207, 255, 0.22);
}

.service-card--featured {
  border-color: rgba(111, 207, 255, 0.26);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(135deg, rgba(19, 223, 255, 0.04), rgba(111, 99, 255, 0.05));
}

.service-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: #8fe1ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.service-card__head h3 {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.2;
}

.service-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #b7c6db;
  font-size: 13px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.95;
}

/* ============================= */
/* PORTFOLIO */
/* ============================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.portfolio-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  transition: var(--transition);
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(111, 207, 255, 0.08),
    transparent 40%
  );
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 207, 255, 0.22);
}

.portfolio-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.portfolio-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.portfolio-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #8fe1ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.portfolio-card__index {
  font-size: 13px;
  font-weight: 800;
  color: #7fd8ff;
}

.portfolio-card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #b7c6db;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card__title {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.portfolio-card__description {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.portfolio-card__footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-card__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.portfolio-card__footer strong {
  font-size: 16px;
}

/* ============================= */
/* CTA */
/* ============================= */

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    ),
    linear-gradient(135deg, rgba(19, 223, 255, 0.06), rgba(111, 99, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta-box__content {
  max-width: 720px;
}

/* ============================= */
/* CONTACT */
/* ============================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.contact-form {
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.022)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(111, 207, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8ea0b8;
}

.contact-form__submit {
  width: 100%;
  position: relative;
}

.contact-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.contact-submit-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(6, 17, 29, 0.25);
  border-top-color: #06111d;
  border-radius: 50%;
  animation: contactSpin 0.8s linear infinite;
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-info__card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.022)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.contact-info__card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-info__card > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: #8fe1ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__icon--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
}

.contact-item__icon--whatsapp svg {
  stroke: #25d366;
}

.contact-item__content {
  flex: 1;
}

.contact-item__content h4 {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item__content a,
.contact-item__content span {
  font-size: 18px;
  font-weight: 700;
}

.contact-item__content a:hover {
  color: var(--primary);
}

/* ============================= */
/* CONTACT TOAST */
/* ============================= */

.contact-toast {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  width: min(420px, calc(100vw - 32px));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 28, 0.96),
    rgba(8, 14, 26, 0.92)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 1200;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-toast__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-toast__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-toast.is-success .contact-toast__icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.22);
}

.contact-toast.is-success .contact-toast__icon svg {
  stroke: #25d366;
}

.contact-toast.is-error .contact-toast__icon {
  background: rgba(255, 95, 95, 0.12);
  border-color: rgba(255, 95, 95, 0.22);
}

.contact-toast.is-error .contact-toast__icon svg {
  stroke: #ff6b6b;
}

.contact-toast__content {
  flex: 1;
}

.contact-toast__content h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.contact-toast__content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-toast__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #dbe8ff;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-toast__close:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer__logo {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer__text {
  color: var(--text-muted);
  line-height: 1.9;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__contact a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #ffffff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-link__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-link__icon svg {
  width: 18px;
  height: 18px;
  stroke: #8fe1ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-link__icon--whatsapp svg {
  stroke: #25d366;
}

.footer-contact-link--whatsapp:hover {
  color: #25d366;
}

.footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================= */
/* CONTACT VALUE FIX */
/* ============================= */

.contact-value {
  display: inline-block;
}

.contact-value--ltr {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
}

/* ============================= */
/* SMALL IMPROVEMENTS */
/* ============================= */

::selection {
  background: rgba(0, 229, 255, 0.22);
  color: #ffffff;
}