/* Bonusera promo — design-aligned styles */
:root {
  --blue: #002AA9;
  --blue-light: #088AE1;
  --orange: #EC7600;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --benefit-blue: #e0eef9;
  --benefit-beige: #faf4eb;
  --benefit-purple: #efe8f4;
  --benefit-green: #e8f5e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: clip;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 20px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

/* Solid header after passing hero */
.site-header.site-header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .logo img {
    height: 24px;
  }

  .site-header .btn-primary {
    font-size: 14px;
    padding: 0.5rem 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-primary {
  background: linear-gradient(0deg, #82A6D5 0%, #0130A9 100%);
  color: var(--white);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.btn-primary:hover {
  text-decoration: none;
}

/* Header CTA (Book a demo) */
.site-header .btn-primary {
  /* same styling as .btn-primary (kept for clarity) */
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  padding: 4rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #DDE5F5 0%, #F3F7FF 100%);
  /* Curved bottom edge — fixed geometry so it doesn’t change in responsive */
  border-radius: 0 0 100vmax 100vmax / 0 0 90px 90px;
  transform: scaleX(1.1);
  transform-origin: top center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 500px;
}

.hero-title {
  margin: 50px 0 1rem 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 500px;
  text-align: left;
  background: linear-gradient(90deg, #0031AA 0%, #088BE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: left;
  line-height: 1.5;
}

.hero-image-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Try it now button — same as book a demo but orange (FF8000) */
.btn-hero-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  background: linear-gradient(0deg, #FF8000 0%, #FF9933 100%);
  color: var(--white);
}

.btn-hero-cta:hover {
  opacity: 0.9;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-content .btn-hero-cta {
    align-self: center;
  }

  .hero-title {
    font-size: 28px;
    max-width: 100%;
    text-align: left;
  }

  .hero-description {
    text-align: left;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Intro */
.intro {
  padding: 3.5rem 0 2.5rem;
}

.intro-inner {
  text-align: center;
}

.intro-title {
  margin: 100px auto 1rem;
  display: inline-block; /* ensure gradient ends with text width */
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(90deg, #0031AA 0%, #088BE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-text {
  margin: 0 auto;
  max-width: 56rem;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 500; /* medium */
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .intro {
    padding: 2.5rem 0 0rem;
  }

  .intro-title {
    font-size: 28px;
  }
}

/* Features */
.features {
  position: relative;
  padding: 140px 0 0;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  grid-template-rows: auto auto auto auto 260px;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Desktop: blocks in col 1, sticky image in col 2; hide mobile image wraps */
.features-layout > .feature-block:nth-child(1) { grid-column: 1; grid-row: 1; }
.features-layout > .feature-block:nth-child(2) { grid-column: 1; grid-row: 2; }
.features-layout > .features-image-sticky { grid-column: 2; grid-row: 1 / 6; align-self: start; }
.features-layout > .features-image-wrap--mobile { display: none; }
.features-layout > .feature-block:nth-child(5) { grid-column: 1; grid-row: 3; }
.features-layout > .feature-block:nth-child(6) { grid-column: 1; grid-row: 4; }
.features-layout > .feature-block:last-of-type { margin-bottom: 0; }

/* Sticky image container — desktop only, vertically centered in viewport */
.features-image-sticky {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  width: 100%;
  max-width: 460px;
  margin-right: 0;
  margin-top: 180px; /* starting offset — pushes block down initially */
  z-index: 1;
  overflow: visible;
}

.features-image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 460 / 449;
  min-height: 364px;
  z-index: 1;
}

.features-image-sticky::before {
  content: "";
  position: absolute;
  left: 58%;
  top: calc(18% + 100px);
  transform: translate(-50%, -50%);
  width: 1081px;
  height: 811px;
  background-image: url("/promo-assets/images/orange_back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.features-image-sticky::after {
  content: "";
  position: absolute;
  left: 54%;
  top: 64%;
  transform: translate(-50%, -50%);
  width: 1415px;
  height: 908px;
  background-image: url("/promo-assets/images/blue_back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.features-image-sticky.features-image-sticky--orange::before {
  opacity: 1;
}

.features-image-sticky.features-image-sticky--blue::after {
  opacity: 1;
}

.features-image-stack .features-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.features-image-stack .features-image--active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Video row for Free-to-Play block — 3 videos, center larger */
.features-image-stack .features-image--video-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.features-image-stack .features-image--video-row video {
  display: block;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  width: auto;
}

.features-image-stack .features-image--video-row video:nth-child(1) {
  height: 240px;
  margin-right: -30px;
  position: relative;
  z-index: 0;
}

.features-image-stack .features-image--video-row video:nth-child(2) {
  height: 300px;
  position: relative;
  z-index: 1;
}

.features-image-stack .features-image--video-row video:nth-child(3) {
  height: 240px;
  margin-left: -30px;
  position: relative;
  z-index: 0;
}

.features-image-wrap--top::before {
  content: "";
  position: absolute;
  left: 60%;
  top: 20%;
  transform: translate(-50%, -50%);
  width: 1081px;
  height: 811px;
  background-image: url("/promo-assets/images/orange_back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.features-image-wrap {
  position: relative;
  z-index: 1;
  margin-left: auto; /* align wraps to the right edge */
}

.features-image-wrap--top {
  width: 100%;
  max-width: 460px;
  margin-left: -35px;
  margin-right: 0;
}

.features-image-wrap--bottom {
  width: 100%;
  max-width: 410px;
  margin-top: 40px;
}

.features-image-wrap--bottom::before {
  content: "";
  position: absolute;
  left: 55%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 1415px;
  height: 908px;
  background-image: url("/promo-assets/images/blue_back.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.features-image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.features-layout > .feature-block {
  margin-bottom: 150px;
}

.feature-heading {
  margin: 0 0 0.75rem;
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #0031AA 0%, #088BE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .feature-heading {
    font-size: 28px;
  }

  .features {
    padding: 80px 0 50px;
  }

  .features-layout {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  /* Hide sticky container on mobile */
  .features-layout > .features-image-sticky {
    display: none;
  }

  /* Show mobile image wraps */
  .features-layout > .features-image-wrap--mobile {
    display: block;
  }

  .features-layout > .feature-block:nth-child(1),
  .features-layout > .feature-block:nth-child(2),
  .features-layout > .feature-block:nth-child(5),
  .features-layout > .feature-block:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  /* Mobile order: Image1, Mini Lobby, Free-to-Play Games, Image2, Tournaments, Gift Store */
  .features-layout > .features-image-wrap--top { order: 1; }
  .features-layout > .feature-block:nth-child(1) { order: 2; }
  .features-layout > .feature-block:nth-child(2) { order: 3; }
  .features-layout > .features-image-wrap--bottom { order: 4; }
  .features-layout > .feature-block:nth-child(5) { order: 5; }
  .features-layout > .feature-block:nth-child(6) { order: 6; }

  .features-layout > .feature-block {
    margin-bottom: 2.5rem;
  }

  .features-layout > .features-image-wrap--top,
  .features-layout > .features-image-wrap--bottom {
    grid-column: auto;
    grid-row: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%; /* 50% size on mobile */
  }

  .features-image-wrap--top {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0rem;
    margin-bottom: 2rem;
  }

  .features-image-wrap--bottom {
    margin-top: 0rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .features-image-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  /* Allow blue glow to show (blur extends outside box) */
  .features-image-wrap--bottom {
    overflow: visible;
  }

  /* Allow orange glow to show (blur extends outside box) */
  .features-image-wrap--top {
    overflow: visible;
  }

  .features-image-wrap--top::before {
    width: 340px;
    height: 232px;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
  }

  .features-image-wrap--bottom::before {
    width: 340px;
    height: 218px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.feature-content p {
  margin: 0 0 1rem;
  color: var(--gray-600);
  max-width: 500px;
}

.feature-block .btn {
  margin-top: 0.5rem;
}

/* Features CTA (Try Widget block) */
.features-cta {
  padding: 10px 0 70px;
}

.try-widget-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #EC7600;
  border-radius: 50px;
  padding: 1.25rem 3rem;
  position: relative;
  overflow: hidden;
  height: 200px;
  transform-origin: center;
  animation: try-widget-pulse 2.4s ease-in-out infinite;
}

@keyframes try-widget-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(236, 118, 0, 0);
  }
  50% {
    transform: scale(1.015);
    box-shadow: 0 14px 36px rgba(236, 118, 0, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .try-widget-block {
    animation: none;
  }
}

.try-widget-content {
  flex: 0 0 auto;
  z-index: 2;
  position: relative;
}

.try-widget-title {
  margin: 0 0 1.5rem;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  line-height: 1.2;
}

.btn-try-widget {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  background: var(--white);
  color: #EC7600;
}

.btn-try-widget:hover {
  opacity: 0.9;
  text-decoration: none;
}

.try-widget-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 1;
}

.try-widget-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 768px) {
  .try-widget-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    border-radius: 30px;
    height: 182px;
    min-height: 0;
  }


  .try-widget-title {
    font-size: 32px;
  }

  .try-widget-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    justify-content: flex-end;
    align-items: stretch;
  }

  .try-widget-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
}

/* Benefits */
.benefits {
  padding: 4rem 0;
  background: transparent;
}

.benefits-inner {
  text-align: center;
  margin-bottom: 2.25rem;
}

.benefits-title {
  margin: 0 auto 1rem;
  display: inline-block; /* ensure gradient ends with text width */
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(90deg, #0031AA 0%, #088BE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefits-text {
  margin: 0 auto;
  max-width: 56rem;
  font-size: 16px;
  font-weight: 500; /* medium */
  color: var(--gray-600);
}

.benefits-text strong {
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

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

  .benefit-card {
    width: 100%;
  }
}

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

  .benefit-card {
    width: 100%;
    min-height: 0;
  }

  .benefits-title {
    font-size: 28px;
  }
}

.benefit-card {
  width: min(530px, 100%);
  min-height: 300px;
  padding: 1.5rem;
  border-radius: 12px;
}

.benefit-card.benefit-card--reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 600ms ease, transform 600ms ease;
}

.benefit-card.benefit-card--reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.benefit-card--blue {
  background: #DFEAFF;
}

.benefit-card--beige {
  background: #FFEFDE;
}

.benefit-card--purple {
  background: #FBF1FF;
}

.benefit-card--green {
  background: #D7E9D9;
}

.benefit-title {
  margin: 0 0 0.5rem;
  font-size: 48px;
  font-weight: 700;
  color: #4D4D4D;
}

@media (max-width: 768px) {
  .benefit-title {
    font-size: 32px;
  }
}

.benefit-card p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}

/* Mid CTA */
.cta-mid {
  padding: 4rem 0;
  background: var(--white);
}

.cta-mid .container {
  text-align: center;
}

.cta-mid-title {
  margin: 0;
  display: inline-block; /* ensure gradient ends with text width */
  font-size: 72px;
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(
    90deg,
    #0031AA 0%,
    #088BE2 16.66%,
    #0031AA 33.33%,
    #088BE2 50%,
    #0031AA 66.66%,
    #088BE2 83.33%,
    #0031AA 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  will-change: background-position;
  animation: cta-mid-gradient-wave 5.2s linear infinite;
}

@keyframes cta-mid-gradient-wave {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-mid-title {
    animation: none;
  }
}

@media (max-width: 768px) {
  .cta-mid-title {
    font-size: 28px;
  }

  .demo-heading {
    font-size: 28px;
  }

  .advantages-heading {
    font-size: 28px;
  }
}

/* Advantages */
.advantages {
  padding: 4rem 0;
  background: transparent;
}

.advantages-heading {
  margin: 0 0 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}

/* Tail background (starts at Advantages and continues to footer) */
.tail-bg {
  position: relative;
  overflow: hidden;
}

.tail-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #DDE5F5 0%, #F3F7FF 100%);
  /* Curved top edge — fixed geometry so it doesn’t change in responsive */
  border-radius: 100vmax 100vmax 0 0 / 90px 90px 0 0;
  transform: scaleX(1.1);
  transform-origin: top center;
}

.tail-bg > * {
  position: relative;
  z-index: 1;
}

/* Flat background (no curved edge) e.g. privacy page */
.tail-bg--flat::before {
  border-radius: 0;
  transform: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.advantage-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 346px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .advantage-card {
    min-height: 0;
  }
}

.advantage-icon {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  margin: 0 0 1rem 0;
  align-self: flex-start;
}

.advantage-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
}

.advantage-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.advantages-cta {
  text-align: center;
}

/* Demo section */
.demo-section {
  padding: 4rem 0;
  background: transparent;
}

.demo-heading {
  margin: 0 0 2rem;
  font-size: 48px;
  font-weight: 700;
  color: #0031AA;
  text-align: center;
}

.demo-form {
  max-width: none;
  margin: 0;
}

.demo-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  box-shadow: 0 12px 40px rgba(0, 42, 169, 0.08);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 1.75rem;
}

.demo-field {
  min-width: 0;
}

.demo-field--full {
  grid-column: 1 / -1;
}

.demo-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.demo-field input,
.demo-field textarea {
  width: 100%;
  font-size: 16px; /* >=16px prevents iOS zoom on focus */
  font-family: inherit;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0;
  background: transparent;
  outline: none;
}

.demo-field textarea {
  resize: none;
}

.demo-field input:focus,
.demo-field textarea:focus {
  border-bottom-color: rgba(0, 42, 169, 0.8);
}

.demo-actions {
  margin-top: 1.5rem;
}

.demo-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-contact-email {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
}

.demo-contact-email:hover {
  color: var(--blue);
  text-decoration: none;
}

.demo-consent {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-800);
  margin: 0 0 1.25rem;
  opacity: 0.7;
}

.demo-policy {
  color: var(--blue);
  text-decoration: underline;
}

.demo-section .btn.btn-primary {
  padding: 0.65rem 1.1rem;
  font-size: 12px;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
    column-gap: 1.25rem;
  }

  .demo-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9375rem;
}

.form-feedback.success {
  background: var(--benefit-green);
  color: #1b5e20;
}

.form-feedback.error {
  background: #ffebee;
  color: #b71c1c;
}

/* Privacy Policy page */
.policy-page {
  padding: 6rem 0 3rem;
  background: transparent;
}

.policy-title {
  margin: 0 0 0.25rem;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #0031AA 0%, #088BE2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.policy-updated {
  margin: 0 0 2.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
}

.policy-body {
  max-width: 56rem;
}

.policy-body > p:first-of-type {
  margin-top: 0;
}

.policy-body p {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-of-type {
  margin-bottom: 0;
}

.policy-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
}

.policy-section p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
}

.policy-section ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
}

.policy-section li {
  margin-bottom: 0.35rem;
}

.policy-section li:last-child {
  margin-bottom: 0;
}

.policy-address {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.policy-body a {
  color: var(--blue);
  text-decoration: underline;
}

.policy-body a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 5rem 0 2.5rem;
  }

  .policy-title {
    font-size: 28px;
  }
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  background: transparent;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}

.footer-email {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-300);
  border-radius: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.footer-links a:hover {
  color: var(--blue);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
