
:root {
  --bg: #f3f7ff;
  --bg-elevated: #ffffff;
  --bg-pill: #e4edff;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --primary: #2563eb;
  --primary-soft: #e0edff;
  --primary-soft-2: #e5f1ff;
  --primary-strong: #1d4ed8;
  --accent: #0ea5e9;
  --text-main: #0f172a;
  --text-soft: #64748b;
  --text-softer: #94a3b8;
  --danger: #ef4444;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-tiny: 0 8px 22px rgba(15, 23, 42, 0.06);
  --nav-height: 72px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #dbeafe 0, #eff6ff 40%, #f8fafc 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */

.site-shell {
  flex: 1 0 auto;
}

.page {
  max-width: 1120px;
  padding: 18px 20px 60px;
  margin: 0 auto;
}

/* Top nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: radial-gradient(circle at top left, rgba(226, 232, 240, 0.96), rgba(248, 250, 252, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1d4ed8, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-tiny);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-tagline {
  font-size: 13px;
  color: var(--text-soft);
}

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

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease;
}

.nav-links a:hover {
  background: rgba(191, 219, 254, 0.8);
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-links a.nav-active {
  background: var(--text-main);
  color: #f9fafb;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.6);
  padding: 7px 14px;
  font-size: 13px;
  color: #0b1120;
  background: radial-gradient(circle at 0 0, #eff6ff 0, #dbeafe 40%, #eff6ff 100%);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.25);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.nav-cta span.icon {
  font-size: 14px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: radial-gradient(circle at 0 0, #dbeafe 0, #eff6ff 60%, #eff6ff 100%);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

/* Hero */

.hero {
  padding-top: 26px;
}

.hero-inner {
  border-radius: 32px;
  padding: 26px 22px 26px;
  background: radial-gradient(circle at top left, #e0edff 0, #f9fbff 40%, #ffffff 80%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.15), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.55);
  margin-bottom: 14px;
}

.hero-pill-badge {
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #0b1120;
  background: linear-gradient(120deg, #bfdbfe, #e0f2fe);
}

.hero-pill span {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-title {
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 4px 0 10px;
}

.hero-title span.accent {
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 460px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  font-size: 14px;
  padding: 9px 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #eff6ff;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.55);
}

.btn-ghost {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* Floating cards strip */

.hero-cards {
  position: relative;
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 18px;
}

.card {
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.36);
  box-shadow: var(--shadow-subtle);
  padding: 14px 16px 16px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.card-inner {
  position: relative;
}

.card-label {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.card-subtext {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.card-list li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-list li span.bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #4ade80);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.badge-soft {
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.85);
}

/* Ticket preview card */

.ticket-preview {
  display: grid;
  gap: 8px;
}

.ticket-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
}

.ticket-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.09);
  color: #166534;
  font-weight: 600;
  font-size: 11px;
}

.ticket-field {
  flex: 1;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.9);
  padding: 6px 8px;
  color: var(--text-soft);
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-softer);
  margin-top: 6px;
}

/* Sections */

.section {
  margin-top: 42px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text-softer);
}

.section-title {
  font-size: 18px;
  margin: 2px 0 0;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-soft);
}

.section-actions a {
  font-size: 13px;
  color: var(--primary-strong);
  text-decoration: none;
}

/* Services cards grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  border-radius: var(--radius-md);
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-tiny);
  padding: 14px 13px 15px;
}

.service-title {
  font-size: 15px;
  margin-bottom: 5px;
}

.service-body {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 7px;
}

.service-meta {
  font-size: 12px;
  color: var(--text-softer);
}

/* Pricing summary strip */

.pricing-strip {
  margin-top: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  color: #e5f2ff;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.45);
}

.pricing-pill {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  opacity: 0.8;
}

.pricing-rates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.pricing-rates strong {
  font-size: 15px;
  margin-right: 3px;
}

.pricing-note {
  font-size: 12px;
  opacity: 0.9;
}

/* Footer */

.footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(241, 245, 249, 0.9);
  backdrop-filter: blur(18px);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px 14px;
  font-size: 12px;
  color: var(--text-softer);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.footer-inner a {
  color: var(--text-soft);
  text-decoration: none;
}

/* Forms & content basics */

main {
  margin-top: 20px;
}

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

p {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 14px;
  color: var(--text-soft);
}

/* Generic content cards for secondary pages */

.page-card {
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-subtle);
  padding: 20px 18px 18px;
}

.page-card h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

.page-card h2 {
  font-size: 18px;
  margin-top: 18px;
  margin-bottom: 6px;
}

.page-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

/* Ticket form */

.form-grid {
  display: grid;
  grid-template-columns: 3fr 2.1fr;
  gap: 16px;
  margin-top: 8px;
}

.form-field {
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  background: rgba(248, 250, 252, 0.95);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    padding-inline: 16px;
  }
  .page {
    padding-inline: 16px;
  }
  .hero-inner {
    padding-inline: 18px;
  }
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .section {
    margin-top: 34px;
  }
}

@media (max-width: 540px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    padding-inline: 11px;
  }
  .footer-inner {
    align-items: flex-start;
  }
}
