:root {
  --primary: #1a365d;
  --primary-mid: #2c5282;
  --accent: #3b82f6;
  --accent-warm: #2563eb;
  --accent-soft: #dbeafe;
  --bg: #dbeafe;
  --bg-deep: #0f2744;
  --bg-mid: #1e40af;
  --bg-light: #60a5fa;
  --surface: #ffffff;
  --text: #1a202c;
  --text-muted: #4a5568;
  --border: #cbd5e0;
  --success: #059669;
  --error: #dc2626;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26, 54, 93, 0.07);
  --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.1);
  --shadow-lg: 0 16px 40px rgba(26, 54, 93, 0.12);
  --max-form: 440px;
  --max-narrow: 640px;
  --max-wide: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(96, 165, 250, 0.35), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.25), transparent 38%),
    linear-gradient(165deg, #0a1628 0%, #0f2744 18%, #1e3a8a 42%, #2563eb 62%, #93c5fd 82%, #dbeafe 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--max-form);
}

.container-form {
  max-width: calc(var(--max-form) + 40px);
}

.container-narrow {
  max-width: var(--max-narrow);
  text-align: center;
}

.container-wide {
  max-width: var(--max-wide);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(147, 197, 253, 0.45);
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #bfdbfe;
  font-size: 0.85rem;
}

.header-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Intro — on blue gradient */
.page-intro {
  padding: 36px 0 8px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(147, 197, 253, 0.45);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero-title .highlight {
  color: #fcd34d;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 36rem;
  margin: 0 auto;
}

/* Convert: services left + form right */
.convert-section {
  padding: 8px 0 36px;
  scroll-margin-top: 68px;
  position: relative;
}

.convert-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.convert-form {
  order: 1;
}

.convert-services {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.15);
  border-left: 4px solid #60a5fa;
  backdrop-filter: blur(8px);
}

.section-subtitle-left {
  text-align: left;
  margin: 0 0 18px;
}

.convert-services .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.convert-services .service-card {
  background: #f7fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.convert-services .service-icon {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.convert-services .service-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.convert-services .service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.convert-services .section-footer-note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.78rem;
  padding: 12px;
}

.company-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.15);
  border-left: 4px solid #1d4ed8;
  backdrop-filter: blur(8px);
}

.company-panel .section-lead,
.company-panel .section-closing {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.company-panel .section-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0 8px;
}

.company-panel .section-closing {
  margin-bottom: 0;
}

.company-panel .tag-list li {
  font-size: 0.74rem;
  padding: 6px 12px;
}

.company-panel .approach-box {
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 12px 32px rgba(15, 39, 68, 0.15);
  border-left: 4px solid #60a5fa;
  backdrop-filter: blur(8px);
}

.trust-panel .section-lead,
.trust-panel .section-closing {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.trust-panel .section-closing {
  margin-bottom: 0;
}

.trust-panel .trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.trust-panel .trust-item {
  padding: 12px;
}

.trust-panel .trust-item strong {
  font-size: 0.84rem;
}

.trust-panel .trust-item p {
  font-size: 0.78rem;
}

/* Form card */
.form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(15, 39, 68, 0.2);
  border-top: 4px solid #3b82f6;
  backdrop-filter: blur(8px);
}

.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.notes-label-block {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.55;
}

.notes-label-block span[style*='color:#dc2626'],
.notes-label-block span[style*='color: #dc2626'],
.notes-label-block .label-red {
  color: #dc2626;
}

.required {
  color: var(--error);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fafbfc;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
  background: var(--surface);
}

.form-group-highlight {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.form-group-highlight > label {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-chip {
  cursor: pointer;
}

.radio-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-chip span {
  display: inline-block;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  transition: all 0.15s ease;
}

.radio-chip input:checked + span {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-color: #1d4ed8;
  color: #fff;
}

.radio-group-stack {
  flex-direction: column;
}

.radio-group-stack .radio-chip span {
  width: 100%;
  text-align: left;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: var(--radius);
}

.field-error {
  display: block;
  font-size: 0.76rem;
  color: var(--error);
  margin-top: 4px;
  min-height: 1em;
}

.form-alert {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.form-alert.error {
  background: #fef2f2;
  color: var(--error);
  border: 1px solid #fecaca;
}

.form-alert.success {
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid #a7f3d0;
}

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-disclaimer {
  margin-top: 16px;
  padding: 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
}

.form-disclaimer .disclaimer-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-disclaimer .disclaimer-body p {
  font-size: 0.74rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text);
}

.form-disclaimer .disclaimer-body p:last-child {
  margin-bottom: 0;
}

.google-form-embed {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius);
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.92rem;
}

/* Proof strip */
.proof-section {
  padding: 8px 0 40px;
  position: relative;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 8px;
  background: var(--surface);
  text-align: center;
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-highlights li {
  position: relative;
  padding: 12px 14px 12px 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text);
}

.hero-highlights li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  display: flex;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* Section typography */
.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-title-left {
  text-align: left;
}

.section-title-left::after {
  display: none;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: #c5ced8;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.section-footer-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 24px;
  padding: 14px;
  background: #f8fafc;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* Info: company + trust */
.info-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.55) 30%, rgba(255, 255, 255, 0.85) 100%);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.section-lead,
.section-closing {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.section-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 8px;
}

.section-closing {
  margin-bottom: 0;
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag-list li {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary-mid);
  background: #f1f5f9;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

.approach-box {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 12px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
  line-height: 1.55;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fafbfc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Tablet+ */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .form-card {
    padding: 32px 28px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-highlights li {
    height: 100%;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .page-intro {
    padding: 48px 0 12px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .convert-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 440px);
    grid-template-areas: "services form";
    gap: 28px;
    align-items: start;
  }

  .convert-services {
    order: unset;
    grid-area: services;
  }

  .convert-form {
    order: unset;
    grid-area: form;
    position: sticky;
    top: 72px;
  }

  .convert-services .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .hero-cta {
    display: none;
  }
}

@media (min-width: 1080px) {
  .header-inner {
    padding: 0 24px;
  }
}
