:root {
  --background: #080b1a;
  --surface: rgba(20, 25, 50, 0.85);
  --surface-strong: rgba(17, 20, 40, 0.95);
  --accent: #6f8cff;
  --accent-strong: #4e63ff;
  --accent-soft: rgba(111, 140, 255, 0.15);
  --accent-gradient: linear-gradient(135deg, #6f8cff 0%, #9a6bff 48%, #41c6ff 100%);
  --text: #f7faff;
  --text-muted: rgba(247, 250, 255, 0.72);
  --outline: rgba(111, 140, 255, 0.18);
  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", var(--font-base);
  --max-width: 1200px;
  --shadow-lg: 0 40px 80px -32px rgba(17, 21, 45, 0.65);
  --shadow-md: 0 25px 60px -30px rgba(58, 95, 255, 0.35);
  --navbar-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 40px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
  position: relative;
  padding-top: calc(var(--navbar-height) + clamp(24px, 6vw, 72px));
}

main {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 80px);
}

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

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

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@keyframes gradientShift {
  0%, 100% {
    background: radial-gradient(circle at 15% 20%, rgba(111, 140, 255, 0.55), transparent 45%),
                radial-gradient(circle at 90% 10%, rgba(65, 198, 255, 0.45), transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(154, 107, 255, 0.4), transparent 55%);
  }
  50% {
    background: radial-gradient(circle at 25% 30%, rgba(111, 140, 255, 0.45), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(65, 198, 255, 0.55), transparent 55%),
                radial-gradient(circle at 60% 70%, rgba(154, 107, 255, 0.5), transparent 50%);
  }
}

.global-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 15% 20%, rgba(111, 140, 255, 0.55), transparent 45%),
              radial-gradient(circle at 90% 10%, rgba(65, 198, 255, 0.45), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(154, 107, 255, 0.4), transparent 55%);
  filter: blur(0px);
  animation: gradientShift 20s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .global-gradient {
    animation: none;
  }
}

.site-header {
  height: 0;
}

.hero {
  position: relative;
  padding: 24px clamp(24px, 8vw, 64px) 96px;
  overflow: visible;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  min-height: var(--navbar-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8, 11, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(111, 140, 255, 0.2);
  border-radius: 16px;
  padding: 16px 28px;
  position: fixed;
  top: clamp(16px, 4vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max-width) + 48px);
  z-index: 120;
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__logo {
  width: auto;
  height: 36px;
  aspect-ratio: 320 / 81;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.navbar__menu {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.navbar__menu a {
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar__menu .btn {
  margin-left: 12px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
}

.navbar__menu a:hover,
.navbar__menu a:focus {
  background: var(--accent-soft);
  color: var(--text);
}

.hero__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}

.hero__text {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__visual {
  grid-column: span 5;
  position: relative;
  display: flex;
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  body.animations-enabled .hero__text {
    animation: slideInLeft 0.8s ease-out;
  }

  body.animations-enabled .hero__visual {
    animation: slideInRight 0.8s ease-out 0.2s both;
  }

  body.animations-enabled .section {
    animation: fadeInUp 0.6s ease-out;
  }

  body.animations-enabled .section__cta-inline,
  body.animations-enabled .section__cta-standalone {
    animation: fadeInUp 0.6s ease-out 0.3s both;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.2;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.95);
}

h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.65;
  cursor: wait;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #080b1a;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-md), 0 8px 25px -8px rgba(111, 140, 255, 0.4);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--outline);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(111, 140, 255, 0.3);
}

.btn--link {
  background: transparent;
  color: var(--text-muted);
}

.btn--link:hover {
  color: var(--text);
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  font-size: 14px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat__number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.stat__label {
  color: var(--text-muted);
}

.hero__card {
  width: min(360px, 100%);
  background: rgba(12, 18, 40, 0.9);
  border: 1px solid var(--outline);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  backdrop-filter: blur(18px);
}

.hero__card-header {
  padding: 16px 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero__glow {
  position: absolute;
  inset: auto;
  width: 300px;
  height: 300px;
  background: var(--accent-gradient);
  filter: blur(150px);
  opacity: 0.7;
  z-index: -1;
  bottom: -60px;
  animation: pulse 4s ease-in-out infinite;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 8vw, 48px);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.section--alternate {
  background: rgba(8, 11, 26, 0.8);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.section--split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: center;
}

.section--split .section__content {
  grid-column: span 6;
}

.section__visual {
  margin-top: 40px;
}

.section--split .section__visual {
  grid-column: span 6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 20px;
}

.section__cta-inline {
  text-align: center;
  margin-top: 40px;
}

.section__cta-standalone {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 8vw, 48px);
  text-align: center;
}

.section__lead {
  max-width: 720px;
  margin-bottom: 36px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 48px);
}

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

.policy__header h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.policy__header p {
  max-width: 720px;
}

.policy__content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

.policy__content h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  color: rgba(255, 255, 255, 0.95);
}

.policy__content ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy__list-lower-alpha {
  list-style: lower-alpha;
  margin: 12px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy__browser-list {
  list-style: disc;
  margin: 12px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy__browser-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

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

.lh166 {
  line-height: 1.66;
}

.pb-12 {
  padding-bottom: 12px;
}

.pt-36 {
  padding-top: 36px;
}

.disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gradient);
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 40px -32px rgba(0, 0, 0, 0.45);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge--accent {
  background: rgba(111, 140, 255, 0.2);
}

.badge--neutral {
  background: rgba(255, 255, 255, 0.12);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.metric-card {
  display: grid;
  gap: 18px;
  background: rgba(15, 18, 38, 0.9);
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-md);
}

.metric-card__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.metric-card__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.metric-card__value {
  font-size: 22px;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.benefit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.55);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 140, 255, 0.3);
  box-shadow: 0 24px 50px -20px rgba(111, 140, 255, 0.2);
}

.seo-card {
  background: rgba(12, 18, 40, 0.88);
  border-radius: 24px;
  border: 1px solid rgba(111, 140, 255, 0.18);
  padding: 32px;
  width: min(420px, 100%);
  box-shadow: var(--shadow-md);
}

.seo-card__chart {
  background: rgba(255, 255, 255, 0.04);
  height: 120px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.seo-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  padding: 12px;
}

.seo-chart-bar {
  width: 16px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(111, 140, 255, 0.8), rgba(65, 198, 255, 0.6));
}

.seo-chart-bar:nth-child(1) { height: 30%; }
.seo-chart-bar:nth-child(2) { height: 50%; }
.seo-chart-bar:nth-child(3) { height: 70%; }
.seo-chart-bar:nth-child(4) { height: 85%; }
.seo-chart-bar:nth-child(5) { height: 95%; }

.seo-card__footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.seo-card__footer span:first-child {
  color: var(--text-muted);
  font-size: 14px;
}

.seo-card__footer span:last-child {
  color: #79f0bb;
  font-size: 20px;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline__head {
  font-size: 32px;
  font-weight: 700;
  color: rgba(111, 140, 255, 0.95);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: rgba(12, 18, 40, 0.85);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0;
}

.pricing-card--highlight {
  background: rgba(24, 30, 68, 0.92);
  border-color: rgba(111, 140, 255, 0.4);
  transform: translateY(-10px);
}

.chip {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111, 140, 255, 0.18);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-loyalty {
  text-align: center;
  position: relative;
}

.card-loyalty::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 40px;
  width: 150px;
  height: 90px;
  background: url('karta-inowroclawianina.png') no-repeat center;
  background-size: contain;
  background-image: image-set(
    url('karta-inowroclawianina.webp') type('image/webp'),
    url('karta-inowroclawianina.png') type('image/png')
  );
  opacity: 0.15;
  transform: rotate(12deg);
  z-index: 0;
}

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

.card-loyalty__content h2 {
  margin-bottom: 12px;
}

.discount-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.discount-item {
  background: linear-gradient(135deg, rgba(111, 140, 255, 0.12) 0%, rgba(65, 198, 255, 0.08) 100%);
  border: 1px solid rgba(111, 140, 255, 0.25);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.discount-item:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 140, 255, 0.4);
}

.discount-item__label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.discount-item__value {
  display: block;
  font-weight: 700;
  font-size: 24px;
  color: #79f0bb;
}

.card-loyalty__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.case {
  position: relative;
  background: rgba(12, 18, 40, 0.9);
  border-radius: 24px;
  padding: 12px;
  border: 1px solid rgba(111, 140, 255, 0.15);
  box-shadow: 0 24px 48px -20px rgba(11, 15, 35, 0.6);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.case img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.4);
}

.case figcaption {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  padding: 16px 8px 8px;
  text-align: center;
}

.case:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 140, 255, 0.4);
  box-shadow: 0 32px 64px -24px rgba(26, 45, 118, 0.7);
}

.case:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  
  .case img {
    height: 300px;
  }
}

.section--cta {
  background: rgba(14, 18, 42, 0.92);
  border-radius: 32px;
  border: 1px solid rgba(111, 140, 255, 0.25);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(80px, 12vw, 160px);
}

.cta__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.social-proof__item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(111, 140, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-proof__item:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 140, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.social-proof__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rating-text {
  font-size: 18px;
  font-weight: 700;
  color: #79f0bb;
}

.social-proof__number {
  font-size: 28px;
  font-weight: 700;
  color: #79f0bb;
  margin-bottom: 8px;
}

.social-proof__text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.social-proof__link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-proof__link:hover {
  color: #79f0bb;
}

.contact-form {
  grid-column: span 6;
  display: grid;
  gap: 18px;
  background: rgba(5, 8, 20, 0.78);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(111, 140, 255, 0.2);
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 140, 255, 0.25);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  transition: border 0.2s ease, background 0.2s ease;
  font-family: var(--font-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(111, 140, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__row--gdpr {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.contact-form__row--gdpr label {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.contact-form__row--gdpr input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-form__feedback {
  font-size: 14px;
  min-height: 22px;
  color: var(--text);
}

.footer {
  position: relative;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 8vw, 64px) clamp(32px, 6vw, 48px);
  background: rgba(5, 8, 20, 0.85);
  border-top: 1px solid rgba(111, 140, 255, 0.2);
  overflow: hidden;
}

.footer__halo {
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(111, 140, 255, 0.25) 0%, transparent 55%);
  filter: blur(40px);
  opacity: 0.75;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 56px);
  color: rgba(255, 255, 255, 0.72);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 48px);
}

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

.footer__logo {
  width: clamp(140px, 18vw, 180px);
  height: auto;
  aspect-ratio: 320 / 81;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  margin: 0;
  line-height: 1.6;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(111, 140, 255, 0.12);
  border: 1px solid rgba(111, 140, 255, 0.25);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer__column h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer__column li {
  color: rgba(255, 255, 255, 0.72);
}

.footer__column a {
  color: inherit;
  transition: color 0.2s ease;
}

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

.footer__column--contact li:nth-child(n + 3) a {
  font-weight: 600;
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid rgba(111, 140, 255, 0.25);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(111, 140, 255, 0.15) 0%, rgba(65, 198, 255, 0.1) 100%);
  box-shadow: var(--shadow-md);
}

.footer__cta h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 28px);
}

.footer__cta p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__back-to-top {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border: 1px solid rgba(111, 140, 255, 0.4);
  border-radius: 999px;
  transition: all 0.2s ease;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__back-to-top::after {
  content: '↑';
  font-size: 12px;
}

.footer__back-to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(111, 140, 255, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero__text,
  .hero__visual {
    grid-column: span 1;
  }

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

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

  .cta__content,
  .contact-form {
    grid-column: span 1;
  }

  .card-loyalty {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    text-align: center;
  }
  
  .card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-header {
    height: 0;
  }

  body {
    padding-top: calc(var(--navbar-height) + clamp(16px, 6vw, 48px));
  }

  .navbar {
    width: calc(100% - 24px);
  }

  .navbar__actions .btn--ghost {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    right: 24px;
    margin-top: 12px;
    background: rgba(7, 10, 24, 0.95);
    border: 1px solid var(--outline);
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: var(--shadow-md);
    display: none;
  }

  .navbar__menu a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .navbar[data-open="true"] .navbar__menu {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 72px;
  }

  .navbar {
    padding: 16px;
    margin-bottom: 24px;
  }

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

  .timeline__item {
    grid-template-columns: 60px 1fr;
  }

  .contact-form {
    padding: 24px;
  }
}

.contact-form__feedback[data-type="success"] {
  color: #79f0bb;
}

.contact-form__feedback[data-type="error"] {
  color: #ff8a98;
}

.contact-form__feedback[data-type="info"] {
  color: rgba(255, 255, 255, 0.7);
}
