@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500;600&display=swap");

:root {
  --brand-blue: #3d7dff;
  --brand-blue-deep: #0057b8;
  --brand-red: #ff1f1f;
  --brand-red-warm: #ff5a36;
  --brand-mint: #5dcfb5;
  --brand-violet: #8a7bff;
  --hero-surface: #d8d2c9;
  --ink-0: #0b0c10;
  --ink-1: #14151a;
  --ink-2: #2a2d36;
  --ink-3: #4a4e5a;
  --ink-4: #6b7280;
  --ink-5: #9ca3af;
  --ink-6: #c9cdd4;
  --ink-7: #e4e7ec;
  --paper-0: #ffffff;
  --paper-1: #fafbfd;
  --paper-2: #f4f5f8;
  --status-success: #1fa971;
  --font-display: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease-out-soft: cubic-bezier(0.16, 0.84, 0.3, 1);
  --shadow-glass:
    0 20px 40px rgba(40, 50, 90, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink-0);
  font-family: var(--font-body);
  background:
    radial-gradient(
      1100px 760px at 100% -10%,
      rgba(255, 201, 212, 0.62),
      transparent 62%
    ),
    radial-gradient(
      980px 760px at -10% 18%,
      rgba(200, 216, 255, 0.72),
      transparent 60%
    ),
    radial-gradient(
      920px 680px at 88% 98%,
      rgba(199, 237, 223, 0.45),
      transparent 58%
    ),
    linear-gradient(180deg, #fafbfd 0%, #eef1f7 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px;
  transition: padding 260ms var(--ease-out-soft);
}

.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(1200px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.site-header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 16px 38px rgba(40, 50, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-0);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 180ms var(--ease-out-soft),
    color 180ms var(--ease-out-soft);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--brand-blue-deep);
  background: rgba(20, 21, 26, 0.05);
  outline: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  color: var(--ink-0);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out-soft),
    box-shadow 180ms var(--ease-out-soft),
    opacity 180ms var(--ease-out-soft);
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #5c92ff 0%, #3d7dff 100%);
  box-shadow:
    0 12px 26px rgba(61, 125, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  box-shadow:
    0 16px 34px rgba(61, 125, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-secondary {
  color: var(--ink-1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(20, 21, 26, 0.08),
    0 8px 20px rgba(40, 50, 90, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-whatsapp {
  min-height: 44px;
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  box-shadow:
    0 10px 22px rgba(18, 140, 126, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-warm {
  color: #fff;
  background: linear-gradient(180deg, #ff7a45 0%, #ff5a1f 100%);
  box-shadow:
    0 14px 32px rgba(255, 90, 31, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-top: 178px;
  padding-bottom: 92px;
  background: var(--hero-surface);
  box-shadow: 0 0 0 100vmax var(--hero-surface);
  clip-path: inset(0 -100vmax);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      var(--hero-surface) 0%,
      rgba(216, 210, 201, 0) 12%,
      rgba(216, 210, 201, 0) 88%,
      var(--hero-surface) 100%
    );
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* opacity: 0.62; */
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.chip,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chip {
  padding: 7px 15px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.chip-red {
  color: var(--brand-red);
  background: rgba(255, 31, 31, 0.08);
}

.chip-dot,
.section-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.hero-title {
  margin: 22px 0 24px;
  color: var(--ink-0);
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: transparent;
  background: linear-gradient(135deg, #ff5a36 0%, #ff1f1f 42%, #0057b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text,
.section-sub {
  max-width: 650px;
  margin: 0;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.58;
}

.hero-text {
  max-width: 540px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 600;
}

.partner-row strong {
  color: var(--brand-blue-deep);
  font-size: 18px;
}

.partner-row strong:last-child {
  color: #128c7e;
}

.partner-row i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-6);
}

.hero-visual {
  position: relative;
}

.visual-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 640px;
  margin-left: auto;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(
      420px 320px at 18% 16%,
      rgba(255, 179, 159, 0.88),
      transparent 62%
    ),
    radial-gradient(
      420px 320px at 82% 18%,
      rgba(188, 208, 255, 0.9),
      transparent 62%
    ),
    radial-gradient(
      500px 360px at 76% 84%,
      rgba(92, 146, 255, 0.72),
      transparent 62%
    ),
    radial-gradient(
      360px 280px at 24% 78%,
      rgba(255, 193, 208, 0.82),
      transparent 58%
    ),
    linear-gradient(135deg, #ffe3dc 0%, #e0d6ff 52%, #c6dcff 100%);
  box-shadow:
    0 40px 100px rgba(80, 60, 140, 0.2),
    0 12px 40px rgba(40, 50, 90, 0.1);
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.46) 0%,
    rgba(255, 255, 255, 0) 30%
  );
  pointer-events: none;
}

.stage-toolbar {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.stage-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.inbox-panel,
.floating-panel,
.service-card,
.voice-feature,
.testimonial-card,
.form-shell,
.contact-list > a,
.contact-list > div {
  position: relative;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44),
    inset 0 -10px 24px rgba(255, 255, 255, 0.28),
    0 24px 50px rgba(40, 50, 90, 0.1),
    0 4px 14px rgba(40, 50, 90, 0.06);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.panel-main {
  position: absolute;
  z-index: 3;
  top: 74px;
  left: 44px;
  right: 44px;
  padding: 20px;
  border-radius: 26px;
}

.floating-panel {
  position: absolute;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-header strong {
  display: block;
  margin-top: 4px;
  color: var(--ink-0);
  font-size: 20px;
}

.panel-kicker {
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--status-success);
  background: rgba(31, 169, 113, 0.1);
  font-size: 11px;
  font-weight: 800;
}

.message-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.48);
}

.message-card + .message-card {
  margin-top: 10px;
}

.message-card.active {
  background: rgba(255, 255, 255, 0.82);
}

.message-card strong {
  display: block;
  font-size: 14px;
}

.message-card p {
  margin: 4px 0 0;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.42;
}

.channel-icon,
.bot-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #fff;
}

.channel-icon svg,
.bot-icon svg {
  width: 18px;
  height: 18px;
}

.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.messenger {
  background: linear-gradient(135deg, #5c92ff, #0057b8);
}

.telegram {
  background: linear-gradient(135deg, #8a7bff, #3d7dff);
}

.bot-panel {
  z-index: 4;
  top: 370px;
  right: 18px;
  width: 268px;
  min-height: 112px;
  padding: 16px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.bot-panel strong,
.stat-panel strong {
  display: block;
  color: var(--ink-0);
}

.bot-panel p,
.stat-panel p {
  margin: 4px 0 0;
  color: var(--ink-4);
  font-size: 12px;
}

.bot-icon {
  background: linear-gradient(135deg, #ff5a36, #ff1f1f);
}

.typing {
  grid-column: 2;
  display: flex;
  gap: 5px;
  margin-top: -8px;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-blue);
  animation: pulse 1.4s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 140ms;
}

.typing span:nth-child(3) {
  animation-delay: 280ms;
}

.stat-panel {
  z-index: 4;
  left: 36px;
  bottom: 34px;
  width: 292px;
  padding: 18px;
  border-radius: 20px;
}

.stat-panel > span {
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-panel strong {
  margin-top: 2px;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bars {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: flex;
  align-items: end;
  gap: 4px;
  width: 62px;
  height: 42px;
}

.bars i {
  flex: 1;
  min-width: 5px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #1e88e5, #0057b8);
}

.about {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(
      780px 620px at 17% 24%,
      rgba(30, 80, 160, 0.55),
      transparent 64%
    ),
    radial-gradient(
      700px 540px at 88% 88%,
      rgba(255, 90, 54, 0.18),
      transparent 62%
    ),
    linear-gradient(135deg, #0b1f45 0%, #0a2f66 56%, #061634 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.section-eyebrow {
  color: var(--brand-red);
  margin-bottom: 18px;
}

.about .section-eyebrow {
  color: #ffb39f;
}

.section-title {
  max-width: 790px;
  margin: 0 0 18px;
  color: var(--ink-0);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title.light,
.section-sub.light {
  color: #fff;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.45;
}

.check-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #ff7a45;
}

.about-card {
  max-width: 540px;
  margin-left: auto;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 20, 0.34);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: #0b2b5c;
}

.about-photo img,
.about-photo .about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  transform: scale(1.02);
}

.about-photo .about-video {
  display: block;
  pointer-events: none;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 52, 0.06),
    rgba(6, 22, 52, 0.26)
  );
}

.about-photo span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--ink-0);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.about-stats div {
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  min-height: 388px;
  padding: 8px;
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 260ms var(--ease-out-soft),
    box-shadow 260ms var(--ease-out-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.94),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 32px 60px rgba(40, 50, 90, 0.14),
    0 6px 18px rgba(40, 50, 90, 0.08);
}

.service-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
}

.service-media.blush {
  background:
    radial-gradient(120% 80% at 20% 20%, #ffc1d0 0%, transparent 60%),
    linear-gradient(135deg, #ffe3dc 0%, #ffd9bd 100%);
}

.service-media.mint {
  background:
    radial-gradient(120% 80% at 80% 20%, #c7eddf 0%, transparent 60%),
    linear-gradient(135deg, #dcf1e8 0%, #c8d8ff 100%);
}

.service-media.ocean {
  background:
    radial-gradient(120% 80% at 30% 30%, #bcd0ff 0%, transparent 60%),
    linear-gradient(135deg, #dee6ff 0%, #f8c9d4 100%);
}

.service-media.violet {
  background:
    radial-gradient(120% 80% at 70% 30%, #d6cdff 0%, transparent 60%),
    linear-gradient(135deg, #e6e1ff 0%, #ffd3dd 100%);
}

.service-media > span:not(.badge) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  color: var(--brand-blue-deep);
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 24px rgba(40, 50, 90, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-media svg {
  width: 32px;
  height: 32px;
}

.service-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 22px 18px 8px;
  color: var(--ink-0);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0 18px 20px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.voice-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      820px 560px at 6% 14%,
      rgba(93, 207, 181, 0.32),
      transparent 66%
    ),
    radial-gradient(
      860px 620px at 92% 8%,
      rgba(61, 125, 255, 0.26),
      transparent 68%
    );
}

.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.voice-copy {
  max-width: 760px;
}

.voice-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.voice-feature {
  min-height: 238px;
  padding: 24px;
  border-radius: 24px;
}

.voice-feature > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--brand-blue-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.voice-feature svg {
  width: 22px;
  height: 22px;
}

.voice-feature h3 {
  margin: 20px 0 10px;
  color: var(--ink-0);
  font-size: 18px;
  line-height: 1.2;
}

.voice-feature p {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}

.voice-panel {
  padding: 8px;
  border-radius: 32px;
}

.voice-call-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  color: var(--ink-0);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 80px rgba(40, 50, 90, 0.14);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.voice-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 30% 30%, #bcd0ff 0%, transparent 60%),
    linear-gradient(135deg, #dee6ff 0%, #f8c9d4 100%);
}

.voice-call-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.voice-call-top strong {
  max-width: 190px;
  text-align: right;
  font-size: 20px;
  line-height: 1.15;
}

.voice-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0c7a47;
  background: rgba(37, 211, 102, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.voice-routing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.voice-routing div {
  min-height: 78px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(11, 12, 16, 0.06);
}

.voice-routing span {
  display: block;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-routing strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-0);
  font-size: 13px;
  line-height: 1.25;
}

.workflow {
  padding: 0 0 24px;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.workflow-strip div {
  min-height: 178px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.42);
}

.workflow-strip svg {
  width: 24px;
  height: 24px;
  color: var(--brand-blue-deep);
}

.workflow-strip strong {
  display: block;
  margin-top: 18px;
  color: var(--ink-0);
  font-size: 17px;
}

.workflow-strip p {
  margin: 8px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}

.testimonials {
  background:
    radial-gradient(
      820px 560px at 10% 0%,
      rgba(255, 193, 208, 0.44),
      transparent 66%
    ),
    radial-gradient(
      780px 540px at 100% 100%,
      rgba(188, 208, 255, 0.48),
      transparent 64%
    );
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  border-radius: 28px;
  transition: transform 240ms var(--ease-out-soft);
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 0;
}

.testimonial-card p {
  flex: 1;
  margin: 24px 0;
  color: var(--ink-0);
  font-size: 18px;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 21, 26, 0.08);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.avatar.red {
  background: linear-gradient(135deg, #ff5a36, #ff1f1f);
}

.avatar.blue {
  background: linear-gradient(135deg, #1e88e5, #0057b8);
}

.avatar.green {
  background: linear-gradient(135deg, #5dcfb5, #1fa971);
}

.person strong {
  display: block;
  color: var(--ink-0);
  font-size: 14px;
}

.person span:not(.avatar) {
  display: block;
  margin-top: 2px;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1.08fr);
  gap: 64px;
  align-items: start;
}

.support-main {
  padding-top: 112px;
}

.support-section {
  min-height: calc(100vh - 112px);
}

.support-copy {
  padding-top: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

.contact-list > a,
.contact-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 16px 20px;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
}

.contact-list > a > [data-icon],
.contact-list > div > [data-icon] {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--brand-blue-deep);
}

.contact-list strong {
  color: var(--ink-4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list em {
  margin-top: 2px;
  color: var(--ink-0);
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.form-shell {
  padding: 36px;
  border-radius: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading h2 {
  margin: 0;
  color: var(--ink-0);
  font-size: 24px;
  line-height: 1.15;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--ink-4);
  font-size: 14px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
}

label > span,
legend {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 21, 26, 0.1);
  border-radius: 14px;
  outline: 0;
  color: var(--ink-1);
  background: rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms var(--ease-out-soft),
    box-shadow 180ms var(--ease-out-soft),
    background 180ms var(--ease-out-soft);
}

input {
  height: 50px;
  padding: 0 16px;
}

select {
  height: 50px;
  padding: 0 42px 0 16px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-4) 50%),
    linear-gradient(135deg, var(--ink-4) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 21px,
    calc(100% - 15px) 21px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(61, 125, 255, 0.14);
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-5);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-row button {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 21, 26, 0.1);
  border-radius: 999px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-out-soft),
    background 180ms var(--ease-out-soft),
    color 180ms var(--ease-out-soft);
}

.interest-row button.active {
  color: var(--brand-blue-deep);
  border-color: var(--brand-blue);
  background: rgba(61, 125, 255, 0.1);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.45;
}

.form-footer a {
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.form-success {
  display: grid;
  place-items: center;
  min-height: 452px;
  text-align: center;
}

.form-success-inner {
  max-width: 430px;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.3);
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.5;
}

.form-success h3 {
  margin: 0;
  color: var(--ink-0);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.form-success p {
  margin: 12px 0 24px;
  color: var(--ink-3);
  line-height: 1.55;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.legal-main {
  padding-top: 112px;
}

.legal-hero {
  padding-bottom: 72px;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 56px;
  align-items: end;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--ink-4);
  font-size: 13px;
  font-weight: 700;
}

.legal-toc {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44),
    0 18px 38px rgba(40, 50, 90, 0.1);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.legal-toc a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--brand-blue-deep);
  background: rgba(20, 21, 26, 0.05);
  outline: 0;
}

.legal-content-section {
  padding-bottom: 40px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 820px);
  gap: 64px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 122px;
  padding: 24px 0;
  border-top: 1px solid rgba(20, 21, 26, 0.12);
  border-bottom: 1px solid rgba(20, 21, 26, 0.12);
}

.legal-aside strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside p {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.legal-aside a {
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.legal-article {
  color: var(--ink-1);
}

.legal-article section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(20, 21, 26, 0.09);
}

.legal-article section:last-child {
  margin-bottom: 0;
}

.legal-article h2 {
  margin: 0 0 16px;
  color: var(--ink-0);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-article p,
.legal-article li {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.7;
}

.legal-article p {
  margin: 0 0 16px;
}

.legal-article ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-article li + li {
  margin-top: 10px;
}

.legal-article a {
  color: var(--brand-blue-deep);
  font-weight: 700;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-ghost {
  color: var(--ink-1);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(20, 21, 26, 0.05);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 32px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 21, 26, 0.03) 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(20, 21, 26, 0.08);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}

.footer-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer-lines > span,
.footer-lines > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.footer-lines svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--ink-4);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  margin-bottom: 6px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--brand-blue-deep);
}

.footer-meta-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  margin-top: 4px;
  line-height: 0;
}

.footer-meta-logo img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 220ms var(--ease-out-soft);
}

.footer-meta-logo:hover img {
  opacity: 0.92;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: var(--ink-4);
  font-size: 12px;
}

.footer-bottom strong {
  color: var(--ink-2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms var(--ease-out-soft),
    transform 680ms var(--ease-out-soft);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero-title {
    font-size: 62px;
  }

  .section-title {
    font-size: 48px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .visual-stage,
  .about-card {
    margin-right: auto;
    margin-left: 0;
  }

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

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

  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid {
    gap: 32px;
  }

  .legal-layout {
    gap: 28px;
  }

  .legal-aside {
    position: static;
  }

  .voice-copy {
    max-width: 820px;
  }

  .voice-panel {
    max-width: 620px;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px;
  }

  .nav-shell {
    min-height: 60px;
    padding-left: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 24px 56px rgba(40, 50, 90, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms var(--ease-out-soft),
      transform 180ms var(--ease-out-soft);
  }

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

  .nav-menu a {
    padding: 14px 16px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 140px;
  }

  .hero-grid {
    width: 100%;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        var(--hero-surface) 0%,
        rgba(216, 210, 201, 0.62) 16%,
        rgba(216, 210, 201, 0.62) 84%,
        var(--hero-surface) 100%
      );
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 44px;
  }

  .hero-title {
    font-size: 46px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero-text,
  .section-sub {
    font-size: 16px;
  }

  .legal-main {
    padding-top: 92px;
  }

  .legal-hero {
    padding-bottom: 56px;
  }

  .legal-article h2 {
    font-size: 24px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 15px;
  }

  .visual-stage {
    min-height: 560px;
  }

  .panel-main {
    top: 66px;
    left: 18px;
    right: 18px;
  }

  .bot-panel {
    top: 356px;
    right: 14px;
    width: min(278px, calc(100% - 28px));
  }

  .stat-panel {
    left: 18px;
    width: min(292px, calc(100% - 36px));
  }

  .services-grid,
  .voice-capabilities,
  .workflow-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-strip div {
    min-height: 148px;
  }

  .form-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 460px) {
  .brand span {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .partner-row {
    gap: 10px 14px;
  }

  .visual-stage {
    min-height: 530px;
    border-radius: 28px;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .message-card {
    grid-template-columns: 38px 1fr;
    padding: 12px;
  }

  .channel-icon {
    width: 36px;
    height: 36px;
  }

  .bot-panel {
    top: 348px;
  }

  .stat-panel {
    bottom: 22px;
  }

  .bars {
    display: none;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .voice-call-card {
    padding: 18px;
  }

  .voice-call-top {
    flex-direction: column;
  }

  .voice-call-top strong {
    max-width: none;
    text-align: left;
  }

  .voice-routing {
    grid-template-columns: 1fr;
  }

  .contact-list > a,
  .contact-list > div {
    grid-template-columns: 34px 1fr;
    padding: 14px 16px;
  }

  .form-footer .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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