:root {
  --bg: #060b12;
  --panel: #161c24;
  --panel-2: #1a212b;
  --text: #f8fbff;
  --muted: #b9c4d0;
  --blue: #16a8ff;
  --blue-dark: #0066d6;
  --line: rgba(255, 255, 255, 0.14);
  --field-border: #d8e0ea;
  --field-bg: #f8fafc;
  --success-bg: #d1e7dd;
  --success-text: #0f5132;
  --error-bg: #f8d7da;
  --error-text: #842029;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 168, 255, 0.22), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(0, 102, 214, 0.22), transparent 26rem),
    var(--bg);
}

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

a {
  color: inherit;
}

.page-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.42;
  pointer-events: none;
}

.hero__glow--one {
  background: var(--blue);
  top: -80px;
  left: -60px;
}

.hero__glow--two {
  background: var(--blue-dark);
  right: -60px;
  bottom: -80px;
}

.hero__content,
.brand-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  color: #9fe0ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 11vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero__text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.pill--primary {
  border-color: rgba(22, 168, 255, 0.55);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
}

.brand-card {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin: 14px 0;
}

.services article {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.services span {
  font-size: 1.8rem;
}

.services h2 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
}

.services p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* FORM SECTION */
.form-section {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 12px 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.section-heading {
  width: 100%;
  min-width: 0;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.feedback-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 16px 12px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: #101722;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.grid-two,
.choice-grid,
.rating-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.field,
.field-group {
  display: grid;
  gap: 9px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.field span,
legend {
  color: #172233;
  font-weight: 850;
  line-height: 1.3;
}

small {
  color: #718096;
  font-weight: 700;
}

input[type="text"],
input[type="tel"],
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 16px;
  padding: 15px 14px;
  background: var(--field-bg);
  color: #101722;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 168, 255, 0.14);
}

.field-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-grid label,
.rating-grid label {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  gap: 12px;
  border: 1px solid var(--field-border);
  border-radius: 18px;
  padding: 13px 12px;
  background: var(--field-bg);
  cursor: pointer;
  transition: border 180ms ease, transform 180ms ease, background 180ms ease;
}

.choice-grid label:hover,
.rating-grid label:hover {
  border-color: var(--blue);
  background: #eef8ff;
  transform: translateY(-1px);
}

.choice-grid input,
.rating-grid input {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--blue-dark);
}

.choice-grid span,
.rating-grid span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.35;
}

.captcha-box {
  display: grid;
  gap: 8px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px dashed #bfd1df;
  border-radius: 16px;
  padding: 12px;
  background: var(--field-bg);
}

.h-captcha {
  width: 304px;
  max-width: none;
  transform: scale(0.88);
  transform-origin: left top;
}

.captcha-box p {
  margin: -6px 0 0;
  color: #607086;
  font-size: 0.88rem;
}

.submit-button {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 102, 214, 0.28);
  transition: transform 180ms ease, filter 180ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.form-message {
  display: none;
  margin: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-success {
  display: block;
  color: var(--success-text);
  background: var(--success-bg);
}

.form-message.is-error {
  display: block;
  color: var(--error-text);
  background: var(--error-bg);
}

.hidden {
  display: none !important;
}

.footer {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 12px 30px;
  color: var(--muted);
  text-align: center;
}

/* Very small phones */
@media (max-width: 370px) {
  .page-shell {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero,
  .form-section {
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .feedback-form {
    padding-left: 10px;
    padding-right: 10px;
  }

  .h-captcha {
    transform: scale(0.82);
  }
}

/* Tablets and desktop */
@media (min-width: 620px) {
  .page-shell {
    padding: 24px 16px;
  }

  .hero {
    padding: 30px;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .pill {
    width: auto;
  }

  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0;
  }

  .form-section {
    padding: 26px;
  }

  .feedback-form {
    padding: 24px;
  }

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

  .h-captcha {
    transform: none;
  }

  .captcha-box p {
    margin: 0;
  }
}

@media (min-width: 920px) {
  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    border-radius: 32px;
    padding: 42px;
  }

  .brand-card {
    margin-top: 0;
    border-radius: 26px;
  }

  .hero__text {
    font-size: 1.08rem;
  }

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

  .services article {
    padding: 22px;
  }

  .form-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
    border-radius: 32px;
    padding: 36px;
  }

  .section-heading {
    position: sticky;
    top: 24px;
    margin-bottom: 0;
  }

  .feedback-form {
    border-radius: 24px;
  }
}
