:root {
  --bg: #f8fafc;
  --bg-soft: #f3f6fb;
  --surface: #ffffff;
  --surface-strong: #f7f9fc;
  --text: #111827;
  --muted: #4b5563;
  --primary: #0071e3;
  --primary-soft: #d8e7ff;
  --border: #e5e7eb;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius: 26px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  font-weight: 500;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100%, calc(100% - 2rem));
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 231, 235, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand img.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand span {
  display: inline;
}

@media (max-width: 768px) {
  .brand span {
    display: none;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.hero,
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, #f9fbfd 0%, #eef5fd 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 113, 227, 0.12), transparent 22%), radial-gradient(circle at top right, rgba(0, 113, 227, 0.08), transparent 16%);
  pointer-events: none;
}

.hero-grid,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--primary);
}

.hero h1,
.page-hero h1,
.section-copy h2 {
  font-size: clamp(2.35rem, 1.8rem + 2vw, 3.5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  font-weight: 800;
}

.hero p,
.page-hero p,
.section-copy p,
.info-box p,
.feature-card p,
.pricing-card p,
.contact-info p {
  color: var(--muted);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 40px rgba(15, 91, 255, 0.2);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: rgba(229, 231, 235, 0.95);
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.hero-card-content h2 {
  margin-top: 0;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.section-copy h2,
.pricing-card h2,
.service-card h2,
.info-box h3,
.feature-card h3,
.contact-info h2 {
  font-weight: 700;
}

.hero-card-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.hero-card-content li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
}

.hero-card-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.blocks {
  display: grid;
  gap: 1.5rem;
  margin: 3rem auto;
  text-align: center;
}

.feature-card,
.info-box,
.pricing-card,
.contact-form,
.contact-info {
  background: var(--surface);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.feature-card h3,
.info-box h3,
.pricing-card h2,
.contact-info h2 {
  margin: 0 0 1rem;
}

.info-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.section {
  padding: 3rem 0;
}

.section-copy {
  max-width: 760px;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(15,91,255,0.12);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 0;
}

.price-note {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-detail {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card ul,
.service-card {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li,
.service-card p {
  color: var(--muted);
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-list {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 40px rgba(15, 91, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 91, 255, 0.25);
  background: white;
}

.service-card h2 {
  margin-bottom: 0.75rem;
}

.contact-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: white;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 1rem;
}

.cta-strip {
  background: var(--surface);
  color: var(--text);
  padding: 2rem 0;
  border-top: 1px solid rgba(229, 231, 235, 0.95);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-strip h2,
.cta-strip p {
  margin: 0;
}

.cta-strip .button-primary {
  box-shadow: none;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2,
.cta-inner p {
  margin: 0;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--surface-strong);
  color: var(--muted);
  border-top: 1px solid rgba(229, 231, 235, 0.95);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.footer-inner a {
  color: var(--muted);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-list,
  .pricing-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-inner {
    padding: 1.25rem 0;
  }
}

@media (min-width: 1024px) {
  .pricing-grid,
  .service-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.25fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section,
  .contact-section {
    padding: 2rem 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
