
:root {
  --bg: #f7f9fb;
  --card: #ffffff;
  --text: #172033;
  --muted: #5d6878;
  --primary: #1769ff;
  --primary-dark: #0f4fc2;
  --accent: #eaf1ff;
  --border: #dfe6ef;
  --dark: #101827;
  --success: #168a5b;
  --shadow: 0 18px 40px rgba(16, 24, 39, 0.08);
  --radius: 20px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.logo img {
  width: clamp(150px, 18vw, 190px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--muted);
  margin-left: auto;
  margin-right: 18px;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-cta,
.btn-primary { background: var(--primary); color: white; }

.nav-cta:hover,
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.hero { padding: 86px 0 66px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero p,
.page-hero p {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.small-note { color: var(--muted); font-size: 0.95rem; }

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), #66a3ff);
}

.support-card h2 { font-size: 1.45rem; margin: 10px 0 12px; }

.ticket-list { display: grid; gap: 12px; margin-top: 22px; }

.ticket {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fbfdff;
}

.ticket strong { display: block; margin-bottom: 2px; }
.ticket span { color: var(--muted); font-size: 0.93rem; }

section { padding: 70px 0; }

.section-heading { max-width: 760px; margin-bottom: 32px; }

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.section-heading p { color: var(--muted); font-size: 1.08rem; }

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(16, 24, 39, 0.05);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.panel {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.panel p { color: #cbd5e1; margin-top: 10px; }

.check-list { display: grid; gap: 14px; }

.check-item {
  display: flex;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.check {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(22, 138, 91, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.service-area,
.pricing,
.blog-preview { background: #eef4ff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.location-text {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 850px;
}

.location-text p { color: var(--muted); font-size: 1.08rem; }

.price-card { display: flex; flex-direction: column; }

.price {
  font-size: 2.3rem;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 8px 0 4px;
}

.price span { font-size: 1rem; color: var(--muted); font-weight: 600; letter-spacing: 0; }

.features { margin: 18px 0 24px; color: var(--muted); }
.features p { padding: 8px 0; border-bottom: 1px solid var(--border); }
.price-card .btn { margin-top: auto; }

.contact { background: var(--dark); color: white; }

.contact-grid {
  display: block;
  max-width: 760px;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.contact p { color: #cbd5e1; font-size: 1.05rem; }

.contact-box {
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.page-hero { padding: 86px 0 42px; }

.blog-list {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.post-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.post-card h2 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.post-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.article-wrap {
  padding-top: 0;
}

.article-card {
  max-width: 860px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.article-card h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.article-card p {
  color: var(--muted);
  font-size: 1.07rem;
  margin-bottom: 18px;
}

.callout {
  background: #eef4ff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin: 26px 0;
  color: var(--text);
}

.site-footer { padding: 26px 0; background: #0b1220; color: #cbd5e1; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .header-contact {
    display: none;
  }
}

@media (max-width: 860px) {
  .menu-button { display: block; }

  .logo img {
    width: clamp(145px, 44vw, 175px);
    max-height: 54px;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.active { display: flex; }
  .nav-links a { padding: 10px; }
  .nav-cta { width: 100%; }
  .hero { padding-top: 54px; }
  .hero-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
