:root {
  --bg: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --navy: #111827;
  --blue: #2563eb;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

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

html { scroll-behavior: smooth; }

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a, .footer-links a { text-decoration: none; color: #334155; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover, .footer-links a:hover { color: var(--blue); }

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta, .btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn.small { padding: 10px 16px; font-size: 0.9rem; }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,.15), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(124,58,237,.15), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; }
.eyebrow { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin-bottom: 12px; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); max-width: 850px; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

.lead { font-size: 1.15rem; color: var(--muted); max-width: 680px; }
.narrow { margin: 0 auto; }
.microcopy { color: var(--muted); margin-top: 16px; font-size: .95rem; }
.microcopy a { color: var(--blue); font-weight: 700; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }

.hero-panel {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.panel-top { display: flex; align-items: center; gap: 10px; color: #166534; font-weight: 800; margin-bottom: 18px; }
.status-dot { width: 11px; height: 11px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 6px rgba(34,197,94,.12); }
.check-list { list-style: none; display: grid; gap: 12px; margin: 22px 0; }
.check-list li { position: relative; padding-left: 30px; color: #334155; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 900; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }

.section { padding: 78px 0; }
.light-section { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.centered { text-align: center; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading { margin-bottom: 32px; }

.trust-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-grid div { display: grid; gap: 2px; }
.trust-grid span { color: var(--muted); font-size: .95rem; }

.portfolio-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.project-card, .service-card, .process-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}
.project-card.featured { grid-row: span 1; }
.project-preview {
  min-height: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  padding: 24px;
}
.gradient-one { background: linear-gradient(135deg, #1e3a8a, #0284c7); }
.gradient-two { background: linear-gradient(135deg, #7c2d12, #ea580c); }
.gradient-three { background: linear-gradient(135deg, #312e81, #7c3aed); }
.gradient-four { background: linear-gradient(135deg, #164e63, #0891b2); }
.gradient-five { background: linear-gradient(135deg, #581c87, #db2777); }
.gradient-six { background: linear-gradient(135deg, #064e3b, #059669); }
.project-content { padding: 22px; }
.tag { display: inline-flex; margin-bottom: 12px; color: var(--blue); background: #eff6ff; border: 1px solid #bfdbfe; padding: 5px 10px; border-radius: 999px; font-size: .78rem; font-weight: 800; }
.project-content p, .service-card p, .process-grid p, .cta-box p, .footer p { color: var(--muted); }

.grid-3, .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .process-grid div { padding: 28px; }
.icon, .process-grid span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: #eff6ff; color: var(--blue); font-weight: 900; margin-bottom: 18px; }

.process-section { background: #fff; }

.final-cta { padding-top: 0; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 30px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.cta-box p { color: #cbd5e1; }
.cta-box .eyebrow { color: #93c5fd; }

.footer { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }

.page-hero { padding: 72px 0 34px; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.contact-box { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-methods { display: grid; gap: 14px; margin-top: 24px; }
.contact-methods a { padding: 18px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line); text-decoration: none; font-weight: 800; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 16px 42px rgba(15,23,42,.06); }
.price { font-size: 2rem; font-weight: 900; margin: 12px 0; }

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.platforms span {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid #e2e8f0;
}

.site-logo {
  height: 70px;
  max-width: 320px;
  width: auto;
  display: block;
  object-fit: contain;
}

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

@media (max-width: 900px) {
  .nav-wrap { flex-wrap: wrap; padding: 14px 0; }
  .nav-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 14px; }
  .nav-cta { display: none; }
  .hero-grid, .portfolio-grid, .grid-3, .process-grid, .trust-grid, .price-grid { grid-template-columns: 1fr; }
  .hero { padding: 58px 0; }
  .split-heading, .cta-box, .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-text { display: none; }
  .hero-panel, .cta-box, .contact-box { padding: 24px; }
  h1 { font-size: 2.45rem; }
  .button-row .btn { width: 100%; }
}
