:root {
  --bg: #f6fbfd;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --accent: #0ea5e9;
  --accent-2: #10b981;
  --accent-3: #6366f1;
  --accent-4: #f97316;
  --accent-soft: #e0f6ff;
  --line: #e3ebf3;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(140% 90% at 10% 10%, #e2f6ff 0%, #f6fbfd 30%, #f6fbfd 100%);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--accent);
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--surface);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-foot {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.brand-accent {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  line-height: 1.4;
  font-weight: 800;
}

.feature-section {
  position: relative;
  overflow: hidden;
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 20% 20%, rgba(37, 99, 235, 0.08), transparent 45%), radial-gradient(120% 80% at 80% 0%, rgba(37, 99, 235, 0.06), transparent 50%);
  pointer-events: none;
}

.feature-head {
  max-width: 760px;
}

.feature-tags {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #12306b;
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-weight: 600;
  font-size: 13px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.feature-tags span:nth-child(1):hover {
  background: linear-gradient(135deg, #e0f6ff, #f5fbff);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
  transform: translateY(-3px);
  animation: tagFloat 0.8s ease;
}

.feature-tags span:nth-child(2):hover {
  background: linear-gradient(135deg, #ecfdf3, #f7fff9);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.18);
  transform: rotate(-1deg) translateY(-2px);
  animation: tagSway 0.9s ease;
}

.feature-tags span:nth-child(3):hover {
  background: linear-gradient(135deg, #fff9ed, #fffcf5);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.22);
  transform: scale(1.03) translateY(-2px);
  animation: tagPulse 0.7s ease;
}

@keyframes tagFloat {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-3px);
  }
}

@keyframes tagSway {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-3px);
  }
  100% {
    transform: rotate(-1deg) translateY(-2px);
  }
}

@keyframes tagPulse {
  0% {
    transform: scale(1) translateY(0);
  }
  55% {
    transform: scale(1.07) translateY(-3px);
  }
  100% {
    transform: scale(1.03) translateY(-2px);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: center;
}

nav a {
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted);
}

nav a:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.cta-link {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.hero {
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 0%, rgba(16, 185, 129, 0.1), transparent 60%), radial-gradient(70% 70% at 0% 20%, rgba(14, 165, 233, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.hero-heading h1 {
  font-size: 44px;
  margin: 0;
  line-height: 1.05;
}

.hero-logo {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.hero-copy .lede {
  color: var(--muted);
  margin: 0 0 24px;
}

.lede-list {
  margin: -12px 0 24px;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 8px;
}

.lede-list li {
  list-style: disc;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: var(--accent);
  margin: 0;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

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

.btn.ghost {
  color: var(--text);
  border-color: var(--line);
  background: #fff;
}

.btn.full {
  width: 100%;
  text-align: center;
}

.trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust .pill:nth-child(1):hover {
  background: linear-gradient(135deg, #e0f6ff, #f7fbff);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.18);
  transform: translateY(-3px);
  animation: pillFloat 0.8s ease;
}

.trust .pill:nth-child(2):hover {
  background: linear-gradient(135deg, #ecfdf3, #f8fffb);
  border-color: rgba(16, 185, 129, 0.26);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.16);
  transform: translateY(-2px) scale(1.02);
  animation: pillGlide 0.9s ease;
}

.trust .pill:nth-child(3):hover {
  background: linear-gradient(135deg, #fff7ed, #fffbf5);
  border-color: rgba(249, 115, 22, 0.24);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.18);
  transform: rotate(-1deg) translateY(-2px);
  animation: pillSway 0.85s ease;
}

.trust .pill:nth-child(4):hover {
  background: linear-gradient(135deg, #eef2ff, #f7f7ff);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
  transform: translateY(-3px) scale(1.03);
  animation: pillPulse 0.7s ease;
}

@keyframes pillFloat {
  0% { transform: translateY(0); }
  60% { transform: translateY(-5px); }
  100% { transform: translateY(-3px); }
}

@keyframes pillGlide {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
  100% { transform: translateY(-2px) scale(1.02); }
}

@keyframes pillSway {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-3px); }
  100% { transform: rotate(-1deg) translateY(-2px); }
}

@keyframes pillPulse {
  0% { transform: translateY(0) scale(1); }
  55% { transform: translateY(-4px) scale(1.05); }
  100% { transform: translateY(-3px) scale(1.03); }
}

.hero-card {
  position: relative;
  padding: 26px;
  background: linear-gradient(160deg, #ffffff 0%, #f3f7ff 100%);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.14);
  border: 1px solid rgba(37, 99, 235, 0.16);
  overflow: hidden;
}

.hero-card h3 {
  margin: 0 0 14px;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-card li {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.hero-card small {
  display: block;
  color: var(--muted);
}

.hero-card li:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.floating-badge {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
  padding: 32px 36px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, translate 0.18s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.feature-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card .feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
  flex-shrink: 0;
}
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.24);
  color: var(--accent);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 50%);
  pointer-events: none;
}

.feature-icon svg {
  position: relative;
  z-index: 1;
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(14, 165, 233, 0.12));
  border-color: rgba(16, 185, 129, 0.26);
  color: var(--accent-2);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(14, 165, 233, 0.12));
  border-color: rgba(99, 102, 241, 0.26);
  color: var(--accent-3);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(14, 165, 233, 0.12));
  border-color: rgba(249, 115, 22, 0.26);
  color: var(--accent-4);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.12));
  border-color: rgba(99, 102, 241, 0.26);
  color: var(--accent-3);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(16, 185, 129, 0.12));
  border-color: rgba(249, 115, 22, 0.26);
  color: var(--accent-4);
}

.feature-card:nth-child(7) .feature-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(99, 102, 241, 0.12));
  border-color: rgba(16, 185, 129, 0.26);
  color: var(--accent-2);
}

.feature-card:nth-child(8) .feature-icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(99, 102, 241, 0.12));
  border-color: rgba(14, 165, 233, 0.26);
  color: var(--accent);
}

.feature-card:nth-child(9) .feature-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(249, 115, 22, 0.12));
  border-color: rgba(99, 102, 241, 0.26);
  color: var(--accent-3);
}
.feature-icon svg {
  width: 16px;
  height: 16px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  translate: 0 -2px;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.1);
  border-color: rgba(15, 23, 42, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(16, 185, 129, 0.14));
  border: 1px solid rgba(14, 165, 233, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 12px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 45%);
  pointer-events: none;
}

.card-icon svg {
  position: relative;
  z-index: 1;
}

.card-grid.four .card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.1));
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-2);
}

.card-grid.four .card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.1));
  border-color: rgba(99, 102, 241, 0.25);
  color: var(--accent-3);
}

.card-grid.four .card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(14, 165, 233, 0.1));
  border-color: rgba(249, 115, 22, 0.25);
  color: var(--accent-4);
}

.card.compact h3 {
  margin: 0 0 8px;
}

.card.compact p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.screenshot {
  text-align: center;
  background: linear-gradient(135deg, #eef3ff, #fafcff);
  color: var(--muted);
  border: 1px dashed var(--line);
  font-weight: 700;
}

.screenshot img {
  width: 100%;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
}

.screenshot a {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 999;
  cursor: zoom-out;
}

.lightbox.hidden {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card.media {
  display: grid;
  gap: 10px;
}

.lazy-video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0f172a;
}

.card.media video,
.lazy-video {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  background: #fff;
}

.video-play:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.video-play svg {
  width: 22px;
  height: 22px;
}

.lazy-video-wrap.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.media-label {
  font-weight: 700;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1.25fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 13px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
  background: #f9fcff;
  width: 100%;
  display: block;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.form-feedback {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
  min-height: 20px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding: 6px 10px;
  background: #f7fbff;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  align-items: center;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.info-card p,
.info-card a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  border: 1px solid rgba(37, 99, 235, 0.18);
}
.info-icon svg {
  width: 26px;
  height: 26px;
}
.info-icon.email {
  background: #eef5ff;
}
.info-icon.phone {
  background: #e7fff3;
  color: #0f9d58;
  border-color: rgba(16, 185, 129, 0.2);
}
.info-icon.viber {
  background: #f0eaff;
  color: #7360f2;
  border-color: rgba(115, 96, 242, 0.35);
  box-shadow: 0 10px 22px rgba(115, 96, 242, 0.12);
}
.info-icon.whatsapp {
  background: #e8fff3;
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.12);
}
.info-icon.teams {
  background: #eef0ff;
  color: #5b58f2;
  border-color: rgba(91, 88, 242, 0.35);
  box-shadow: 0 10px 22px rgba(91, 88, 242, 0.12);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.1);
  border-color: rgba(15, 23, 42, 0.08);
}

.info-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.compact-text {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 32px 0 40px;
}

.footer a {
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-heading h1 {
    font-size: 34px;
  }

  nav {
    display: none;
  }

  .cta-link {
    margin-left: auto;
  }

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

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 86px;
  }

  .cta-group {
    flex-direction: column;
  }

  .topbar {
    position: sticky;
  }

  .contact-form {
    grid-template-columns: none;
  }
}
