:root {
  --primary: #0e7490;
  --primary-dark: #0a5a70;
  --secondary: #f59e0b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 20px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 18px 36px rgba(2, 6, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #e0f2fe 0%, var(--bg) 45%);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 800;
  font-size: 1.03rem;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0369a1);
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 116, 144, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(14, 116, 144, 0.35);
}

.btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  background: #ecfeff;
  transform: translateY(-2px);
}

.hero {
  padding: 84px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  background: #ecfeff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-bottom: 16px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-text p {
  font-size: 1.05rem;
}

.btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
  color: #1e293b;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.timeline {
  margin: 0;
  padding-left: 22px;
}

.timeline li {
  margin-bottom: 10px;
  color: #1e293b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: #7dd3fc;
  box-shadow: 0 18px 38px rgba(3, 105, 161, 0.15);
  position: relative;
}

.badge {
  position: absolute;
  right: 16px;
  top: -12px;
  font-size: 0.78rem;
  background: var(--secondary);
  color: #111827;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.price {
  margin: 10px 0 2px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0c4a6e;
}

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

.gform-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

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

.gform-intro a {
  color: var(--primary);
  font-weight: 600;
}

.gform-intro a:hover {
  color: var(--primary-dark);
}

.gform-placeholder {
  margin: 0;
  padding: 16px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px dashed #94a3b8;
  font-size: 0.92rem;
  color: #334155;
}

.gform-placeholder code {
  font-size: 0.85em;
  word-break: break-all;
}

.gform-frame {
  width: 100%;
  min-height: 720px;
  height: 75vh;
  max-height: 1400px;
  border: 0;
  border-radius: 12px;
  background: #f8fafc;
}

.gform-open {
  margin: 0;
  text-align: center;
}

form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
  color: #334155;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #0f172a;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  outline: none;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.notice {
  margin-top: 12px;
  border: 1px solid #fdba74;
  color: #9a3412;
  background: #fff7ed;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

.form-status {
  margin: 4px 0 0;
  font-size: 0.92rem;
  min-height: 20px;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #b91c1c;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.site-footer {
  margin-top: 36px;
  background: #0f172a;
  color: #cbd5e1;
  padding: 34px 0;
}

.site-footer p {
  color: inherit;
  text-align: center;
}

.site-footer .footer-contact {
  margin-top: 10px;
  font-size: 0.95rem;
}

.site-footer .footer-contact a {
  color: #7dd3fc;
  font-weight: 600;
}

.site-footer .footer-contact a:hover {
  color: #bae6fd;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid,
  .split,
  .form-wrap,
  .cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .nav-links a:not(.btn) {
    display: none;
  }
}
