:root {
  --navy: #161632;
  --violet: #91a2ff;
  --green: #5bd994;
  --white: #fff;
}

* { box-sizing: border-box; }

body.info-page {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.info-page button,
.info-page input,
.info-page select,
.info-page textarea {
  font: inherit;
}

.info-page img,
.info-page svg {
  display: block;
}

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

.info-main { min-height: 100vh; }

.info-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 42px 0 70px;
  background:
    radial-gradient(circle at 18% 18%, rgba(91,217,148,.08), transparent 28%),
    var(--navy);
}

.info-hero .hero-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(145,162,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145,162,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.info-hero .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.info-hero .hero-glow-one {
  top: -350px;
  right: -250px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(145,162,255,.16), transparent 68%);
}

.info-hero .hero-glow-two {
  bottom: -450px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91,217,148,.08), transparent 70%);
}

.info-shell {
  position: relative;
  z-index: 1;
}

.info-layout {
  display: grid;
  min-height: calc(100vh - 112px);
  grid-template-columns: minmax(0, 500px);
  align-items: center;
  justify-content: center;
}

.info-card {
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  box-shadow: 0 35px 100px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
}

.info-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.info-card-heading img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.info-card-heading h1 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.info-fieldset {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.info-fieldset legend,
.info-field span {
  display: block;
  margin-bottom: 11px;
  padding: 0;
  color: #d9d9e5;
  font-size: 13px;
  font-weight: 700;
}

.info-field {
  display: block;
  margin-top: 24px;
}

.info-select,
.info-field textarea {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0,0,0,.13);
  font-size: 16px;
  line-height: 1.5;
}

.info-select {
  min-height: 52px;
  padding-right: 52px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 29px) 50%,
    calc(100% - 23px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.info-field textarea {
  min-height: 96px;
  resize: vertical;
}

.info-field textarea::placeholder {
  color: #7f819a;
}

.info-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 57px;
  margin-top: 24px;
  padding: 0 23px;
  border: 0;
  border-radius: 9px;
  color: var(--navy);
  background: var(--violet);
  box-shadow: 0 13px 35px rgba(145,162,255,.2);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.info-whatsapp-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.info-page footer {
  padding: 42px 0;
  color: #9899ac;
  background: #101025;
}

@media (max-width: 760px) {
  body.info-page { min-width: 0; }

  .info-page .container {
    width: min(100% - 30px, 600px);
  }

  .info-hero {
    min-height: auto;
    padding: 18px 0 42px;
  }

  .info-hero .hero-grid {
    display: none;
  }

  .info-layout {
    min-height: calc(100vh - 60px);
  }

  .info-card {
    padding: 17px;
    border-radius: 14px;
  }

  .info-card-heading {
    gap: 12px;
    padding-bottom: 18px;
  }

  .info-card-heading img {
    width: 34px;
    height: 34px;
  }

  .info-card-heading h1 {
    font-size: 26px;
  }

  .info-fieldset {
    margin-top: 20px;
  }

  .info-select {
    min-height: 50px;
  }

  .info-field textarea {
    min-height: 90px;
  }
}

@media (max-width: 360px) {
  .info-page .container {
    width: calc(100% - 24px);
  }
}
