:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --surface: #0f172a;
  --surface-soft: #111827;
  --border-subtle: rgba(148, 163, 184, 0.15);
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
  --accent-strong: #0ea5e9;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --white: #ffffff;
  --danger: #f97373;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #1e293b 0, #020617 45%, #000 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.75),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 40%;
  background: radial-gradient(circle at 10% 0, #38bdf8, #0f172a);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.45);
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-soft);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(
    to right,
    rgba(148, 163, 184, 0.08),
    rgba(56, 189, 248, 0.08)
  );
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--text-soft);
  max-width: 36rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.6rem 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: var(--bg);
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.4);
}

.btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-soft);
}

.btn.full-width {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
}

.hero-panel {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top, #1e293b, #020617);
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(
    circle at 10% 0,
    rgba(56, 189, 248, 0.25),
    transparent 55%
  );
  opacity: 0.7;
  pointer-events: none;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

.hero-card li {
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.hero-card-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #020617);
}

.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-header.align-left {
  text-align: left;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

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

.card {
  background: radial-gradient(circle at top, #020617, #000);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.8);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.card-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card .btn {
  margin-top: 1rem;
}

.pricing-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.pricing-subtitle {
  font-size: 0.85rem;
}

.pricing-featured {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.3);
  transform: translateY(-6px);
}

.pricing-featured .badge {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 500;
}

.pricing-note {
  margin-top: 1.8rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.process-step {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-details {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-meta {
  margin-top: 1rem;
  max-width: 26rem;
}

.contact-meta a {
  color: var(--accent-strong);
}

.contact-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.field-group {
  margin-bottom: 0.95rem;
}

.field-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

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

.form-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.3rem 0;
  background: rgba(2, 6, 23, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.back-to-top {
  color: var(--accent-strong);
  font-weight: 500;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

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

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

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

@media (max-width: 720px) {
  .header-inner {
    padding-inline: 0.1rem;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .hero-card {
    padding: 1.3rem 1.2rem 1.4rem;
  }

  .grid-3,
  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

