:root {
  --navy: #071126;
  --navy-2: #080f2a;
  --blue: #1557ff;
  --blue-hover: #0047e8;
  --soft-blue: #eef4ff;
  --border: #e6eaf2;
  --muted: #5d667a;
  --bg: #f8faff;
  --white: #ffffff;
  --green: #12a150;
  --purple: #6e35d8;
  --shadow: 0 18px 48px rgba(7, 17, 38, 0.08);
  --shadow-soft: 0 12px 32px rgba(7, 17, 38, 0.06);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1224px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 4%, rgba(21, 87, 255, 0.09), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 234, 242, 0.82);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(21, 87, 255, 0.24);
}

.brand-name {
  font-size: 1.18rem;
  line-height: 1;
}

.brand-name span {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  color: var(--navy-2);
  font-size: 0.94rem;
  font-weight: 650;
}

.desktop-nav a,
.footer-column a,
.mobile-menu-card a:not(.btn) {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-column a:hover,
.mobile-menu-card a:not(.btn):hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(21, 87, 255, 0.24);
}

.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 16px 38px rgba(0, 71, 232, 0.28);
}

.btn-secondary {
  color: var(--navy);
  border-color: #aab3c2;
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  width: 100%;
  color: currentColor;
  border-color: currentColor;
  background: var(--white);
}

.btn-outline:hover {
  background: color-mix(in srgb, currentColor 7%, #ffffff);
}

.btn-dark {
  color: var(--white);
  background: #020817;
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.18);
}

.btn-dark:hover {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 28px 0 72px;
}

.hero-shell {
  position: relative;
  min-height: 654px;
  overflow: hidden;
  border: 1px solid rgba(230, 234, 242, 0.92);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(54%, 620px);
  min-height: 654px;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(21, 87, 255, 0.14);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue);
  background: rgba(238, 244, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 590px;
  margin: 18px 0 22px;
  font-size: 4.15rem;
  line-height: 1.05;
  font-weight: 800;
}

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

.hero-text {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.service-chips a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(7, 17, 38, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.service-chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 87, 255, 0.36);
  color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.hero-mobile-visual {
  display: none;
}

.section {
  padding: 84px 0;
}

main section[id] {
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .section-label {
  margin-inline: auto;
}

.section-heading h2,
.process-band h2,
.cta-card h2 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 800;
}

.section-heading p,
.process-band p,
.cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.portfolio-card,
.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(7, 17, 38, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover,
.portfolio-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 87, 255, 0.28);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  transition: transform 180ms ease;
}

.service-card:hover .icon-box,
.pricing-card:hover .icon-box {
  transform: scale(1.04);
}

.icon-box.blue {
  background: #dfeaff;
  color: var(--blue);
}

.icon-box.mint {
  background: #daf7e8;
  color: var(--green);
}

.icon-box.violet {
  background: #f0e5ff;
  color: var(--purple);
}

.icon-box.sky {
  background: #e7f4ff;
  color: #0870c8;
}

.service-card h3,
.portfolio-card h3,
.pricing-card h3 {
  margin: 22px 0 12px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.service-card ul,
.pricing-card ul,
.cta-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.pricing-card li,
.cta-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 650;
}

.service-card li::before,
.pricing-card li::before,
.cta-checks li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.benefit-row div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-row span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.portfolio {
  background: linear-gradient(180deg, transparent 0%, rgba(238, 244, 255, 0.45) 45%, transparent 100%);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: -16px 0 34px;
}

.filter-pill {
  min-width: 92px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(21, 87, 255, 0.2);
}

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

.portfolio-card {
  display: flex;
  min-height: 342px;
  flex-direction: column;
  padding: 14px 14px 18px;
}

button.portfolio-card {
  width: 100%;
  cursor: pointer;
  color: var(--navy);
  font: inherit;
  text-align: left;
}

.portfolio-feature-card {
  border-color: rgba(21, 87, 255, 0.22);
}

.portfolio-feature-card:focus-visible {
  outline: 4px solid rgba(21, 87, 255, 0.18);
  outline-offset: 4px;
}

.portfolio-card.is-hidden {
  display: none;
}

.mockup {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
}

.mockup em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 10px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(238, 244, 255, 0.94);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.browser-bar {
  display: flex;
  height: 26px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border);
  padding-inline: 12px;
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cedd;
}

.mockup-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 20px;
}

.mockup-copy b,
.mockup-lead b {
  display: block;
  max-width: 210px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
}

.mockup-copy span,
.mockup-lead span,
.ad-card span {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.van-shape {
  position: relative;
  align-self: end;
  width: 130px;
  height: 62px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(135deg, #f8fbff 0%, #c5d1e6 54%, #ffffff 55%, #d9e3f3 100%);
  box-shadow: inset 0 -10px 0 rgba(8, 15, 42, 0.14);
}

.van-shape::before,
.van-shape::after {
  position: absolute;
  bottom: -7px;
  width: 18px;
  height: 18px;
  border: 5px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.van-shape::before {
  left: 18px;
}

.van-shape::after {
  right: 18px;
}

.mockup-lead {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  background: linear-gradient(135deg, #0b1428 0%, #111c34 56%, #eef4ff 100%);
  padding: 26px;
}

.mockup-lead b {
  color: var(--white);
}

.mockup-lead img {
  align-self: stretch;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: 58% 18%;
}

.mockup-saas {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  padding: 22px;
  background:
    radial-gradient(circle at right top, rgba(110, 53, 216, 0.16), transparent 8rem),
    #fbfaff;
}

.saas-sidebar {
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #eee8ff);
  box-shadow: inset 0 0 0 1px rgba(110, 53, 216, 0.12);
}

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

.saas-grid span {
  border-radius: 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(110, 53, 216, 0.14);
}

.mockup-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background-image:
    radial-gradient(circle, rgba(21, 87, 255, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mockup-flow div {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.mockup-flow span {
  height: 2px;
  background: #a8b2c4;
}

.mockup-ads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
}

.ad-card {
  min-height: 118px;
  border-radius: 16px;
  padding: 18px;
}

.ad-card b {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.ad-card.dark {
  color: var(--white);
  background: linear-gradient(135deg, #071126, #14213d);
}

.ad-card.light {
  color: var(--navy);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 255, 0.56)),
    linear-gradient(135deg, #ddeaff, #ffffff);
}

.mockup-brand {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: center;
  padding: 26px;
}

.brand-board-logo {
  font-size: 1.65rem;
  font-weight: 800;
}

.brand-colors {
  display: flex;
  gap: 10px;
}

.brand-colors span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7ef;
}

.brand-colors span:nth-child(2) {
  background: var(--navy);
}

.brand-colors span:nth-child(3) {
  background: var(--blue);
}

.brand-colors span:nth-child(4) {
  background: #bfc7d8;
}

.type-card {
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--navy);
  background: var(--white);
  font-size: 2rem;
  font-weight: 800;
}

.mockup-web-showcase .mockup-content {
  grid-template-columns: 1fr 0.9fr;
}

.showcase-stack {
  position: relative;
  display: grid;
  gap: 10px;
  align-self: center;
}

.showcase-stack span {
  display: block;
  height: 34px;
  border: 1px solid rgba(21, 87, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  box-shadow: 0 10px 22px rgba(7, 17, 38, 0.05);
}

.showcase-stack span:nth-child(2) {
  transform: translateX(-14px);
}

.showcase-stack span:nth-child(3) {
  width: 72%;
  transform: translateX(8px);
}

.portfolio-detail {
  margin-top: 34px;
  border: 1px solid rgba(21, 87, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(21, 87, 255, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.portfolio-detail[hidden] {
  display: none;
}

.portfolio-detail-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.portfolio-detail-head h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.15;
}

.portfolio-detail-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

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

.detail-close {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  color: var(--navy);
  background: var(--white);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.detail-close:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 38, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 255, 0.24);
  box-shadow: var(--shadow-soft);
}

.gallery-preview {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #eef4ff);
}

.gallery-card-body {
  padding: 18px;
}

.gallery-category {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.gallery-card h4 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

.gallery-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-card strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.preview-browser {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(230, 234, 242, 0.86);
  padding: 0 14px;
}

.preview-browser span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8c2d6;
}

.preview-hero-lines {
  position: absolute;
  left: 18px;
  top: 56px;
  display: grid;
  width: 48%;
  gap: 10px;
}

.preview-hero-lines b,
.preview-hero-lines span,
.brand-copy b,
.brand-copy span,
.lead-copy b,
.lead-copy span,
.lead-form span,
.fitness-card span,
.dashboard-list span {
  display: block;
  border-radius: 999px;
  background: rgba(7, 17, 38, 0.18);
}

.preview-hero-lines b,
.lead-copy b,
.brand-copy b {
  height: 18px;
  background: var(--navy);
}

.preview-hero-lines span,
.lead-copy span,
.brand-copy span {
  height: 9px;
}

.preview-van {
  position: absolute;
  right: 24px;
  bottom: 34px;
  width: 112px;
  height: 54px;
  border-radius: 16px 18px 8px 8px;
  background: linear-gradient(135deg, #ffffff 0%, #c9d6ea 58%, #edf4ff 59%);
  box-shadow: inset 0 -9px 0 rgba(7, 17, 38, 0.12);
}

.preview-lead-page {
  background: linear-gradient(135deg, #071126, #14213d 58%, #eef4ff);
}

.lead-copy {
  position: absolute;
  left: 20px;
  top: 34px;
  display: grid;
  width: 42%;
  gap: 10px;
}

.lead-copy b {
  background: #ffffff;
}

.lead-copy span {
  background: rgba(255, 255, 255, 0.36);
}

.lead-form {
  position: absolute;
  right: 22px;
  top: 32px;
  display: grid;
  width: 38%;
  gap: 10px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.lead-form span {
  height: 16px;
  background: #d9e3f3;
}

.lead-form button {
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
}

.preview-personal-brand {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.avatar-dot {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #ffffff 0 22%, transparent 23%),
    linear-gradient(135deg, #1557ff, #071126);
}

.brand-copy {
  display: grid;
  gap: 10px;
}

.mini-socials {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.mini-socials span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--border);
}

.preview-fitness {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

.fitness-ring {
  width: 88px;
  height: 88px;
  border: 12px solid #dce9ff;
  border-top-color: var(--blue);
  border-radius: 50%;
}

.fitness-card {
  display: grid;
  gap: 12px;
  border-radius: 18px;
  padding: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--border);
}

.fitness-card span {
  height: 12px;
}

.preview-realty {
  padding: 24px;
}

.property-card {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(21, 87, 255, 0.18) 0 48%, #ffffff 49%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.main-property {
  left: 24px;
  top: 28px;
  width: 132px;
  height: 106px;
}

.small-property {
  right: 24px;
  bottom: 24px;
  width: 96px;
  height: 82px;
}

.map-pin {
  position: absolute;
  right: 82px;
  top: 36px;
  width: 32px;
  height: 32px;
  border: 8px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.preview-future-saas {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 18%, rgba(110, 53, 216, 0.18), transparent 8rem),
    linear-gradient(135deg, #ffffff, #f5f0ff);
}

.future-sidebar {
  border-radius: 18px;
  background: linear-gradient(180deg, #071126, #1f2c4d);
}

.future-panels {
  display: grid;
  gap: 12px;
}

.future-panels span {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(110, 53, 216, 0.16);
}

.preview-ai-dashboard {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 161, 80, 0.12), transparent 8rem),
    #ffffff;
}

.dashboard-chart {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(21, 87, 255, 0.18), rgba(18, 161, 80, 0.1)),
    linear-gradient(90deg, transparent 0 28%, rgba(21, 87, 255, 0.28) 29% 34%, transparent 35% 52%, rgba(18, 161, 80, 0.28) 53% 58%, transparent 59%);
}

.dashboard-list {
  display: grid;
  gap: 10px;
}

.dashboard-list span {
  height: 32px;
  background: #eef4ff;
}

.automation-node {
  position: absolute;
  left: 44%;
  bottom: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(21, 87, 255, 0.1);
}

.preview-growth {
  padding: 22px;
}

.campaign-card {
  position: absolute;
  width: 42%;
  height: 92px;
  border-radius: 18px;
}

.campaign-card.dark {
  left: 24px;
  top: 36px;
  background: linear-gradient(135deg, #071126, #18274a);
}

.campaign-card.light {
  right: 24px;
  bottom: 28px;
  background: linear-gradient(135deg, #ffffff, #dfeaff);
  box-shadow: inset 0 0 0 1px var(--border);
}

.growth-arrow {
  position: absolute;
  left: 46%;
  top: 48%;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-12deg);
}

.growth-arrow::after {
  position: absolute;
  right: -1px;
  top: -6px;
  width: 14px;
  height: 14px;
  border-top: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
  content: "";
  transform: rotate(45deg);
}

.preview-brand-system {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
}

.brand-letter {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
}

.brand-swatches {
  display: grid;
  grid-template-columns: repeat(2, 34px);
  gap: 12px;
}

.brand-swatches span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
}

.brand-swatches span:nth-child(2) {
  background: var(--blue);
}

.brand-swatches span:nth-child(3) {
  background: #d9e3f3;
}

.brand-swatches span:nth-child(4) {
  background: var(--purple);
}

.preview-ecommerce {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  padding: 22px;
}

.product-tile {
  min-height: 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(21, 87, 255, 0.14) 0 58%, #ffffff 59%),
    #ffffff;
}

.product-tile.large {
  grid-row: span 2;
}

.cart-pill {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 82px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(21, 87, 255, 0.18);
}

.portfolio-card h3 {
  margin: 18px 4px 6px;
}

.portfolio-card p {
  margin: 0 4px 18px;
  color: var(--muted);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: auto 4px 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-meta strong {
  color: var(--blue);
}

.load-more {
  display: none;
  width: 100%;
  margin-top: 18px;
}

.portfolio-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(7, 17, 38, 0.04);
}

.cta-icon,
.mini-shield {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: var(--soft-blue);
}

.portfolio-cta h3,
.pricing-note h3 {
  margin: 0 0 4px;
  font-size: 1.16rem;
}

.portfolio-cta p,
.pricing-note p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  position: relative;
}

.pricing-visual {
  width: 212px;
  height: 212px;
  margin: -18px auto 10px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 17, 38, 0.08);
}

.pricing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 13%;
}

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

.pricing-card {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 28px;
}

.pricing-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.pricing-card h3 {
  margin: 2px 0 8px;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.price {
  margin-top: 28px;
  color: currentColor;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
}

.price span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.price small {
  font-size: 1rem;
}

.billing {
  min-height: 26px;
  margin-top: 8px !important;
}

.pricing-card ul {
  margin: 28px 0 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.pricing-card .btn {
  margin-top: auto;
}

.blue-accent {
  color: var(--blue);
}

.green-accent {
  color: var(--green);
}

.purple-accent {
  color: var(--purple);
}

.pricing-card h3,
.pricing-card p,
.pricing-card li {
  color: var(--navy);
}

.green-accent li::before {
  color: var(--green);
}

.purple-accent li::before {
  color: var(--purple);
}

.pricing-note {
  max-width: 560px;
  margin: 30px auto 0;
  text-align: center;
}

.pricing-note .mini-shield {
  margin-inline: auto;
  border-radius: 50%;
}

.web-packages {
  background:
    radial-gradient(circle at 88% 8%, rgba(21, 87, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(238, 244, 255, 0.44) 100%);
}

.web-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.web-package-card {
  position: relative;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(7, 17, 38, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.web-package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 87, 255, 0.28);
  box-shadow: var(--shadow);
}

.web-package-card.featured-package {
  border-color: rgba(21, 87, 255, 0.55);
  box-shadow: 0 20px 56px rgba(21, 87, 255, 0.12);
}

.package-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(21, 87, 255, 0.24);
}

.package-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.package-kicker {
  margin: 0 0 8px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.web-package-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.18;
}

.package-price {
  min-width: 128px;
  text-align: right;
}

.package-price strong {
  display: block;
  color: currentColor;
  font-size: 1.35rem;
  line-height: 1.15;
}

.package-price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.package-description {
  margin: 24px 0 18px;
  color: var(--muted);
}

.ideal-box {
  border: 1px solid rgba(230, 234, 242, 0.92);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(238, 244, 255, 0.76), rgba(255, 255, 255, 0.88));
}

.ideal-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.ideal-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.web-package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  padding: 22px 0 0;
  list-style: none;
}

.web-package-card li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 650;
}

.web-package-card li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: currentColor;
  content: "✓";
  font-weight: 900;
}

.delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border: 1px solid rgba(230, 234, 242, 0.92);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--white);
}

.delivery-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.delivery-row strong {
  color: var(--navy);
  text-align: right;
}

.web-package-card .btn {
  width: 100%;
  margin-top: 18px;
}

.blue-package {
  color: var(--blue);
}

.navy-package {
  color: var(--blue);
}

.purple-package {
  color: var(--purple);
}

.purple-package .btn-outline {
  color: var(--purple);
}

.web-packages-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 28px;
  border: 1px solid #dde7ff;
  border-radius: 20px;
  padding: 20px;
  background: var(--soft-blue);
}

.info-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}

.web-packages-note p {
  margin: 0;
  color: var(--muted);
}

.web-packages-note p + p {
  margin-top: 8px;
}

.process-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(238, 244, 255, 0.84), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

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

.process-steps article {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  background: var(--white);
}

.process-steps span {
  color: var(--blue);
  font-weight: 800;
}

.process-steps h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

.process-steps p {
  font-size: 0.94rem;
}

.cta-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: start;
  border: 1px solid rgba(21, 87, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 44px;
  background:
    radial-gradient(circle at 8% 10%, rgba(21, 87, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, #ffffff, #eef4ff);
  box-shadow: var(--shadow);
}

.cta-checks {
  margin-top: 26px;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(7, 17, 38, 0.04);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  outline: none;
  color: var(--navy);
  background: var(--white);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(21, 87, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(21, 87, 255, 0.1);
}

.contact-form .btn {
  width: 100%;
}

.contact-form .honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--muted, #5a6478) !important;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--blue, #1557ff);
}

.consent-check a {
  color: var(--blue, #1557ff);
  text-decoration: underline;
}

.contact-form .btn[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0 !important;
  color: var(--green) !important;
  font-weight: 800;
}

.form-status.error {
  color: #d33c3c !important;
}

.contact-form.was-validated :invalid {
  border-color: #d33c3c;
}

.footer {
  padding: 36px 0 60px;
}

.footer-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.76fr 0.76fr 0.76fr 1.05fr;
  gap: 28px;
  padding: 36px;
}

.footer-brand {
  position: relative;
  min-height: 300px;
  padding-left: 210px;
}

.footer-avatar {
  position: absolute;
  left: -34px;
  bottom: -36px;
  width: 230px;
  height: 292px;
  overflow: hidden;
  border-radius: 0 0 118px 118px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.footer-avatar::before {
  position: absolute;
  left: -52px;
  bottom: -22px;
  z-index: 0;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.footer-avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 8%;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
  border-left: 1px solid var(--border);
  padding-left: 26px;
}

.footer-column h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.footer-column h3::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  vertical-align: 0.12em;
}

.footer-column a,
.contact-card a,
.contact-card span {
  color: var(--navy);
  font-size: 0.93rem;
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 17, 38, 0.06);
}

.contact-card h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
}

.contact-card a,
.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-card svg {
  color: var(--blue);
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--blue);
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: 1.05rem;
  line-height: 1.45;
}

.footer-accordion {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 20px 36px;
  color: var(--navy);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom p:nth-child(2) span {
  color: var(--blue);
}

.footer-bottom p:nth-child(3) {
  text-align: right;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

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

@media (max-width: 1160px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-copy {
    width: 58%;
    padding: 66px 48px;
  }

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

  .footer-main {
    grid-template-columns: 1.1fr 0.8fr 0.8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .contact-card {
    grid-column: span 3;
  }
}

@media (max-width: 1023px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 78px 0 auto;
    display: block;
    padding: 16px 20px 24px;
    background: rgba(248, 250, 255, 0.92);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-card {
    display: grid;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu-card a:not(.btn) {
    border-radius: 12px;
    padding: 14px 12px;
    font-weight: 800;
  }

  .mobile-menu-card .btn {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-shell {
    min-height: unset;
    padding: 28px;
  }

  .hero-bg {
    display: none;
  }

  .hero-copy {
    width: 100%;
    min-height: unset;
    padding: 0;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 3rem;
  }

  .hero-mobile-visual {
    position: relative;
    display: grid;
    height: 410px;
    margin-top: 34px;
    place-items: end center;
    overflow: hidden;
    border-radius: 26px;
    background:
      radial-gradient(circle at 4% 4%, rgba(21, 87, 255, 0.1), transparent 12rem),
      #ffffff;
  }

  .hero-mobile-visual::after {
    position: absolute;
    right: -118px;
    bottom: -80px;
    width: 340px;
    height: 340px;
    border: 52px solid #10192c;
    border-radius: 50%;
    content: "";
  }

  .hero-mobile-visual img {
    position: relative;
    z-index: 1;
    height: 100%;
    object-fit: contain;
  }

  .portfolio-grid,
  .pricing-grid,
  .web-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portfolio-detail-head {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .web-package-card {
    min-height: unset;
  }

  .web-package-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .process-band,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .mobile-menu {
    inset: 68px 0 auto;
    padding-inline: 16px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero {
    padding-bottom: 52px;
  }

  .hero-shell {
    border-radius: 24px;
    padding: 22px;
  }

  .eyebrow,
  .section-label {
    font-size: 0.72rem;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: 2.38rem;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .service-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .service-chips a {
    min-height: 48px;
    justify-content: center;
    padding: 0 10px;
    text-align: center;
  }

  .hero-mobile-visual {
    height: 330px;
    margin-top: 24px;
  }

  .hero-mobile-visual::after {
    right: -112px;
    bottom: -72px;
    width: 280px;
    height: 280px;
    border-width: 44px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .process-band h2,
  .cta-card h2 {
    font-size: 2.05rem;
  }

  .section-heading p,
  .process-band p,
  .cta-card p {
    font-size: 0.98rem;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .web-packages-grid,
  .gallery-grid,
  .benefit-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  .benefit-row {
    gap: 10px;
  }

  .filter-pills {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 24px;
    padding-bottom: 4px;
  }

  .filter-pill {
    min-width: max-content;
  }

  .portfolio-card {
    min-height: unset;
  }

  .portfolio-detail {
    border-radius: 24px;
    padding: 18px;
  }

  .portfolio-detail-head h3 {
    font-size: 1.65rem;
  }

  .portfolio-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-close {
    width: 100%;
  }

  .gallery-preview {
    min-height: 160px;
  }

  .portfolio-card.is-mobile-hidden {
    display: none;
  }

  .load-more {
    display: inline-flex;
  }

  .mockup {
    min-height: 156px;
  }

  .mockup-content,
  .mockup-lead,
  .mockup-flow,
  .mockup-ads,
  .mockup-brand,
  .mockup-saas {
    padding: 18px;
  }

  .mockup-flow {
    grid-template-columns: 1fr;
  }

  .mockup-flow span {
    width: 2px;
    height: 18px;
    justify-self: center;
  }

  .mockup-ads {
    grid-template-columns: 1fr 1fr;
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .portfolio-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .portfolio-cta .btn {
    width: 100%;
  }

  .pricing-visual {
    width: 170px;
    height: 170px;
  }

  .pricing-card:nth-child(3) {
    grid-column: auto;
  }

  .web-package-card:nth-child(3) {
    grid-column: auto;
  }

  .pricing-card {
    padding: 22px;
  }

  .web-package-card {
    padding: 22px;
  }

  .package-badge {
    position: static;
    width: fit-content;
    margin-bottom: 16px;
  }

  .package-head {
    grid-template-columns: 1fr;
  }

  .package-price {
    min-width: 0;
    text-align: left;
  }

  .delivery-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .delivery-row strong {
    text-align: left;
  }

  .web-packages-note {
    grid-template-columns: 1fr;
  }

  .pricing-top {
    grid-template-columns: auto 1fr;
  }

  .price {
    font-size: 1.7rem;
  }

  .process-band,
  .cta-card {
    border-radius: 24px;
    padding: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .footer {
    padding-top: 18px;
  }

  .footer-card {
    border-radius: 24px;
  }

  .footer-main {
    display: block;
    padding: 24px 24px 10px;
  }

  .footer-brand {
    min-height: unset;
    padding-left: 0;
    text-align: left;
  }

  .footer-avatar {
    position: relative;
    left: auto;
    bottom: auto;
    width: 164px;
    height: 172px;
    margin: 16px 0;
    border-radius: 0 0 82px 82px;
  }

  .footer-brand p {
    max-width: none;
    margin: 16px 0;
  }

  .footer-brand .btn {
    width: 100%;
  }

  .socials {
    justify-content: center;
    margin-bottom: 18px;
  }

  .footer-column,
  .contact-card {
    display: none;
  }

  .footer-accordion {
    display: grid;
    gap: 0;
    padding: 0 24px 16px;
  }

  .footer-accordion details {
    border-top: 1px solid var(--border);
  }

  .footer-accordion summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 800;
  }

  .footer-accordion summary::after {
    color: var(--blue);
    content: "+";
    font-size: 1.2rem;
  }

  .footer-accordion details[open] summary::after {
    content: "−";
  }

  .footer-accordion a,
  .footer-accordion span {
    display: block;
    padding: 0 0 12px;
    color: var(--muted);
    font-size: 0.94rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 24px 22px;
    text-align: center;
  }

  .footer-bottom p:nth-child(2),
  .footer-bottom p:nth-child(3) {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* ===== Živé ukázky webů (demo subdomény) ===== */
.demos { background: var(--bg); }
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.demo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.demo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(21, 87, 255, .3);
}
.demo-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-dots {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
}
.demo-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}
.demo-logo {
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  opacity: .96;
}
.demo-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.demo-tag {
  align-self: flex-start;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--blue);
  background: var(--soft-blue);
  padding: 4px 10px;
  border-radius: 999px;
}
.demo-body h3 { font-size: 1.2rem; margin: 2px 0 0; }
.demo-body p { color: var(--muted); font-size: .95rem; margin: 0; flex: 1; }
.demo-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--blue);
  margin-top: 6px;
}
.demo-open svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .18s ease;
}
.demo-card:hover .demo-open svg { transform: translate(2px, -2px); }
.demo-note { text-align: center; margin-top: 32px; color: var(--muted); }
.demo-note a { color: var(--blue); font-weight: 700; }

@media (max-width: 900px) {
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .demo-grid { grid-template-columns: 1fr; }
}
