:root {
  --ink: #172033;
  --muted: #667085;
  --line: #e9e5f0;
  --paper: #fffdf8;
  --soft: #f7f4fb;
  --violet: #7c3aed;
  --magenta: #d946ef;
  --aqua: #0fbaa8;
  --gold: #c8942d;
  --gradient: linear-gradient(135deg, #6d28d9 0%, #a855f7 52%, #e879f9 100%);
  --shadow: 0 24px 70px rgba(46, 35, 77, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: rgba(124, 58, 237, 0.36) rgba(255, 253, 248, 0.6);
  scrollbar-width: thin;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 253, 248, 0.62);
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 253, 248, 0.62);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.5), rgba(200, 148, 45, 0.34));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.68), rgba(200, 148, 45, 0.48));
}

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

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

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  min-height: 50px;
  padding-block: 0.2rem;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(233, 229, 240, 0.9);
  backdrop-filter: blur(18px);
  transition: top 0.24s ease, min-height 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.home-page .site-nav {
  top: 16px;
  min-height: 56px;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-nav.is-scrolled,
.home-page .site-nav.is-scrolled {
  top: 0;
  min-height: 48px;
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: rgba(233, 229, 240, 0.9);
  box-shadow: 0 14px 40px rgba(29, 20, 45, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: var(--ink);
}

.navbar-brand {
  max-width: min(32vw, 116px);
  padding-block: 0;
}

.brand-logo-img {
  width: min(30vw, 104px);
  height: auto;
  display: block;
  object-fit: contain;
  transition: width 0.24s ease, filter 0.24s ease;
}

.home-page .brand-logo-img {
  width: min(32vw, 112px);
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.34));
}

.site-nav.is-scrolled .brand-logo-img,
.home-page .site-nav.is-scrolled .brand-logo-img {
  width: min(24vw, 74px);
  filter: none;
}

.footer-logo .brand-logo-img {
  width: 180px;
  filter: none;
}

.brand-symbol {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.26);
}

.navbar .nav-link {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  color: #1e2a24;
}

.home-page .site-nav:not(.is-scrolled) .nav-link {
  color: #1e2a24;
  text-shadow: none;
}

.navbar .nav-link.active {
  color: var(--violet);
}

.navbar .nav-link:hover {
  color: var(--violet);
}

.home-page .site-nav:not(.is-scrolled) .nav-link.active {
  color: var(--violet);
}

.home-page .site-nav:not(.is-scrolled) .nav-link:hover {
  color: var(--violet);
}

.nav-cta {
  padding-inline: 1rem !important;
  border-radius: 7px;
  background: rgba(124, 58, 237, 0.1);
}

.home-page .site-nav:not(.is-scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.62);
}

.navbar-toggler {
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 7px;
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fffdf8;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  background-image: var(--hero-bg);
  background-position: center;
  background-size: cover;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide::before {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 253, 248, 0.82) 0%, rgba(255, 253, 248, 0.62) 34%, rgba(255, 253, 248, 0.26) 62%, rgba(255, 253, 248, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.36) 0%, rgba(255, 253, 248, 0.18) 58%, rgba(255, 253, 248, 0.55) 100%);
}

.hero-slide::after {
  background:
    radial-gradient(circle at 50% 38%, rgba(168, 85, 247, 0.1), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(200, 148, 45, 0.1), transparent 18rem);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-grid {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2rem;
  padding-block: 6.8rem 5rem;
}

.hero-copy {
  max-width: 860px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -1.6rem -1.5rem;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0.22) 48%, transparent 72%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--violet);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-copy h1,
.hero-copy h2,
.subhero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6.6vw, 4.15rem);
  line-height: 0.94;
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 920px;
  color: var(--ink);
  text-shadow: 0 14px 42px rgba(255, 255, 255, 0.52);
}

.hero-lead,
.subhero p,
.section-text {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-lead {
  margin-inline: auto;
  max-width: 720px;
  color: #344054;
  font-weight: 600;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  min-height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 7px;
  padding-inline: 1.1rem;
  font-weight: 800;
  border: 0;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.btn-gradient {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.22);
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -78%;
  width: 54%;
  transform: skewX(-14deg) translateX(0);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 166, 0.46), rgba(255, 255, 255, 0.34), transparent);
  transition: transform 1.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
}

.btn-gradient:hover::before {
  opacity: 1;
  transform: skewX(-14deg) translateX(360%);
}

.btn-gradient:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.24), 0 0 0 1px rgba(200, 148, 45, 0.2);
}

.btn-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.btn-soft:hover,
.btn-light-contrast:hover {
  color: var(--ink);
  border-color: rgba(200, 148, 45, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 225, 0.96));
  box-shadow: 0 12px 26px rgba(200, 148, 45, 0.15);
  transform: translateY(-1px);
}

.btn-light-contrast {
  color: var(--violet);
  background: #fff;
}

.hero-visual {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1.15;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-visual img,
.image-panel img,
.subhero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-status {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-dot {
  width: 34px;
  height: 4px;
  border-radius: 7px;
  background: rgba(124, 58, 237, 0.18);
}

.hero-dot.is-active {
  background: linear-gradient(135deg, var(--violet), var(--gold));
}

.hero-nav-button {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.42);
  box-shadow: 0 10px 24px rgba(33, 26, 54, 0.08);
  backdrop-filter: blur(8px);
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-nav-button svg {
  width: 18px;
  height: 18px;
}

.hero-nav-button:hover {
  color: var(--violet);
  border-color: rgba(200, 148, 45, 0.32);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.12);
  transform: translateY(-1px);
}

.section-pad {
  padding: 5rem 0;
}

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

main > .section-pad .section-heading {
  margin-inline: auto;
  text-align: center;
}

.service-links .container {
  max-width: 1500px;
}

.service-links .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.service-links .row {
  align-items: stretch;
}

.service-links [class*="col"] {
  display: flex;
}

.section-heading h2,
.why-panel h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
}

.service-card,
.feature-box,
.process-item,
.price-card,
.calculator-shell,
.contact-form,
.contact-card,
.why-panel {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(33, 26, 54, 0.055);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 268px;
  grid-template-rows: 46px minmax(34px, auto) minmax(74px, 1fr) 34px;
  justify-items: center;
  align-items: start;
  text-align: center;
  padding: 1.45rem 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) padding-box,
    linear-gradient(135deg, var(--line), var(--line)) border-box;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.985)) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 72%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card svg,
.feature-box svg,
.calculator-shell svg {
  width: 34px;
  height: 34px;
  color: var(--violet);
  margin-bottom: 0;
}

svg.has-premium-gradient {
  color: var(--violet);
}

.service-card svg.has-premium-gradient,
.feature-box svg.has-premium-gradient,
.process-item svg.has-premium-gradient,
.calculator-shell svg.has-premium-gradient,
.check-list svg.has-premium-gradient,
.contact-card svg.has-premium-gradient {
  color: var(--violet);
}

.service-card h3,
.feature-box h3,
.process-item h3,
.price-card h3,
.calculator-shell h3 {
  margin: 0 0 0.75rem;
  font-size: 1.14rem;
  font-weight: 800;
}

.service-card h3 {
  align-self: center;
  font-weight: 700;
  white-space: nowrap;
}

.service-card p,
.feature-box p,
.process-item p,
.price-card p,
.calculator-shell p,
.why-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card p {
  align-self: start;
  margin: 0;
}

.service-card > span:not(.service-card-action) {
  margin-top: auto;
  color: var(--violet);
  font-weight: 800;
}

.service-card-action {
  width: 38px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  align-self: center;
  margin-top: 0;
  padding: 0.38rem 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 7px;
  color: var(--violet);
  background: rgba(255, 253, 248, 0.68);
  white-space: nowrap;
  transition: width 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-card-action span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  font-weight: 800;
  transition: max-width 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.service-card-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  transition: transform 0.28s ease;
}

.service-card:hover .service-card-action {
  width: 112px;
  border-color: rgba(200, 148, 45, 0.34);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.1);
}

.service-card:hover .service-card-action span {
  max-width: 68px;
  opacity: 1;
}

.service-card:hover .service-card-action svg {
  transform: translateX(2px);
}

.soft-band {
  background:
    linear-gradient(120deg, rgba(15, 186, 168, 0.08), transparent 32rem),
    var(--soft);
}

.seo-section {
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.04), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf8ff 100%);
}

.seo-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.seo-copy h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  line-height: 1.08;
  font-weight: 800;
}

.seo-copy p {
  max-width: 860px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.seo-tags li {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.work-gallery {
  background: #fffdf8;
}

.work-gallery-grid {
  display: grid;
  gap: 1rem;
  max-width: 1100px;
  margin-inline: auto;
}

.work-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) padding-box,
    linear-gradient(135deg, var(--line), var(--line)) border-box;
  box-shadow: 0 16px 38px rgba(33, 26, 54, 0.055);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.work-card:hover {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.985)) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 68%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.work-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.work-card-body {
  padding: 1.2rem;
}

.work-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.process-item {
  position: relative;
  padding: 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) padding-box,
    linear-gradient(135deg, var(--line), var(--line)) border-box;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.process-item:hover {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.985)) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 64%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.process-item svg {
  width: 30px;
  height: 30px;
  margin-bottom: 1rem;
}

.process-item h3 {
  font-weight: 700;
}

.about-section {
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.045), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf8ff 100%);
}

.image-panel {
  position: relative;
  height: 100%;
  min-height: 380px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--line), rgba(124, 58, 237, 0.16)) border-box;
  box-shadow: 0 16px 38px rgba(33, 26, 54, 0.055);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.image-panel:hover {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 68%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.image-panel img {
  border-radius: 5px;
  transition: transform 0.8s ease;
}

.image-panel:hover img {
  transform: scale(1.025);
}

.why-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.about-panel h2 {
  max-width: 680px;
  font-size: clamp(1.65rem, 3.25vw, 2.35rem);
  font-weight: 800;
}

.about-panel p {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
}

.check-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--aqua);
}

.cta-band {
  color: var(--ink);
  border-top: 1px solid rgba(233, 229, 240, 0.74);
  border-bottom: 1px solid rgba(233, 229, 240, 0.74);
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.055), transparent 32rem),
    linear-gradient(180deg, #fbf8ff 0%, #fffdf8 100%);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-block: 2.55rem;
}

.cta-inner h2 {
  max-width: 760px;
  font-size: clamp(1.48rem, 2.7vw, 2.08rem);
  line-height: 1.12;
}

.cta-inner p {
  max-width: 600px;
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer {
  padding: 3rem 0;
  color: var(--muted);
  border-top: 1px solid rgba(233, 229, 240, 0.86);
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.04), transparent 32rem),
    #fffdf8;
}

.footer-grid {
  display: grid;
  gap: 2rem 1.4rem;
}

.site-footer .brand-mark,
.site-footer a {
  color: var(--ink);
}

.site-footer p {
  max-width: 430px;
  margin: 1rem 0 0;
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.site-footer a:not(.brand-mark) {
  display: block;
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:not(.brand-mark):hover {
  color: var(--violet);
  transform: translateX(2px);
}

.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(33, 26, 54, 0.045);
}

.footer-socials a:hover {
  color: var(--violet);
  border-color: rgba(200, 148, 45, 0.32);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 225, 0.96));
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  display: block;
}

.footer-socials .social-facebook {
  fill: currentColor;
}

.footer-socials .social-instagram {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-socials .social-linkedin {
  fill: currentColor;
}

.simple-footer {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(233, 229, 240, 0.86);
  background:
    linear-gradient(120deg, rgba(124, 58, 237, 0.035), transparent 30rem),
    #fffdf8;
}

.simple-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1040;
  width: min(calc(100% - 2rem), 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(232, 225, 241, 0.92);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 55px rgba(34, 27, 54, 0.14);
  transform: translateX(-50%);
}

.cookie-consent strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--ink);
  font-weight: 760;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent a {
  display: inline-block;
  margin-top: 0.28rem;
  color: var(--violet);
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  white-space: nowrap;
}

body.site-locked .site-nav,
body.site-locked main > :not(.hero-section):not(.subhero):not(.site-lock-section),
body.site-locked .site-footer,
body.site-locked .cookie-consent {
  display: none !important;
}

.site-lock-section {
  display: grid;
  place-items: center;
  padding: clamp(1.35rem, 4vw, 3rem) 1rem;
  background: #fff;
}

.site-lock-panel {
  position: relative;
  z-index: 8;
  width: min(100% - 2rem, 560px);
  margin: 0 auto;
  padding: 0.95rem;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(24, 16, 42, 0.12);
  backdrop-filter: blur(14px);
  text-align: center;
}

.site-lock-panel h2 {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 760;
  line-height: 1.12;
}

.site-lock-panel label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 760;
}

.site-lock-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.site-lock-message {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  color: #8c1d35;
  font-size: 0.92rem;
  font-weight: 700;
}

.narrow-content {
  max-width: 940px;
}

.content-panel {
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(232, 225, 241, 0.92);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(33, 26, 54, 0.055);
}

.content-panel h2 {
  margin: 1.45rem 0 0.45rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 700;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  line-height: 1.72;
}

.content-panel ul {
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
}

.subhero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  padding: 0;
  background-image: var(--subhero-bg);
  background-position: center;
  background-size: cover;
}

.subhero::before,
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.subhero::before {
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 253, 248, 0.82) 0%, rgba(255, 253, 248, 0.62) 34%, rgba(255, 253, 248, 0.26) 62%, rgba(255, 253, 248, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.36) 0%, rgba(255, 253, 248, 0.18) 58%, rgba(255, 253, 248, 0.55) 100%);
}

.subhero::after {
  background:
    radial-gradient(circle at 50% 38%, rgba(168, 85, 247, 0.1), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(200, 148, 45, 0.1), transparent 18rem);
}

.subhero > .container {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding-block: 6.8rem 4.8rem;
  text-align: center;
}

.subhero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 1.7rem;
  align-items: center;
}

.subhero .eyebrow,
main > .section-pad .eyebrow {
  display: none;
}

.subhero h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  line-height: 0.98;
  color: var(--ink);
  text-shadow: 0 14px 42px rgba(255, 255, 255, 0.52);
}

.subhero p {
  max-width: 680px;
  margin-inline: auto;
  color: #344054;
  font-weight: 600;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.88);
}

.subhero .btn {
  margin-top: 2rem;
}

.subhero img {
  display: none;
}

.feature-box,
.price-card,
.calculator-shell,
.contact-form,
.contact-card {
  padding: 1.45rem;
}

.feature-box,
.price-card {
  text-align: center;
}

.feature-box,
.price-card,
.calculator-shell,
.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) padding-box,
    linear-gradient(135deg, var(--line), var(--line)) border-box;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.feature-box:hover,
.price-card:hover,
.calculator-shell:hover,
.contact-card:hover {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.985)) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 68%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  max-width: 1100px;
  margin-inline: auto;
}

.pricing-grid-two {
  max-width: 900px;
  margin-inline: auto;
}

.price-card.highlighted {
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #fbf7ff) padding-box,
    linear-gradient(135deg, rgba(109, 40, 217, 0.58), rgba(200, 148, 45, 0.42)) border-box;
}

.feature-box svg,
.calculator-shell svg {
  margin-bottom: 1rem;
}

.feature-box h3,
.price-card h3,
.calculator-shell h3 {
  font-weight: 700;
}

.price {
  margin: 0 0 0.7rem;
  color: var(--violet) !important;
  font-size: 1.55rem;
  font-weight: 800;
}

.price-note {
  max-width: 860px;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.cms-note {
  max-width: 900px;
  margin: 1rem auto 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(33, 26, 54, 0.045);
}

.cms-note h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
}

.cms-note p {
  max-width: 820px;
  margin: 0.8rem auto 0;
  color: var(--muted);
  line-height: 1.68;
}

.cms-note .seo-tags {
  justify-content: center;
}

.web-addons {
  max-width: 1100px;
  margin: 2.2rem auto 0;
}

.web-addons .section-heading {
  margin-bottom: 1.45rem;
}

.web-addons .section-heading h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.18rem);
}

.price-table-wrap {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(33, 26, 54, 0.07);
}

.price-table {
  margin: 0;
}

.price-table th {
  color: var(--ink);
  background: #fbf7ff;
}

.scope-list {
  display: grid;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: scope-item;
}

.scope-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.05rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)) padding-box,
    linear-gradient(135deg, var(--line), var(--line)) border-box;
  box-shadow: 0 16px 38px rgba(33, 26, 54, 0.045);
  counter-increment: scope-item;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.scope-list li::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 62%, #d5a63f 100%);
  color: #fff;
  content: counter(scope-item);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(109, 40, 217, 0.16);
}

.scope-list li:hover {
  background:
    linear-gradient(rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 0.985)) padding-box,
    linear-gradient(135deg, #6d28d9 0%, #a855f7 64%, #c8942d 100%) border-box;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.scope-list h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.56;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-departments .section-heading {
  margin-inline: auto;
  text-align: center;
}

.contact-departments .row > [class*="col"] {
  display: flex;
}

.contact-departments .contact-card {
  width: 100%;
  grid-template-rows: 38px auto minmax(96px, 1fr) auto auto;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.contact-departments .contact-card > svg {
  width: 34px;
  height: 34px;
  margin-inline: auto;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-departments .contact-card p {
  max-width: 290px;
  margin-inline: auto;
}

.contact-hero .contact-card {
  width: min(100%, 620px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
  text-align: left;
}

.contact-card a,
.contact-card span {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-weight: 800;
}

.contact-departments .contact-card a {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

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

.calculator-shell .placeholder-line {
  height: 12px;
  margin: 1rem 0 0;
  border-radius: 7px;
  background: linear-gradient(90deg, #eee8f8, #fafafa);
}

.calculator-shell .placeholder-line.short {
  width: 62%;
}

#kalkulatory .calculator-shell {
  display: grid;
  width: 100%;
  grid-template-rows: 38px auto minmax(112px, 1fr) auto;
  justify-items: center;
  align-content: start;
  text-align: center;
}

#kalkulatory .calculator-shell p {
  max-width: 305px;
  margin-inline: auto;
}

.calculator-shell .btn {
  margin-top: 0.8rem;
  opacity: 0.68;
}

.contact-form label {
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--violet);
  font-weight: 800;
  text-align: center;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(124, 58, 237, 0.12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(280px, 1.7fr) minmax(150px, 0.9fr) minmax(220px, 1.15fr) minmax(150px, 0.85fr);
  }

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

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

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

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

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .cta-inner .btn {
    flex: 0 0 auto;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767.98px) {
  body {
    text-align: center;
  }

  .site-nav {
    min-height: 48px;
    text-align: left;
  }

  .home-page .site-nav {
    top: 10px;
    min-height: 54px;
  }

  .brand-mark {
    font-size: 0.98rem;
  }

  .brand-logo-img {
    width: min(34vw, 94px);
  }

  .home-page .brand-logo-img {
    width: min(36vw, 102px);
  }

  .site-nav.is-scrolled .brand-logo-img,
  .home-page .site-nav.is-scrolled .brand-logo-img {
    width: min(26vw, 70px);
  }

  .hero-section,
  .hero-slider,
  .hero-grid,
  .subhero,
  .subhero > .container {
    min-height: 720px;
  }

  .hero-grid,
  .subhero > .container {
    align-content: center;
    padding-block: 5.4rem 4rem;
  }

  .hero-copy h1,
  .hero-copy h2,
  .subhero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.62rem);
    line-height: 0.96;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-pad {
    padding: 3.1rem 0;
  }

  .section-heading {
    max-width: 350px;
    margin-right: auto;
    margin-bottom: 1.55rem;
    margin-left: auto;
    text-align: center;
  }

  .section-heading h2,
  .why-panel h2,
  .cta-inner h2 {
    font-size: clamp(1.58rem, 7.2vw, 2.08rem);
    line-height: 1.06;
  }

  .section-text,
  .hero-lead,
  .subhero p {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
  }

  .service-links .container {
    max-width: 390px;
  }

  .seo-copy {
    max-width: 350px;
    margin-inline: auto;
    text-align: center;
  }

  .seo-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.02rem);
  }

  .seo-copy p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .seo-tags {
    justify-content: center;
    gap: 0.45rem;
  }

  .seo-tags li {
    padding: 0.4rem 0.62rem;
    font-size: 0.84rem;
  }

  .service-links .row,
  .row.g-4 {
    --bs-gutter-y: 0.85rem;
  }

  .service-links [class*="col"] {
    justify-content: center;
  }

  .service-card {
    width: 100%;
    max-width: 335px;
    min-height: 218px;
    grid-template-rows: 38px auto minmax(48px, auto) 32px;
    padding: 1.05rem 1rem 0.95rem;
  }

  .feature-box,
  .price-card,
  .calculator-shell,
  .contact-card,
  .work-card {
    max-width: 335px;
    margin-inline: auto;
    padding: 1.1rem 1rem;
  }

  .work-card {
    padding: 0;
  }

  .work-gallery-grid {
    max-width: 340px;
    margin-inline: auto;
  }

  .work-card img {
    height: 205px;
  }

  .work-card-body {
    padding: 1rem;
  }

  .work-card h3 {
    font-size: 1.02rem;
  }

  .work-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .pricing-grid {
    max-width: 340px;
    margin-inline: auto;
  }

  .scope-list {
    max-width: 340px;
    margin-inline: auto;
  }

  .scope-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 0.82rem;
    padding: 0.95rem;
    text-align: left;
  }

  .scope-list li::before {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .scope-list h3 {
    font-size: 0.98rem;
  }

  .scope-list p {
    font-size: 0.9rem;
  }

  .cms-note {
    max-width: 335px;
    margin-inline: auto;
    padding: 1.1rem 1rem;
    text-align: center;
  }

  .cms-note p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .price {
    font-size: 1.34rem;
  }

  .price-table-wrap {
    text-align: left;
    font-size: 0.9rem;
  }

  .contact-form {
    max-width: 350px;
    margin-inline: auto;
    text-align: left;
  }

  .contact-departments .contact-card {
    text-align: center;
  }

  .contact-departments .contact-card a {
    justify-content: center;
  }

  .contact-hero .contact-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-card svg,
  .feature-box svg,
  .calculator-shell svg {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
    white-space: normal;
  }

  .service-card p {
    max-width: 255px;
    margin-inline: auto;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .service-card-action {
    min-height: 31px;
    padding: 0.3rem 0.5rem;
  }

  #proces .row,
  .about-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 1.15rem;
  }

  #proces .col-lg-5,
  .about-panel,
  .cta-inner {
    text-align: center;
  }

  .process-grid {
    max-width: 340px;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-inline: auto;
  }

  .process-item {
    padding: 1.1rem 1rem;
  }

  .process-item svg {
    margin-bottom: 0.7rem;
  }

  .process-item h3 {
    margin-bottom: 0.45rem;
    font-size: 1.03rem;
  }

  .process-item p {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .image-panel {
    max-width: 350px;
    min-height: 245px;
    margin-inline: auto;
  }

  .why-panel {
    max-width: min(390px, calc(100vw - 1.5rem));
    margin-inline: auto;
    padding: 1.35rem 1.05rem;
  }

  .about-panel p {
    margin-inline: auto;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .check-list {
    gap: 0.58rem;
    margin-top: 1.1rem;
    text-align: left;
  }

  .check-list li {
    gap: 0.62rem;
  }

  .check-list svg {
    width: 19px;
    height: 19px;
  }

  .cta-inner {
    max-width: 390px;
    margin-inline: auto;
    padding-block: 2.35rem;
  }

  .cta-inner p {
    margin-inline: auto;
    font-size: 0.96rem;
  }

  .cta-inner .btn {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .footer-grid {
    max-width: 350px;
    gap: 0;
    margin-inline: auto;
    text-align: center;
  }

  .footer-grid > div {
    padding: 0.95rem 0;
    border-top: 1px solid rgba(233, 229, 240, 0.9);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
  }

  .footer-logo .brand-logo-img,
  .site-footer p {
    margin-inline: auto;
  }

  .site-footer {
    padding: 1.85rem 0 2.05rem;
  }

  .footer-logo .brand-logo-img {
    width: 145px;
  }

  .site-footer p {
    max-width: 300px;
    margin-top: 0.65rem;
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .site-footer h2 {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(4) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.42rem;
  }

  .footer-grid > div:nth-child(2) h2,
  .footer-grid > div:nth-child(4) h2 {
    flex: 0 0 100%;
  }

  .footer-grid > div:nth-child(2) a:not(.brand-mark),
  .footer-grid > div:nth-child(4) > a:not(.brand-mark) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.36rem 0.58rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
  }

  .footer-grid > div:nth-child(2) a:not(.brand-mark):hover,
  .footer-grid > div:nth-child(4) > a:not(.brand-mark):hover {
    transform: translateY(-1px);
  }

  .footer-socials {
    flex: 0 0 100%;
    justify-content: center;
    margin-top: 0.28rem;
  }

  .footer-socials a {
    width: 34px;
    height: 34px;
  }

  .footer-contact-link {
    width: min(100%, 285px);
    margin: 0.38rem auto 0 !important;
    padding: 0.42rem 0.58rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.62);
    justify-content: center;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
  }

  .footer-contact-link:hover {
    transform: translateY(-1px) !important;
  }

  .footer-contact-link svg {
    width: 16px;
    height: 16px;
  }

  .simple-footer .container {
    flex-direction: column;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-consent-actions {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .site-lock-panel {
    width: min(100% - 1.25rem, 420px);
    padding: 0.8rem;
  }

  .site-lock-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 389.98px) {
  .service-card,
  .feature-box,
  .price-card,
  .calculator-shell,
  .contact-card,
  .work-card,
  .process-grid,
  .why-panel,
  .image-panel {
    max-width: min(348px, calc(100vw - 1.25rem));
  }

  .service-card {
    min-height: 210px;
    padding-inline: 0.9rem;
  }
}
