:root {
  --blue: #1461f0;
  --blue-dark: #0a2f7a;
  --blue-soft: #eaf2ff;
  --text: #0b1738;
  --text-soft: #5d6884;
  --line: #d8e2f3;
  --bg: #f5f8fe;
  --white: #ffffff;
  --icon-shell: linear-gradient(180deg, #ffffff 0%, #f3f8ff 56%, #dce9ff 100%);
  --icon-shell-border: rgba(209, 223, 248, 0.98);
  --icon-shell-shadow:
    0 16px 28px rgba(17, 89, 220, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  --icon-core: #0e53d6;
  --icon-accent: #72a8ff;
  --shadow: 0 22px 50px rgba(16, 53, 123, 0.14);
  --shadow-soft: 0 14px 34px rgba(25, 80, 170, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(32, 100, 255, 0.08), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(20, 97, 240, 0.06), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 60%, #ffffff 100%);
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

body.nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  touch-action: none;
}

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

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

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 100%);
  border-bottom: 0;
  padding: 10px 0 8px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 226, 245, 0.94);
  box-shadow:
    0 18px 36px rgba(12, 47, 118, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
}

.brand-logo {
  width: 286px;
  height: auto;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--blue);
  border: 3px solid var(--blue);
  background:
    radial-gradient(circle at 65% 28%, rgba(20, 97, 240, 0.14), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong,
.brand-text em {
  font-style: normal;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 33px;
  font-weight: 800;
}

.brand-text em {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: #27406d;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover {
  background: rgba(20, 97, 240, 0.08);
  color: var(--blue);
  transform: translateY(-1px);
}

.main-nav a.active {
  color: var(--blue);
  background: rgba(20, 97, 240, 0.1);
  box-shadow: inset 0 0 0 1px rgba(20, 97, 240, 0.08);
}

.main-nav a.active::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-small {
  height: 44px;
  padding-inline: 22px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-drawer-cta {
  display: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #1b6af4 0%, #0f57e0 100%);
  box-shadow: 0 14px 24px rgba(18, 93, 230, 0.24);
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border-color: #4f88f8;
}

.btn-light {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(7, 37, 96, 0.2);
}

.btn.block {
  display: flex;
  width: 100%;
}

.hero {
  position: relative;
  padding: 52px 0 48px;
  background:
    radial-gradient(circle at 14% 18%, rgba(118, 169, 255, 0.2), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(56, 116, 255, 0.22), transparent 26%),
    radial-gradient(circle at 22% 76%, rgba(255, 255, 255, 0.82), transparent 19%),
    linear-gradient(180deg, #f9fbff 0%, #edf4ff 52%, #e8f1ff 100%);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, transparent 34%),
    linear-gradient(120deg, transparent 56%, rgba(255, 255, 255, 0.48) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -66px;
  height: 150px;
  background:
    radial-gradient(78% 100% at 20% 0%, transparent 62%, #ffffff 63%),
    radial-gradient(90% 100% at 82% 0%, transparent 58%, #ffffff 59%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 18px 0 36px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(210, 225, 251, 0.96);
  box-shadow: 0 16px 30px rgba(16, 64, 150, 0.08);
  color: #23406f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  animation: fade-up 0.7s ease both;
}

.hero-kicker-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2d79ff 0%, #0f58e2 100%);
  box-shadow: 0 0 0 6px rgba(20, 97, 240, 0.12);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  animation: fade-up 0.7s ease both;
}

.hero-copy p {
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  animation: fade-up 0.7s ease 0.08s both;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
  font-weight: 700;
  animation: fade-up 0.7s ease 0.16s both;
}

.price-line span {
  font-size: 22px;
}

.price-line strong {
  font-size: clamp(56px, 7vw, 82px);
  line-height: 1;
  color: var(--blue);
}

.price-line strong span {
  font-size: 0.55em;
  margin-left: 4px;
}

.price-line small {
  font-size: 23px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  animation: fade-up 0.7s ease 0.24s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  animation: fade-up 0.7s ease 0.28s both;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(210, 225, 251, 0.92);
  color: #35507d;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(17, 72, 168, 0.06);
}

.hero-trust strong {
  color: var(--blue);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  animation: fade-up 0.7s ease 0.36s both;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(210, 225, 251, 0.9);
  box-shadow: 0 14px 24px rgba(17, 72, 168, 0.08);
  backdrop-filter: blur(14px);
}

.point strong,
.point small {
  display: block;
}

.point strong {
  font-size: 15px;
}

.point small {
  font-size: 14px;
  color: var(--text-soft);
}

.point-icon,
.plan-icon,
.reason-icon,
.cta-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
}

.point-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--icon-shell);
  border: 1px solid var(--icon-shell-border);
  box-shadow: var(--icon-shell-shadow);
}

.point-icon::before,
.plan-icon::before,
.reason-icon::before,
.cta-mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.point-icon::after,
.plan-icon::after,
.reason-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 72% 76%, rgba(20, 97, 240, 0.16) 0%, rgba(20, 97, 240, 0) 56%);
  opacity: 0.95;
  z-index: 0;
}

.point-icon.shield::before {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 3 18 5.5v5.4c0 4.1-2.5 7.8-6 9.1-3.5-1.3-6-5-6-9.1V5.5L12 3Z' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m9.5 12 1.6 1.7 3.6-4' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.point-icon.clock::before {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M12 8v4l3 2' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.point-icon.headset::before {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.5 12a6.5 6.5 0 0 1 13 0' stroke='%230e53d6' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='4.5' y='11' width='4' height='6.5' rx='2' stroke='%230e53d6' stroke-width='2'/%3E%3Crect x='15.5' y='11' width='4' height='6.5' rx='2' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M16 18c0 1.4-1.3 2.5-2.9 2.5H12' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  animation: fade-up 0.85s ease 0.14s both;
}

.floating-card {
  position: absolute;
  width: 220px;
  padding: 16px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 248, 255, 0.88) 100%);
  border: 1px solid rgba(218, 229, 246, 0.98);
  box-shadow:
    0 24px 40px rgba(11, 48, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  z-index: 5;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 46px rgba(11, 48, 118, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.floating-card strong,
.floating-card small,
.floating-label {
  display: block;
}

.floating-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.floating-card strong {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.3;
}

.floating-card small {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.trust-card {
  left: 6px;
  bottom: 28px;
  animation: float-slow 7.5s ease-in-out infinite;
}

.review-card {
  right: 10px;
  top: 32px;
  animation: float-slow 8.8s ease-in-out infinite reverse;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(72, 130, 255, 0.18), rgba(72, 130, 255, 0.05));
}

.orb-a {
  width: 440px;
  height: 440px;
  top: -30px;
  left: 80px;
  animation: float-slow 9s ease-in-out infinite;
}

.orb-b {
  width: 540px;
  height: 540px;
  inset: 48px -120px auto auto;
  opacity: 0.75;
  animation: float-slow 12s ease-in-out infinite reverse;
}

.dots {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 70px;
  right: 12px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.86) 1.7px, transparent 1.8px);
  background-size: 18px 18px;
  animation: pulse-soft 5s ease-in-out infinite;
}

.device {
  position: absolute;
  background: linear-gradient(180deg, #252f44 0%, #181d2a 100%);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.device::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: #0d1425;
}

.screen {
  position: absolute;
  inset: 20px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16) 0 18px, transparent 19px),
    linear-gradient(145deg, #0b56d9 0%, #123f9f 52%, #0a214f 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.screen-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.screen::before,
.screen::after {
  content: "";
  position: absolute;
}

.screen::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0 18px, transparent 18px),
    linear-gradient(180deg, transparent 0 36px, rgba(255, 255, 255, 0.12) 36px 38px, transparent 38px),
    linear-gradient(180deg, transparent 0 58px, rgba(255, 255, 255, 0.92) 58px 76px, transparent 76px),
    linear-gradient(180deg, transparent 0 90px, rgba(255, 255, 255, 0.78) 90px 102px, transparent 102px),
    linear-gradient(180deg, transparent 0 112px, rgba(255, 255, 255, 0.3) 112px 124px, transparent 124px),
    linear-gradient(180deg, transparent 0 144px, rgba(255, 255, 255, 0.14) 144px 100%);
  opacity: 0.18;
  z-index: 1;
}

.screen::after {
  right: 9%;
  bottom: 10%;
  width: 26%;
  aspect-ratio: 0.9;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 20%, rgba(255, 255, 255, 0.2) 20% 100%),
    linear-gradient(180deg, #dfe9ff 0%, #b9ceff 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(4, 17, 44, 0.22);
  opacity: 0.42;
  z-index: 2;
}

.laptop {
  width: 470px;
  height: 292px;
  top: 54px;
  left: 28px;
  border-radius: 20px 20px 12px 12px;
  transform: perspective(1200px) rotateY(-14deg) rotateX(8deg);
  z-index: 1;
  animation: laptop-float 7s ease-in-out infinite;
}

.laptop::after {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  bottom: -18px;
  height: 18px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #dce1ea 0%, #bfc6d2 100%);
  box-shadow: 0 10px 26px rgba(25, 41, 86, 0.18);
}

.laptop .screen {
  inset: 16px;
  border-radius: 10px;
}

.device-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(11, 23, 56, 0.74);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 18px rgba(5, 15, 41, 0.18);
  z-index: 5;
}

.tablet {
  width: 250px;
  height: 354px;
  top: 90px;
  right: 18px;
  border-radius: 22px;
  z-index: 2;
  animation: float-slow 8.5s ease-in-out infinite;
}

.tablet::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 54px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  z-index: 2;
}

.tablet .screen {
  inset: 18px;
  border-radius: 16px;
}

.device.phone {
  width: 102px;
  height: 200px;
  bottom: 68px;
  left: 290px;
  border-radius: 22px;
  z-index: 4;
  animation: float-slow 6.4s ease-in-out infinite;
}

.device.phone::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 36px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  z-index: 2;
}

.device.phone .screen {
  inset: 14px 10px;
  border-radius: 12px;
}

.ref-main {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.24) 0 34px, transparent 35px),
    linear-gradient(145deg, #0f5de7 0%, #113d99 50%, #081c43 100%);
}

.ref-side {
  background:
    radial-gradient(circle at 65% 24%, rgba(255, 255, 255, 0.2) 0 24px, transparent 25px),
    linear-gradient(145deg, #0c51ce 0%, #102f78 50%, #081633 100%);
}

.ref-phone {
  background:
    linear-gradient(180deg, #123f9f 0%, #0d56d9 55%, #0a2a69 100%);
}

.tablet .screen::after {
  width: 34%;
  bottom: 8%;
}

.device.phone .screen::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0 10px, transparent 10px),
    linear-gradient(180deg, transparent 0 24px, rgba(255, 255, 255, 0.85) 24px 46px, transparent 46px),
    linear-gradient(180deg, transparent 0 54px, rgba(255, 255, 255, 0.25) 54px 66px, transparent 66px),
    linear-gradient(180deg, transparent 0 72px, rgba(255, 255, 255, 0.25) 72px 84px, transparent 84px),
    linear-gradient(180deg, transparent 0 92px, rgba(255, 255, 255, 0.18) 92px 100%);
}

.device.phone .screen::after {
  width: 58%;
  right: 20%;
  bottom: 10%;
  border-radius: 12px;
}

.mini-card {
  position: absolute;
  right: -2px;
  bottom: 52px;
  width: 188px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 226, 243, 0.8);
  z-index: 6;
}

.mini-card h3 {
  margin: 0 0 14px;
  font-size: 15px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-grid span {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-soft);
}

.mini-grid i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: block;
  background: var(--icon-shell);
  border: 1px solid var(--icon-shell-border);
  position: relative;
  box-shadow: var(--icon-shell-shadow);
  overflow: hidden;
  isolation: isolate;
}

.mini-grid i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.mini-grid i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 72% 76%, rgba(20, 97, 240, 0.14) 0%, rgba(20, 97, 240, 0) 58%);
  z-index: 0;
}

.mini-icon.landing::before {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='4' y='5' width='16' height='14' rx='3' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M4 9.5h16' stroke='%2372a8ff' stroke-width='2'/%3E%3C/svg%3E");
}

.mini-icon.landing::after {
  inset: 5px;
}

.mini-icon.company::before {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 20V8.5L12 5l6 3.5V20' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 20v-4h4v4M9 11h.01M15 11h.01' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.mini-icon.company::after {
  inset: 5px;
}

.mini-icon.store::before {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.5 9.5h15' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M5.2 9.5 6.3 5h11.4l1.1 4.5M6.5 9.5V19h11V9.5' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 19v-4h4v4' stroke='%2372a8ff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mini-icon.store::after {
  inset: 5px;
}

.mini-icon.custom::before {
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%230e53d6' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='m7 7 10 10M17 7 7 17' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.mini-icon.custom::after {
  inset: 5px;
}

.pricing,
.reasons,
.portfolio {
  position: relative;
  padding: 44px 0 34px;
}

.section-kicker {
  margin: 0 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
  opacity: 0.92;
}

.pricing h2,
.reasons h2,
.portfolio h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.96) 100%);
  border: 1.5px solid #dbe5f5;
  box-shadow: 0 18px 38px rgba(8, 46, 108, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: fade-up 0.75s ease both;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, transparent 42%),
    radial-gradient(circle at top right, rgba(32, 115, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.price-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 97, 240, 0.2), rgba(20, 97, 240, 0.95), rgba(20, 97, 240, 0.2));
  opacity: 0.9;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(10, 52, 133, 0.14);
  border-color: #bfd4fb;
}

.price-card.featured {
  padding-top: 68px;
  border-color: #3e7cf5;
  box-shadow: 0 24px 46px rgba(18, 93, 230, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(237, 245, 255, 0.97) 100%);
}

.price-card:nth-child(2) {
  animation-delay: 0.12s;
}

.price-card:nth-child(3) {
  animation-delay: 0.24s;
}

.badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(10, 47, 122, 0.24);
}

.plan-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--icon-shell);
  border: 1px solid var(--icon-shell-border);
  box-shadow: var(--icon-shell-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card:hover .plan-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 20px 34px rgba(15, 83, 208, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.plan-icon.rocket::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.5 4.5c2.6 1.2 4.4 3.8 5 6.8L14 15.8l-5.1 1.2 1.2-5.1 4.5-4.5Z' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='m8.8 15.2-2.8 2.8M14.8 5.2l4 4M10.2 11.2l2.6 2.6' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plan-icon.rocket::after {
  inset: 8px;
}

.plan-icon.globe::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M4 12h16M12 4a12 12 0 0 1 0 16M12 4a12 12 0 0 0 0 16' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.plan-icon.globe::after {
  inset: 8px;
}

.plan-icon.store::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.5 9.5h15' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M5.2 9.5 6.3 5h11.4l1.1 4.5M6.5 9.5V19h11V9.5' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 19v-4h4v4' stroke='%2372a8ff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plan-icon.store::after {
  inset: 8px;
}

.plan-head {
  min-height: 112px;
}

.plan-head h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.plan-head p {
  margin: 0 0 20px;
  color: var(--text);
  font-weight: 600;
}

.plan-head strong {
  font-size: 26px;
  color: var(--blue);
}

.plan-head strong span {
  font-size: 0.62em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-weight: 600;
}

.price-card .btn {
  margin-top: auto;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background:
    center / 12px 12px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6.8 12.3 3.1 3.1 7.3-7.3' stroke='%230e53d6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  border: 1px solid #c5d8fb;
  box-shadow: 0 8px 14px rgba(20, 97, 240, 0.12);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.reasons-grid article {
  text-align: center;
  padding: 26px 18px 22px;
  position: relative;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 247, 255, 0.96) 100%);
  border: 1px solid rgba(214, 226, 245, 0.92);
  box-shadow: 0 18px 34px rgba(12, 53, 128, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: fade-up 0.8s ease both;
}

.reasons-grid article:nth-child(2) {
  animation-delay: 0.08s;
}

.reasons-grid article:nth-child(3) {
  animation-delay: 0.16s;
}

.reasons-grid article:nth-child(4) {
  animation-delay: 0.24s;
}

.reasons-grid article:nth-child(5) {
  animation-delay: 0.32s;
}

.reasons-grid article:nth-child(6) {
  animation-delay: 0.4s;
}

.reasons-grid article:not(:last-child)::after {
  display: none;
}

.reasons-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(12, 53, 128, 0.12);
  border-color: #c7d9fb;
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: var(--icon-shell);
  border: 1px solid var(--icon-shell-border);
  box-shadow: var(--icon-shell-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reasons-grid article:hover .reason-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 22px 34px rgba(17, 89, 220, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.reason-icon.tag::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 4H5.8A1.8 1.8 0 0 0 4 5.8V10l7.7 7.7a2 2 0 0 0 2.8 0l5.2-5.2a2 2 0 0 0 0-2.8L12 4.8A4 4 0 0 0 10 4Z' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='7.5' cy='7.5' r='1.4' fill='%2372a8ff'/%3E%3C/svg%3E");
}

.reason-icon.wand::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m5 19 8-8' stroke='%230e53d6' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='m13 5 1-2 1 2 2 1-2 1-1 2-1-2-2-1 2-1ZM6 13l.6-1.4L8 11l-1.4-.6L6 9l-.6 1.4L4 11l1.4.6L6 13Zm11 6 .8-1.8L19.6 16l-1.8-.8L17 13.4l-.8 1.8-1.8.8 1.8.8L17 19Z' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon.wand::after {
  inset: 8px;
}

.reason-icon.timer::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='13' r='7' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M12 13V9.5m0 3.5 3 1.8M9 3h6' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reason-icon.timer::after {
  inset: 8px;
}

.reason-icon.phone::before {
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='7' y='3.5' width='10' height='17' rx='2.8' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M10.5 6.5h3M11.3 17.3h1.4' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.reason-icon.phone::after {
  inset: 8px;
}

.reason-icon.support::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.5 12a6.5 6.5 0 0 1 13 0' stroke='%230e53d6' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='4.5' y='11' width='4' height='6.5' rx='2' stroke='%230e53d6' stroke-width='2'/%3E%3Crect x='15.5' y='11' width='4' height='6.5' rx='2' stroke='%230e53d6' stroke-width='2'/%3E%3Cpath d='M9.5 19h5' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.reason-icon.support::after {
  inset: 8px;
}

.reason-icon.store::before {
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.5 9.5h15' stroke='%2372a8ff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M5.2 9.5 6.3 5h11.4l1.1 4.5M6.5 9.5V19h11V9.5' stroke='%230e53d6' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 19v-4h4v4' stroke='%2372a8ff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reasons-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.reasons-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

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

.portfolio-card {
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 100%);
  border: 1px solid #e0e8f5;
  box-shadow: 0 18px 32px rgba(14, 50, 118, 0.08);
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
  animation: fade-up 0.8s ease both;
}

.portfolio-card:nth-child(2) {
  animation-delay: 0.14s;
}

.portfolio-card:nth-child(3) {
  animation-delay: 0.28s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 48px rgba(12, 52, 125, 0.14);
  border-color: #c7d9fb;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes laptop-float {
  0%,
  100% {
    transform: perspective(1200px) rotateY(-14deg) rotateX(8deg) translateY(0);
  }

  50% {
    transform: perspective(1200px) rotateY(-14deg) rotateX(8deg) translateY(-12px);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

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

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

.portfolio-image {
  aspect-ratio: 1.6 / 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d9e4f5;
}

.portfolio-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.portfolio-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #17345d;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(9, 37, 94, 0.14);
}

.portfolio-chip.ghost {
  background: rgba(10, 28, 66, 0.52);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.portfolio-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-media {
  transform: scale(1.05);
}

.portfolio-image::before,
.portfolio-image::after {
  content: "";
  position: absolute;
}

.portfolio-image::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0 16px, transparent 16px),
    linear-gradient(180deg, transparent 0 34px, rgba(255, 255, 255, 0.92) 34px 52px, transparent 52px),
    linear-gradient(180deg, transparent 0 62px, rgba(255, 255, 255, 0.2) 62px 100%);
  opacity: 0.28;
  z-index: 1;
}

.portfolio-image::after {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 34%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  opacity: 0.18;
  z-index: 2;
}

.portfolio-copy {
  padding: 16px 8px 6px;
}

.portfolio-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.portfolio-type,
.portfolio-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-type {
  color: var(--blue);
}

.portfolio-link {
  color: #6982ac;
  transition: color 0.25s ease, transform 0.25s ease;
}

.portfolio-card:hover .portfolio-link {
  color: var(--blue);
  transform: translateX(3px);
}

.shot-one {
  background:
    linear-gradient(145deg, #0d4bc0 0%, #1f70ff 52%, #b8d2ff 100%);
}

.shot-two {
  background:
    linear-gradient(145deg, #123e97 0%, #0d63f2 48%, #98beff 100%);
}

.shot-three {
  background:
    linear-gradient(145deg, #0a275f 0%, #114fc9 48%, #84aeff 100%);
}

.portfolio-card h3 {
  margin: 0 0 10px;
  text-align: left;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.portfolio-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.cta {
  position: relative;
  margin-top: 32px;
  padding: 58px 0;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px),
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #0d55dd 0%, #0a3caa 100%);
  background-size: 18px 18px, 18px 18px, auto;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  height: 84px;
  background: #ffffff;
}

.cta::before {
  top: -52px;
  clip-path: ellipse(54% 82% at 50% 100%);
}

.cta::after {
  bottom: -52px;
  clip-path: ellipse(58% 82% at 50% 0%);
}

.cta-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 26px 50px rgba(2, 22, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}

.cta-mark {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(226, 237, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 20px 30px rgba(3, 24, 69, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  animation: pulse-soft 4.2s ease-in-out infinite;
}

.cta-mark::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 18 18 6M8 6h10v10' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cta-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 72% 76%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 58%);
  z-index: 0;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.site-footer {
  position: relative;
  padding: 68px 0 0;
  color: #dbe6ff;
  background:
    radial-gradient(circle at 20% 0%, rgba(67, 122, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #05183f 0%, #02122f 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  color: #aac0ea;
}

.brand-footer .brand-mark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.brand-footer {
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-footer .brand-logo {
  width: 258px;
}

.brand-footer .brand-text strong,
.brand-footer .brand-text em {
  color: var(--white);
}

.site-footer h3 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 20px;
}

.site-footer a {
  display: block;
  margin: 0 0 12px;
  color: #c4d5f2;
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px 24px 20px;
  text-align: center;
  color: #c1d1ee;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    max-width: 680px;
    width: 100%;
    min-height: 560px;
    margin: 0 auto;
  }

  .floating-card {
    width: 208px;
  }

  .review-card {
    right: 0;
    top: 18px;
  }

  .trust-card {
    left: 0;
    bottom: 18px;
  }

  .reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 22px;
  }

  .reasons-grid article:nth-child(3)::after,
  .reasons-grid article:nth-child(6)::after {
    display: none;
  }

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

@media (max-width: 920px) {
  .site-header {
    position: relative;
    z-index: 200;
    overflow: visible;
    padding-top: 10px;
  }

  .nav-wrap {
    display: grid;
    position: relative;
    overflow: visible;
    z-index: 201;
    min-height: unset;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-content: initial;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 28px;
  }

  .brand {
    min-width: 0;
  }

  .nav-backdrop {
    display: none;
  }

  .nav-toggle-btn {
    grid-column: 3;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(214, 226, 245, 0.94);
    box-shadow:
      0 14px 24px rgba(12, 47, 118, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

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

  .nav-toggle-btn span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #20437a;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    grid-column: 2;
    height: 46px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: min(420px, calc(100dvh - 122px));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    margin-top: 0;
    pointer-events: none;
    transform: translateY(-8px);
    z-index: 220;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, padding 0.25s ease;
  }

  .main-nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 50, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: -1;
  }

  .main-nav a {
    justify-content: center;
    min-height: 46px;
    background: rgba(247, 250, 255, 0.84);
    border: 1px solid rgba(216, 226, 243, 0.84);
  }

  .main-nav .nav-drawer-cta {
    display: none;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(214, 226, 245, 0.94);
    box-shadow:
      0 24px 40px rgba(12, 47, 118, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    pointer-events: auto;
    transform: translateY(0);
    backdrop-filter: blur(18px);
  }

  .nav-toggle:checked ~ .main-nav::before {
    opacity: 1;
  }

  .nav-toggle:checked ~ .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 50, 0.18);
    backdrop-filter: blur(4px);
    z-index: 210;
  }

  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    gap: 18px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card {
    width: 190px;
    padding: 14px 15px;
  }

  .floating-card strong {
    font-size: 15px;
  }

  .floating-card small {
    font-size: 12px;
  }

  .laptop {
    width: 420px;
    height: 262px;
    left: 10px;
    top: 58px;
  }

  .tablet {
    width: 220px;
    height: 312px;
    right: 4px;
    top: 94px;
  }

  .device.phone {
    left: 244px;
    bottom: 72px;
  }

  .review-card {
    top: 12px;
    right: 0;
  }

  .trust-card {
    left: 0;
    bottom: 20px;
  }

  .mini-card {
    right: 8px;
    bottom: 36px;
  }

  .plan-head {
    min-height: unset;
  }

  .price-card.featured {
    padding-top: 68px;
  }

  .badge {
    top: 18px;
    left: 26px;
    transform: none;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
}

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

  .brand-logo {
    width: 214px;
  }

  .brand-footer .brand-logo {
    width: 226px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    padding-inline: 4px;
  }

  .pricing,
  .reasons,
  .portfolio {
    padding: 34px 0 26px;
  }

  .hero-copy h1,
  .pricing h2,
  .reasons h2,
  .portfolio h2,
  .cta h2 {
    letter-spacing: -0.03em;
  }

  .hero-visual {
    min-height: 380px;
    max-width: 100%;
    margin-top: 2px;
  }

  .hero-kicker {
    font-size: 12px;
    padding: 9px 13px;
  }

  .price-line {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-trust span {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .hero-points {
    display: none;
  }

  .orb-a {
    width: 280px;
    height: 280px;
    left: 10px;
    top: 6px;
  }

  .orb-b {
    width: 300px;
    height: 300px;
    right: -28px;
    top: 28px;
  }

  .dots {
    width: 82px;
    height: 82px;
    top: 34px;
    right: 10px;
    background-size: 14px 14px;
  }

  .laptop {
    width: 300px;
    height: 190px;
    top: 42px;
    left: 0;
  }

  .tablet {
    width: 150px;
    height: 220px;
    top: 66px;
    right: 0;
  }

  .device.phone {
    width: 76px;
    height: 150px;
    left: 188px;
    bottom: 52px;
  }

  .floating-card {
    display: none;
  }

  .mini-card {
    width: 144px;
    right: 0;
    bottom: 14px;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .mini-card h3 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .device-label {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .mini-grid {
    gap: 8px;
  }

  .mini-grid span {
    font-size: 10px;
  }

  .mini-grid i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .mini-grid i::before {
    inset: 7px;
    border-radius: 6px;
  }

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

  .reasons-grid article::after {
    display: none;
  }

  .portfolio-grid {
    gap: 16px;
  }

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

  .portfolio-card h3,
  .plan-head h3,
  .reasons-grid h3 {
    font-size: 24px;
  }

  .portfolio-card h3 {
    text-align: center;
  }

  .portfolio-copy {
    padding: 12px 2px 2px;
  }

  .portfolio-topline {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .portfolio-overlay {
    top: 12px;
    left: 12px;
    right: 12px;
    justify-content: flex-start;
  }

  .portfolio-chip {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .portfolio-chip.ghost,
  .portfolio-link {
    display: none;
  }

  .portfolio-card p {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    justify-content: flex-start;
  }

  .nav-toggle-btn {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    width: min(100%, 198px);
  }

  .brand-footer {
    padding: 12px 14px;
  }

  .hero-visual {
    min-height: 268px;
  }

  .hero-copy {
    padding-inline: 2px;
  }

  .main-nav {
    font-size: 13px;
    gap: 8px;
  }

  .nav-toggle:checked ~ .main-nav {
    padding-bottom: 14px;
  }

  .main-nav .nav-drawer-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
    min-height: 46px;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-trust {
    display: none;
  }

  .price-card {
    padding-inline: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10.5vw, 38px);
    line-height: 1.02;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-copy p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .price-line {
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-bottom: 18px;
  }

  .portfolio-card {
    padding: 10px;
    border-radius: 24px;
  }

  .portfolio-grid {
    gap: 12px;
  }

  .portfolio-image {
    aspect-ratio: 1.9 / 1;
    border-radius: 18px;
  }

  .portfolio-copy {
    padding: 10px 2px 0;
  }

  .portfolio-card h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .portfolio-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .price-line strong {
    font-size: 54px;
  }

  .price-line small {
    font-size: 17px;
  }

  .laptop {
    width: 236px;
    height: 150px;
    top: 42px;
  }

  .tablet {
    width: 118px;
    height: 176px;
    top: 64px;
  }

  .device.phone {
    width: 62px;
    height: 124px;
    left: 148px;
    bottom: 44px;
  }

  .mini-card {
    width: 124px;
    bottom: 10px;
    padding: 10px;
  }

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

@media (max-width: 390px) {
  .nav-wrap {
    padding: 12px;
  }

  .brand-logo {
    width: min(100%, 176px);
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy {
    padding-inline: 0;
    padding-bottom: 0;
  }

  .hero-copy p {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-kicker {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 10vw, 34px);
    margin-bottom: 14px;
  }

  .price-line {
    margin-bottom: 14px;
  }

  .price-line span {
    font-size: 18px;
  }

  .price-line strong {
    font-size: 48px;
  }

  .price-line small {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 214px;
    margin-top: 0;
  }

  .hero-actions {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-actions .btn {
    height: 46px;
    font-size: 14px;
  }

  .cta-wrap {
    padding: 22px 18px;
    gap: 18px;
  }

  .cta-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-mark {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .cta h2 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .cta p {
    font-size: 14px;
    line-height: 1.55;
  }

  .brand-footer .brand-logo {
    width: 190px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 14px;
    line-height: 1.6;
  }

  .laptop {
    width: 208px;
    height: 132px;
    top: 30px;
    left: 0;
  }

  .tablet {
    width: 96px;
    height: 144px;
    top: 44px;
    right: 0;
  }

  .device.phone {
    width: 48px;
    height: 96px;
    left: 122px;
    bottom: 26px;
  }

  .dots {
    display: none;
  }
}

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

@media (max-width: 520px) and (max-height: 760px) {
  .hero {
    padding-top: 12px;
    padding-bottom: 18px;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-kicker {
    display: none;
  }

  .hero-copy h1 {
    margin-bottom: 10px;
    font-size: clamp(24px, 7.6vw, 30px);
    line-height: 1;
  }

  .hero-copy p {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.42;
  }

  .price-line {
    gap: 4px 8px;
    margin-bottom: 10px;
  }

  .price-line span {
    font-size: 15px;
  }

  .price-line strong {
    font-size: 34px;
  }

  .price-line small {
    font-size: 12px;
  }

  .hero-actions {
    gap: 6px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    height: 42px;
    font-size: 13px;
  }

  .hero-visual {
    display: none;
  }
}
