:root {
  --red: #d72638;
  --blue: #0b4bbd;
  --blue-dark: #093a8f;
  --ink: #0b1b2b;
  --muted: #5c6b7a;
  --soft: #f5f7fb;
  --line: #e2e8f0;
  --accent: #f7b500;
  --shadow: 0 18px 50px rgba(8, 21, 36, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #f4f9ff 0%, #ffffff 40%, #f8f6ff 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 26px);
}

p {
  margin: 0 0 14px;
}

input,
select,
textarea,
button {
  font-family: inherit;
  color: inherit;
}

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0em;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

.muted {
  color: var(--muted);
}

.fine {
  font-size: 12px;
  color: var(--muted);
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 6px 24px rgba(11, 27, 43, 0.06);
}

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.topbar-left {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.topbar-right {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.mainnav {
  background: var(--blue);
  color: #fff;
  height: 78px;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  height: 100%;
}

.brand img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  margin-left: 6px;
  transform: translateY(1px);
}

.nav-link {
  font-weight: 600;
  opacity: 0.85;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  opacity: 1;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.submenu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
}

.submenu a:hover,
.submenu a:focus {
  background: var(--soft);
  color: var(--blue);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 10px;
}

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

.consult-btn {
  background: #fff;
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(4, 20, 46, 0.2);
}

.hamburger {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-menu {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-card {
  display: grid;
  gap: 14px;
  padding: 22px 0;
}

.mobile-card a {
  color: #fff;
  font-weight: 600;
}

.mobile-group {
  display: grid;
  gap: 10px;
}

.mobile-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-cta {
  background: #fff;
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
  width: fit-content;
}

.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(13, 79, 189, 0.2), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(215, 38, 56, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 16px 0;
}

.hero h1 span {
  color: var(--blue);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(4, 20, 46, 0.08);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(215, 38, 56, 0.25);
}

.btn.blue {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(11, 75, 189, 0.28);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-panel .btn {
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px dashed var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.hero-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: floatIn 0.8s ease;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  background: rgba(11, 75, 189, 0.1);
  color: var(--blue);
  padding: 1px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.mini {
  padding: 12px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.mini strong {
  font-size: 20px;
  display: block;
}

.mini small {
  color: var(--muted);
}

.spark {
  height: 120px;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(215, 38, 56, 0.1), rgba(11, 75, 189, 0.1));
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.spark-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    rgba(11, 75, 189, 0.2),
    rgba(11, 75, 189, 0.2) 8px,
    transparent 8px,
    transparent 16px
  );
  animation: shimmer 3s linear infinite;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 28px rgba(10, 22, 38, 0.06);
}

.card .icon {
  font-size: 22px;
  background: var(--soft);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  position: relative;
}

.step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}


.about-points {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
}

.about-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-metrics strong {
  display: block;
  font-size: 20px;
}

.about-metrics span {
  color: var(--muted);
  font-size: 12px;
}

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

.work-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(10, 22, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10, 22, 38, 0.12);
}

.work-logo {
  margin: 14px 0 10px;
  height: 42px;
  display: flex;
  align-items: center;
}

.work-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}

.work-thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #fff;
  mix-blend-mode: normal;
}

.work-visit {
  margin-top: 14px;
  font-weight: 700;
  color: var(--blue);
}

.work-tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(215, 38, 56, 0.12);
  border-radius: 999px;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}

.work-metric {
  margin-top: 14px;
  font-weight: 800;
  color: var(--blue);
}

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

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

.package-grid .price-card .btn {
  margin-top: auto;
  align-self: center;
  min-width: 150px;
  height: 44px;
  padding: 0 22px;
}

.package-grid .price-head h3 {
  text-align: center;
}

.package-grid .price-head .price {
  text-align: center;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(12, 24, 40, 0.08);
  display: grid;
  gap: 16px;
  position: relative;
}

.price-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.price-card li {
  margin-bottom: 8px;
}

.price-head {
  display: grid;
  gap: 6px;
  position: relative;
  padding-top: 44px;
}

.price-card .badge {
  position: fixed;
  top: 10px;
  left: 10px;
}

.price-card .price {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  background: none;
  border: 0;
  padding: 0;
  display: block;
  box-shadow: none;
  border-radius: 0;
}

.price-card .price span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.price-card.featured {
  border: 2px solid var(--red);
  transform: translateY(-8px);
}

#packages .price-head {
  display: grid;
  gap: 4px;
  padding-top: 28px;
}

#packages .price-card > .price-head + .muted {
  min-height: 78px;
  display: flex;
  align-items: flex-end;
}

#packages .price-head h3 {
  min-height: 2.4em;
  margin: 0;
}

#packages .price-head .price {
  min-height: 1.4em;
  white-space: nowrap;
}

#packages .price-card.featured {
  transform: none;
}

#packages .price-head .badge {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.contact-card,
.contact-form {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(10, 22, 38, 0.06);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  font-weight: 600;
}

.contact-meta {
  display: grid;
  gap: 8px;
}

.contact-meta strong {
  display: block;
}

.contact-meta span {
  color: var(--muted);
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
}

footer {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 28px;
  padding: 50px 0 30px;
}

.footer-brand .footer-logo {
  height: 70px;
  width: auto;
}

.footer-brand p {
  margin: 14px 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--blue);
  font-weight: 700;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 1024px) {
  .hero-wrap,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hamburger {
    display: inline-flex;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .services,
  .process-grid,
  .work-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
}

.soft-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.foot-brand {
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service pages */
.service-hero{
  padding:56px 0 28px;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(31,42,124,.20), transparent 55%),
    radial-gradient(900px 420px at 75% 5%, rgba(75,95,215,.18), transparent 50%),
    radial-gradient(900px 420px at 85% 25%, rgba(227,29,43,.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 55%, var(--soft) 100%);
}
.service-hero .wrap{display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:center;}
.service-hero h1{margin:12px 0 10px}
.service-hero h1 span{color:var(--blue)}
.service-hero .sub{color:var(--muted); font-weight:700; line-height:1.7; margin:0}

.bullets{margin:12px 0 0; padding:0; list-style:none}
.bullets li{display:flex; gap:10px; padding:10px 0; border-top:1px dashed var(--line); color:var(--muted); font-weight:800; font-size:13px}
.bullets li:first-child{border-top:none; padding-top:0}
.bullets .tick{width:18px;height:18px;border-radius:6px;background:rgba(31,42,124,.10);border:1px solid rgba(31,42,124,.18);flex:0 0 auto; margin-top:2px}
.bullets .tick.red{background:rgba(227,29,43,.10);border-color:rgba(227,29,43,.18)}

.feature-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
.faq details{border:1px solid var(--line); border-radius:14px; padding:12px 14px; background:#fff}
.faq details+details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); font-weight:700; margin-top:8px}

.deliverables{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}
.deliverables .item{border:1px solid var(--line); border-radius:14px; padding:12px; background:#fff; font-weight:900}
.deliverables .item small{display:block; color:var(--muted); font-weight:800; margin-top:6px}

.cta{padding:90px 0}
.cta-box{display:grid; grid-template-columns:1.1fr .9fr; gap:24px; align-items:start}
.cta-box form{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.cta-box form input,
.cta-box form select,
.cta-box form textarea,
.cta-box form button{width:100%}
.cta-box form input,
.cta-box form select{min-height:44px}
.cta-box form textarea{grid-column:1 / -1; min-height:120px}
.cta-box form button,
.cta-box form .fine{grid-column:1 / -1}

.blog-hero{
  background: linear-gradient(135deg, #eef5ff 0%, #ffffff 60%, #f5f7fb 100%);
}

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

.blog-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 26px rgba(12, 24, 40, 0.08);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(12, 24, 40, 0.12);
}

.blog-thumb{
  aspect-ratio:4 / 3;
  background:var(--soft);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.blog-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.blog-placeholder{
  font-size:12px;
  color:var(--muted);
}

.blog-body{
  padding:18px 20px 22px;
}

.blog-meta{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  margin-bottom:6px;
}

.blog-body h3{
  margin:0 0 8px;
}

.blog-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--blue);
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--soft);
  margin-bottom:24px;
}

.blog-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px;
  box-shadow:0 14px 26px rgba(12, 24, 40, 0.08);
}

.blog-article p{
  margin-bottom:14px;
}

.blog-article ul,
.blog-article ol{
  margin:0 0 16px 20px;
}

.blog-article a{
  color:var(--blue);
  font-weight:600;
}

.blog-pagination{
  margin-top:18px;
}
.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.price{background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px; box-shadow:0 14px 26px rgba(12, 24, 40, 0.08); display:grid; gap:12px}
.price .tag{display:inline-flex; width:fit-content; padding:6px 12px; border-radius:999px; background:rgba(11, 75, 189, 0.12); color:var(--blue); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:0.08em}
.price .money{font-size:26px; font-weight:900}
.price .incl{color:var(--muted); font-weight:800}
.price .features{list-style:none; padding:0; margin:6px 0 0; display:grid; gap:10px}
.price .features li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:800}
.price .features .tick{margin-top:2px}
.price.featured{border:2px solid var(--red); transform:translateY(-6px)}
.price.featured .tag{background:rgba(215, 38, 56, 0.12); color:var(--red)}

@media (max-width: 980px){
  .service-hero .wrap{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr 1fr}
  .two-col{grid-template-columns:1fr}
  .cta-box{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .feature-grid{grid-template-columns:1fr}
  .deliverables{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .cta-box form{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
}
