:root {
  --bg: #06100d;
  --bg-deep: #030806;
  --surface: rgba(13, 28, 23, 0.82);
  --surface-solid: #0d1b17;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(139, 236, 186, 0.28);
  --text: #f4fbf7;
  --muted: #9db0a8;
  --muted-light: #cbd8d1;
  --green: #65e6a6;
  --green-strong: #24c87a;
  --green-deep: #0e8e57;
  --lime: #c7f36d;
  --amber: #ffc85c;
  --red: #ff7979;
  --purple: #bf9cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.26);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 44px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 9% 7%, rgba(60, 207, 135, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(199, 243, 109, 0.08), transparent 28rem),
    linear-gradient(180deg, #07120f 0%, #040a08 48%, #06100d 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(101, 230, 166, 0.55);
  outline-offset: 3px;
}

.ambient {
  position: fixed;
  z-index: -4;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.12;
}

.ambient-one {
  top: 8%;
  left: -180px;
  background: var(--green);
}

.ambient-two {
  right: -220px;
  top: 54%;
  background: var(--lime);
}

.section-shell {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  width: var(--container);
  min-height: 70px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(6, 16, 13, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(145%);
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  color: #07120f;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.54), transparent 25%),
    linear-gradient(145deg, var(--lime), var(--green) 53%, var(--green-deep));
  box-shadow: 0 12px 35px rgba(36, 200, 122, 0.24);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.logo-text,
.footer-brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.logo-text strong,
.footer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.logo-text small,
.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transition: right 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.language-switcher button {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  transition: 0.2s ease;
}

.language-switcher button:hover,
.language-switcher button.active {
  color: #062014;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 5px 18px rgba(36, 200, 122, 0.2);
}

.btn,
.cta,
.cta-btn,
.cta-secondary,
.contact-enterprise {
  min-height: 45px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.login {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.signup,
.cta,
.cta-btn,
.contact-enterprise {
  color: #06150e;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 15px 35px rgba(36, 200, 122, 0.18);
}

.login:hover,
.signup:hover,
.cta:hover,
.cta-btn:hover,
.cta-secondary:hover,
.contact-enterprise:hover {
  transform: translateY(-2px);
}

.login:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
}

.signup:hover,
.cta:hover,
.cta-btn:hover,
.contact-enterprise:hover {
  box-shadow: 0 18px 45px rgba(36, 200, 122, 0.3);
}

/* Hero */
.hero {
  position: relative;
  min-height: 930px;
  padding: 146px max(22px, calc((100vw - 1220px) / 2)) 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: url("../bg-supermarket.jpg") center / cover no-repeat;
}

.hero-bg,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  z-index: -4;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 74% 47%, rgba(34, 200, 121, 0.15), transparent 31%),
    linear-gradient(90deg, rgba(2, 9, 7, 0.97) 0%, rgba(3, 11, 8, 0.9) 42%, rgba(4, 12, 9, 0.58) 70%, rgba(3, 9, 7, 0.82) 100%),
    linear-gradient(180deg, rgba(3, 9, 7, 0.4) 0%, rgba(3, 9, 7, 0.74) 74%, #06100d 100%);
}

.hero-pattern {
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 72% 48%, black, transparent 58%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.hero-text {
  animation: hero-copy-in 0.85s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(101, 230, 166, 0.22);
  border-radius: 999px;
  background: rgba(101, 230, 166, 0.075);
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(101, 230, 166, 0.55);
  animation: pulse 2.1s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(101, 230, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(101, 230, 166, 0); }
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 5.45vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
  margin-top: 9px;
  color: var(--green);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 span {
    color: transparent;
    background: linear-gradient(110deg, #e9ffd2 0%, var(--lime) 34%, var(--green) 78%, #98ffd0 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-text > p {
  max-width: 665px;
  margin: 25px 0 0;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.78;
}

.hero-actions-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta,
.cta-btn {
  min-height: 54px;
  padding-inline: 25px;
  border-radius: 15px;
  font-size: 13px;
}

.cta::after,
.cta-btn::after {
  content: "→";
  margin-left: 10px;
  font-size: 17px;
  transition: transform 0.2s ease;
}

.cta:hover::after,
.cta-btn:hover::after {
  transform: translateX(3px);
}

.cta-secondary {
  min-height: 54px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.cta-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
}

.hero-stats {
  max-width: 720px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats > div {
  min-height: 94px;
  padding: 16px 17px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(6, 16, 13, 0.44);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-image {
  position: relative;
  min-height: 585px;
  display: grid;
  place-items: center;
  animation: hero-device-in 1s cubic-bezier(.2,.75,.25,1) 0.15s both;
}

@keyframes hero-device-in {
  from { opacity: 0; transform: translateX(28px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.device-aura {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 223, 143, 0.24), rgba(58, 223, 143, 0.04) 48%, transparent 70%);
  filter: blur(10px);
}

.tablet-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(220, 255, 238, 0.19), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.56),
    0 0 80px rgba(36, 200, 122, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: perspective(1250px) rotateY(-7deg) rotateX(2deg);
}

.tablet-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 30%, transparent 72%, rgba(101, 230, 166, 0.08));
}

.tablet-frame img {
  width: 100%;
  border-radius: 22px;
  background: #07100d;
}

.tablet-camera {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.floating-status {
  position: absolute;
  z-index: 4;
  min-width: 104px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 20, 16, 0.83);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.floating-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.floating-status strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}

.floating-status span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.status-ok {
  left: -12px;
  top: 16%;
}

.status-ok i { background: var(--green); box-shadow: 0 0 14px var(--green); }
.status-warning { right: -7px; top: 30%; }
.status-warning i { background: var(--amber); box-shadow: 0 0 14px var(--amber); }
.status-critical { left: 7%; bottom: 17%; }
.status-critical i { background: var(--red); box-shadow: 0 0 14px var(--red); }

.industry-intro {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 31px;
  width: min(460px, calc(100% - 44px));
  min-height: 50px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(6, 16, 13, 0.65);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.industry-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#industry-text {
  min-width: 180px;
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  text-align: left;
  transition: opacity 0.55s ease;
}

/* Shared section headings */
.section-heading {
  max-width: 840px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow,
.cta-content .eyebrow,
.contact-copy .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2,
.cta-content h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(37px, 5vw, 61px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading h2 span,
.cta-content h2 span {
  color: var(--green);
}

/* Benefits */
.benefits {
  padding-top: 118px;
  padding-bottom: 116px;
}

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

.benefit {
  position: relative;
  min-height: 290px;
  grid-column: span 3;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(101, 230, 166, 0.11), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.benefit::after {
  content: "";
  position: absolute;
  inset: auto -55px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(101, 230, 166, 0.075);
  filter: blur(3px);
}

.benefit:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 95% 0%, rgba(101, 230, 166, 0.17), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.benefit:nth-child(5),
.benefit:nth-child(6) {
  grid-column: span 4;
}

.benefit-wide {
  min-height: 260px;
  grid-column: span 4;
  flex-direction: row;
  gap: 22px;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 230, 166, 0.22);
  border-radius: 17px;
  color: var(--green);
  background: rgba(101, 230, 166, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.benefit p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.benefit-wide .benefit-icon {
  margin-bottom: 0;
}

.benefit-wide p {
  margin-top: 0;
}

/* Workflow */
.features {
  position: relative;
  padding-top: 105px;
  padding-bottom: 116px;
}

.features::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 15% 50%, rgba(101, 230, 166, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.012);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  min-height: 330px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(9, 21, 17, 0.76);
  box-shadow: var(--shadow-soft);
}

.feature-number {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.feature-line {
  height: 1px;
  margin: 25px 0 30px;
  background: linear-gradient(90deg, var(--green), rgba(101, 230, 166, 0.04));
}

.feature h3 {
  margin: 0 0 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  line-height: 1.18;
}

.feature p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Pricing */
.integration-section {
  padding-top: 112px;
  padding-bottom: 24px;
}

.integration-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.integration-section .section-heading p {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.75;
}

.integration-grid {
  margin-top: 44px;
}

.pricing {
  padding-top: 118px;
  padding-bottom: 124px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
  min-height: 590px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(101, 230, 166, 0.09), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.plan:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}

.plan.featured {
  border-color: rgba(101, 230, 166, 0.43);
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 243, 109, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(101, 230, 166, 0.105), rgba(255, 255, 255, 0.025));
  box-shadow: 0 30px 95px rgba(10, 102, 63, 0.18);
}

.plan.enterprise {
  background:
    radial-gradient(circle at 100% 0%, rgba(191, 156, 255, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(191, 156, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #052014;
  background: linear-gradient(135deg, var(--lime), var(--green));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 230, 166, 0.25);
  border-radius: 14px;
  color: var(--green);
  background: rgba(101, 230, 166, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.enterprise .plan-icon {
  color: var(--purple);
  border-color: rgba(191, 156, 255, 0.25);
  background: rgba(191, 156, 255, 0.08);
}

.plan h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.plan .price {
  margin: 24px 0 0;
  color: var(--purple) !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px !important;
  font-weight: 700;
}

.plan ul {
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.55;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #052014;
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.enterprise li::before {
  background: var(--purple);
}

.contact-enterprise {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 0;
}

.enterprise .contact-enterprise {
  color: #120c1d;
  background: linear-gradient(135deg, #e0d2ff, var(--purple));
  box-shadow: 0 15px 35px rgba(191, 156, 255, 0.16);
}

#plans-footer {
  grid-column: 1 / -1;
  max-width: 850px !important;
  margin: 34px auto 0 !important;
  color: var(--muted) !important;
  font-size: 13px;
  line-height: 1.75;
  text-align: center !important;
}

/* CTA */
.cta-section {
  position: relative;
  min-height: 620px;
  padding: 90px 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: url("../bg-office.jpg") center / cover no-repeat;
}

.cta-bg,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-bg {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.06);
}

.cta-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 45%, rgba(101, 230, 166, 0.16), transparent 31%),
    linear-gradient(90deg, rgba(3, 10, 7, 0.92), rgba(4, 13, 9, 0.67), rgba(3, 10, 7, 0.92)),
    linear-gradient(180deg, rgba(2, 8, 6, 0.45), rgba(2, 8, 6, 0.88));
}

.cta-content {
  width: min(850px, 100%);
  padding: 58px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background: rgba(6, 16, 13, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.cta-content .eyebrow {
  justify-content: center;
}

.cta-content p {
  max-width: 660px;
  margin: 24px auto 32px;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.78;
}

/* Contact */
.contact {
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-card {
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 65px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 14%, rgba(101, 230, 166, 0.12), transparent 31%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  font-size: clamp(38px, 4vw, 57px);
}

.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.contact-link {
  min-height: 88px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  transform: translateX(5px);
  border-color: var(--line-strong);
  background: rgba(101, 230, 166, 0.065);
}

.contact-link > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #052014;
  background: linear-gradient(135deg, var(--lime), var(--green));
  font-size: 18px;
}

.contact-link div {
  display: grid;
  gap: 3px;
}

.contact-link small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 15px;
}

/* Footer */
.footer {
  width: var(--container);
  min-height: 110px;
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Authentication modal */
#loginModal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 50% 28%, rgba(101, 230, 166, 0.07), transparent 28rem),
    #06100d;
  backdrop-filter: none;
}

#loginModal.active {
  display: flex;
  animation: modal-backdrop 0.22s ease both;
}

@keyframes modal-backdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  position: relative;
  width: min(460px, 100%);
  padding: 38px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(101, 230, 166, 0.14), transparent 32%),
    #0b1814;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.58);
  animation: modal-card 0.28s cubic-bezier(.2,.75,.25,1) both;
}

@keyframes modal-card {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-box::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--lime));
}

.modal-box h2 {
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  letter-spacing: -0.035em;
  text-align: center;
}

.modal-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.modal-box input {
  width: 100%;
  min-height: 52px;
  margin: 0 0 11px;
  padding: 0 15px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.modal-box input::placeholder {
  color: #71857c;
}

.modal-box input:focus {
  border-color: rgba(101, 230, 166, 0.48);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(101, 230, 166, 0.08);
  outline: none;
}

.modal-box button {
  width: 100%;
  min-height: 50px;
  margin-top: 9px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.modal-box button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

#login-btn {
  color: #052014;
  background: linear-gradient(135deg, var(--lime), var(--green));
}

#signup-btn {
  color: var(--text);
  border: 1px solid rgba(101, 230, 166, 0.28);
  background: rgba(101, 230, 166, 0.09);
}

#close-modal {
  min-height: 42px;
  color: var(--muted-light);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.modal-box .extra-note,
#msg {
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.55;
  text-align: center;
}

#register-extra {
  margin-top: 12px !important;
}

/* Responsive */
@media (max-width: 1120px) {
  .main-nav { display: none; }
  .hero { min-height: auto; padding-top: 142px; padding-bottom: 105px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-text { max-width: 800px; }
  .hero-image { width: min(720px, 100%); min-height: 530px; margin: 0 auto; }
  .benefit { grid-column: span 6; }
  .benefit:nth-child(5), .benefit:nth-child(6), .benefit-wide { grid-column: span 6; }
  .benefit-wide { flex-direction: column; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan.enterprise { min-height: 470px; }
  .contact-card { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1220px); }
  html { scroll-padding-top: 82px; }
  .header {
    top: 8px;
    min-height: 62px;
    padding: 8px 9px 8px 12px;
    border-radius: 18px;
  }
  .logo-mark { width: 37px; height: 37px; border-radius: 11px; }
  .logo-text strong { font-size: 14px; }
  .logo-text small { font-size: 8px; }
  .language-switcher { display: none; }
  .login { display: none; }
  .signup { min-height: 41px; padding-inline: 13px; font-size: 10px; }
  .hero {
    min-height: auto;
    padding: 118px 14px 92px;
  }
  .hero-layout { gap: 42px; }
  .hero-kicker { font-size: 9px; letter-spacing: 0.08em; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); line-height: 1.01; }
  .hero-text > p { font-size: 15px; line-height: 1.72; }
  .hero-actions-row { align-items: stretch; flex-direction: column; }
  .cta, .cta-secondary { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { min-height: 78px; grid-template-columns: 72px 1fr; align-items: center; }
  .hero-stats strong { font-size: 21px; }
  .hero-image { min-height: 375px; }
  .tablet-frame { width: 96%; border-radius: 24px; transform: none; }
  .tablet-frame img { border-radius: 16px; }
  .floating-status { min-width: 88px; padding: 9px 10px; }
  .floating-status strong { font-size: 15px; }
  .status-ok { left: 0; top: 9%; }
  .status-warning { right: 0; top: 29%; }
  .status-critical { left: 4%; bottom: 10%; }
  .industry-intro { bottom: 22px; gap: 9px; }
  .industry-label { font-size: 8px; }
  #industry-text { min-width: 140px; font-size: 13px; }
  .benefits, .features, .pricing, .contact { padding-top: 86px; padding-bottom: 86px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .cta-content h2, .contact-copy h2 { font-size: clamp(34px, 10vw, 47px); }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit,
  .benefit:nth-child(5),
  .benefit:nth-child(6),
  .benefit-wide { grid-column: auto; min-height: 250px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: 285px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan, .plan.enterprise { grid-column: auto; min-height: auto; }
  .cta-section { min-height: 590px; padding: 70px 14px; }
  .cta-content { padding: 40px 22px; border-radius: 28px; }
  .cta-content p { font-size: 14px; }
  .contact-card { padding: 28px 21px; border-radius: 25px; }
  .contact-link { min-height: 80px; padding: 14px; }
  .contact-link strong { font-size: 13px; }
  .footer { align-items: flex-start; flex-direction: column; }
  .modal-box { padding: 30px 20px; border-radius: 24px; }
}

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


.pricing-trial-note {
  grid-column: 1 / -1;
  margin: 4px auto 0;
  text-align: center;
  font-weight: 700;
  color: var(--green-700, #176b4d);
}
