:root {
  --page-bg: #ffffff;
  --surface: #f7f7f7;
  --surface-strong: #f1f1f1;
  --text: #282828;
  --muted: #6d6d6d;
  --line: #e8e8e8;
  --gap: 15px;
  --radius: 15px;
  --side-space: 3%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: thsk, Arial, Helvetica, sans-serif;
}

body h1 {
  font-size: 25px !important;
}

body p {
  font-size: 14px !important;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  background: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  padding: 29px var(--side-space) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 76%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  height: 99px;
}

.site-nav,
.social-nav,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav {
  width: auto;
  min-width: 0;
  justify-content: flex-start;
  justify-self: start;
}

.site-nav a {
  padding-right: 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  white-space: nowrap;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.6;
}

.site-nav a.is-active {
  font-weight: 700;
}

.site-logo {
  display: inline-flex;
  width: auto;
  justify-content: center;
  align-items: center;
  justify-self: center;
  flex-shrink: 0;
}

.site-logo img {
  width: auto;
  max-height: 68px;
}

.social-nav {
  width: auto;
  min-width: 0;
  justify-content: flex-end;
  justify-self: end;
  gap: 14px;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  opacity: 0.6;
}

.social-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.social-nav a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-main {
  padding: 182px var(--side-space) 40px;
}

.site-main-home {
  padding-bottom: 0;
}

.page-intro {
  max-width: 860px;
  padding-bottom: 36px;
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-intro h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.page-intro p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

.portfolio-grid,
.contact-grid,
.package-grid,
.feature-grid,
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  width: calc((100% - (3 * var(--gap))) / 4);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.portfolio-card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.portfolio-card-image::before {
  content: "";
  display: block;
  padding-bottom: 133.33333%;
}

.portfolio-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.9);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.portfolio-card-overlay span {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-card:hover .portfolio-card-image::after,
.portfolio-card:focus-within .portfolio-card-image::after,
.portfolio-card:hover .portfolio-card-overlay,
.portfolio-card:focus-within .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-link {
  cursor: pointer;
}

.portfolio-card-static {
  cursor: default;
}

.detail-gallery {
  display: grid;
  gap: var(--gap);
}

.detail-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.detail-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-block {
  margin-top: 46px;
}

.section-heading {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

.contact-card,
.package-card,
.feature-card,
.mini-card,
.contact-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-card,
.package-card,
.feature-card,
.mini-card {
  padding: 28px;
}

.contact-card,
.package-card {
  width: calc((100% - (2 * var(--gap))) / 3);
}

.feature-card {
  width: calc((100% - var(--gap)) / 2);
}

.mini-card {
  width: calc((100% - (2 * var(--gap))) / 3);
}

.card-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h2,
.package-card h2,
.feature-card h3,
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.contact-card p,
.package-card p,
.feature-card p,
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.package-price {
  margin: 18px 0 16px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.package-card ul,
.feature-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-card li,
.feature-card li {
  margin-bottom: 10px;
  line-height: 24px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.button-link:hover,
.button-link:focus-visible {
  opacity: 0.82;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.contact-cta h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.contact-cta p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}

.site-footer {
  padding: 34px var(--side-space) 40px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.back-to-top {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--text);
}

.footer-links {
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

.site-footer p a {
  color: var(--text);
}

.page-hero {
  position: relative;
  margin-bottom: 12px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-hero::before {
  top: -26px;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(183, 212, 243, 0.48) 0%, rgba(183, 212, 243, 0) 72%);
}

.page-hero::after {
  left: 4%;
  bottom: -34px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244, 236, 226, 0.9) 0%, rgba(244, 236, 226, 0) 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: var(--gap);
  align-items: stretch;
}

.hero-grid-balanced {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.glow-surface,
.glow-card,
.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 37, 56, 0.08);
  box-shadow: 0 24px 60px rgba(17, 37, 56, 0.08);
}

.glow-surface {
  padding: clamp(30px, 5vw, 46px);
  background:
    linear-gradient(135deg, rgba(250, 247, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 46%, rgba(237, 245, 252, 0.96) 100%);
}

.glow-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 37, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 37, 56, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.62), transparent 88%);
  pointer-events: none;
}

.glow-surface > *,
.glow-card > *,
.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 700px;
}

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

.hero-actions .button-link,
.hero-actions .secondary-link {
  margin-top: 0;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(17, 37, 56, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 37, 56, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

.hero-panel {
  padding: 32px;
  color: #f5f7fa;
  background: linear-gradient(150deg, #13263a 0%, #21364b 58%, #385068 100%);
}

.hero-panel::before,
.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 38%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-panel::after,
.glow-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -52% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-panel h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-panel .card-label {
  margin-bottom: 14px;
  color: rgba(245, 247, 250, 0.7);
}

.signal-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.signal-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.signal-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 250, 0.68);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-item strong {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

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

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

.section-title-lg {
  margin: 0;
  font-size: clamp(28px, 3.7vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading-wrap p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 28px;
}

.glow-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 251, 0.98) 100%);
}

.interactive-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.interactive-card:hover,
.interactive-card:focus-within {
  border-color: rgba(17, 37, 56, 0.16);
  box-shadow: 0 28px 70px rgba(17, 37, 56, 0.12);
}

.contact-grid-modern .contact-card,
.package-grid-modern .package-card,
.feature-grid-modern .feature-card,
.value-grid .mini-card {
  min-height: 100%;
}

.card-link-text,
.card-note {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--text);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.detail-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-list li {
  margin-bottom: 10px;
  line-height: 24px;
}

.package-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 37, 56, 0.06);
  color: var(--text);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-note {
  margin-bottom: 18px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.package-meta span,
.info-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 37, 56, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
}

.package-card.is-featured {
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(116, 151, 186, 0.24);
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-10px);
}

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

.value-grid .mini-card {
  width: auto;
}

.metric-card {
  min-height: 188px;
  padding: 26px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
}

.contact-cta-modern {
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.98) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(237, 245, 252, 0.98) 100%);
}

.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1180px) {
  .social-nav {
    gap: 12px;
  }
}

@media (max-width: 932px) {
  :root {
    --side-space: 5%;
  }

  .site-header {
    padding-top: 22px;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    row-gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .site-logo {
    order: 2;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .social-nav {
    order: 3;
    width: auto;
    margin-left: auto;
    gap: 10px;
  }

  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0 0 10px;
  }

  .site-main {
    padding-top: 168px;
  }

  .portfolio-card,
  .contact-card,
  .package-card,
  .feature-card,
  .mini-card {
    width: calc((100% - var(--gap)) / 2);
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .site-main {
    padding-top: 154px;
  }

  .page-intro p,
  .contact-card p,
  .package-card p,
  .feature-card p,
  .mini-card p,
  .contact-cta p {
    font-size: 15px;
    line-height: 24px;
  }

  .social-nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .portfolio-card,
  .contact-card,
  .package-card,
  .feature-card,
  .mini-card {
    width: 100%;
  }

  .portfolio-card-overlay span {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-card,
  .package-card,
  .feature-card,
  .mini-card,
  .contact-cta {
    padding: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button-link,
  .secondary-link {
    transition: none;
    transform: none;
  }
}

.page-contact .button-link,
.page-packages .button-link {
  background: #12161b;
}

.page-contact .secondary-link,
.page-packages .secondary-link {
  background: #fff;
}

.clean-hero {
  margin-bottom: 8px;
}

.clean-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: var(--gap);
  align-items: stretch;
}

.clean-hero-copy,
.clean-side-card,
.clean-card,
.clean-package-card,
.clean-benefit-card,
.clean-step-card,
.clean-banner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(19, 31, 44, 0.05);
}

.clean-hero-copy,
.clean-side-card,
.clean-card,
.clean-package-card,
.clean-benefit-card,
.clean-step-card,
.clean-banner {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.clean-side-card:hover,
.clean-card:hover,
.clean-package-card:hover,
.clean-benefit-card:hover,
.clean-step-card:hover,
.clean-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(19, 31, 44, 0.08);
  border-color: #dde5ec;
}

.clean-hero-copy {
  padding: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.clean-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.clean-hero-copy p:last-of-type {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
}

.clean-side-card {
  padding: 32px;
  background: #fbfbfb;
}

.clean-side-list {
  display: grid;
  gap: 16px;
}

.clean-side-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.clean-side-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.clean-side-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clean-side-item strong {
  display: block;
  color: var(--text);
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
}

.clean-card-grid,
.clean-package-grid,
.clean-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.clean-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}

.clean-card,
.clean-package-card,
.clean-benefit-card,
.clean-step-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
}

.clean-card h2,
.clean-package-card h2,
.clean-benefit-card h3,
.clean-step-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.clean-card p,
.clean-package-card p,
.clean-benefit-card p,
.clean-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.clean-card .card-link-text,
.clean-card .card-note {
  margin-top: auto;
  padding-top: 24px;
}

.clean-package-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe6ed;
  background:
    radial-gradient(circle at top right, rgba(227, 234, 241, 0.74) 0%, rgba(227, 234, 241, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
}

.clean-package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(196, 208, 219, 0.95) 0%, rgba(196, 208, 219, 0.2) 100%);
}

.clean-package-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -82px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 237, 243, 0.9) 0%, rgba(231, 237, 243, 0) 70%);
  pointer-events: none;
  opacity: 0.92;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.clean-package-card-featured {
  border-color: #d5dee7;
  background:
    radial-gradient(circle at top right, rgba(214, 225, 235, 0.92) 0%, rgba(214, 225, 235, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  box-shadow: 0 24px 58px rgba(19, 31, 44, 0.09);
}

.clean-package-card-featured::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 114, 136, 0.88) 0%, rgba(176, 192, 207, 0.22) 100%);
}

.clean-package-card:hover {
  box-shadow: 0 28px 62px rgba(19, 31, 44, 0.11);
}

.clean-package-card:hover::after {
  transform: translate(-10px, 12px);
}

.package-card-topline,
.package-card-head,
.package-meta-grid,
.package-highlight-row,
.package-feature-list,
.package-card-footer {
  position: relative;
  z-index: 1;
}

.package-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(214, 223, 231, 0.82);
}

.package-card-brand .card-label {
  margin-bottom: 8px;
}

.package-kicker {
  color: #7b8793;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid #dde5ec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #22303d;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.clean-package-card-featured .package-chip {
  border-color: #12161b;
  background: #12161b;
  color: #fff;
}

.package-card-head {
  padding-top: 24px;
}

.clean-package-card h2 {
  margin-bottom: 14px;
}

.clean-package-card .package-price {
  margin: 0;
  color: #161d24;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.clean-package-card .package-note {
  margin-top: 16px;
  max-width: 34ch;
}

.package-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.package-meta-box {
  min-height: 100%;
  padding: 16px 16px 18px;
  border: 1px solid #e4ebf1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.package-meta-box span {
  display: block;
  margin-bottom: 8px;
  color: #7c8894;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-meta-box strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
}

.package-highlight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #dfe7ee;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(238, 243, 247, 0.96) 100%);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.package-highlight-row span {
  color: #74818d;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-highlight-row strong {
  color: #161d24;
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  text-align: right;
}

.clean-package-card-featured .package-highlight-row {
  background: linear-gradient(180deg, rgba(235, 241, 246, 0.98) 0%, rgba(228, 236, 243, 0.98) 100%);
}

.package-feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.package-feature-list li {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
  line-height: 25px;
}

.package-feature-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #151a20 0%, #566371 100%);
  box-shadow: 0 0 0 4px #eff4f7;
}

.clean-package-card-featured .package-feature-list li::before {
  background: linear-gradient(180deg, #10161d 0%, #6a7c8f 100%);
  box-shadow: 0 0 0 4px #e7eef4;
}

.package-card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.package-footer-note {
  padding-top: 18px;
  border-top: 1px solid rgba(214, 223, 231, 0.82);
  font-size: 14px;
  line-height: 24px;
}

.clean-package-card:hover .package-meta-box {
  transform: translateY(-1px);
  border-color: #d7e0e8;
  background: rgba(255, 255, 255, 0.92);
}

.clean-package-card:hover .package-highlight-row {
  transform: translateY(-1px);
  border-color: #d2dde7;
}

.clean-package-card .button-link {
  margin-top: auto;
  width: 100%;
  min-height: 52px;
}

.clean-benefit-card,
.clean-step-card {
  background: #fff;
}

.clean-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.clean-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.clean-banner p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}

.packages-pricing-main {
  padding-bottom: 120px;
}

.packages-pricing-hero {
  max-width: 1120px;
  min-height: calc(100vh - 260px);
  margin: 0 auto;
}

.packages-pricing-intro {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.packages-pricing-kicker {
  margin: 0 0 10px;
  color: #919191;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.packages-pricing-kicker span {
  position: relative;
  color: #121212;
  font-weight: 700;
}

.packages-pricing-kicker span::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 8px;
  border-radius: 999px;
  background: #46e83d;
  z-index: -1;
}

.packages-pricing-intro h1 {
  margin: 0;
  color: #090909;
  font-size: clamp(64px, 8.2vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.packages-pricing-intro p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: #202020;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.6;
}

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

.pricing-card,
.pricing-card-shell,
.pricing-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pricing-card-shell {
  position: relative;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, #e9e9e9 0%, #dddddd 100%);
  box-shadow: 0 28px 52px rgba(18, 24, 32, 0.08);
}

.pricing-card-premium .pricing-card-shell {
  background: linear-gradient(180deg, #e7e7e7 0%, #dbdbdb 100%);
}

.pricing-card-enterprise .pricing-card-shell {
  background: linear-gradient(145deg, #2b2b2b 0%, #5a5a5a 100%);
  box-shadow: 0 34px 60px rgba(10, 10, 10, 0.22);
}

.pricing-card-label,
.pricing-card-label-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8d8d8;
  color: #232a32;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.pricing-card-label-dark {
  background: #1d1d1d;
  border-color: #0d0d0d;
  color: #fff;
}

.pricing-card-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}

.pricing-card-label-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.pricing-card-topbar {
  position: relative;
  min-height: 38px;
  margin-bottom: 12px;
}

.pricing-card-ribbon {
  position: absolute;
  top: -14px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 0 30px 0 18px;
  background: linear-gradient(90deg, #ff6c68 0%, #f30090 100%);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-card-body {
  flex: 1;
  margin-top: 12px;
  padding: 26px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.pricing-card-body-dark {
  background: linear-gradient(180deg, #060606 0%, #0f0f0f 100%);
  color: #fff;
}

.pricing-card-price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pricing-card-price-line strong {
  color: #101010;
  font-size: clamp(46px, 4.6vw, 62px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.pricing-card-price-line span {
  padding-bottom: 7px;
  color: #6a6a6a;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.pricing-card-price p,
.pricing-offer-meta {
  margin: 6px 0 0;
  color: #787878;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
}

.pricing-offer-block h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-card-description {
  margin: 16px 0 0;
  color: #353535;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-card-body-dark .pricing-card-description {
  color: #dbdbdb;
}

.pricing-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.pricing-card-cta:hover,
.pricing-card-cta:focus-visible {
  transform: translateY(-1px);
}

.pricing-card-cta-light {
  border: 1px solid #4b4b4b;
  background: #fff;
  color: #171717;
}

.pricing-card-cta-dark {
  background: #333333;
  color: #fff;
}

.pricing-card-cta-enterprise {
  background: #3f3f3f;
  color: #fff;
}

.pricing-card-features {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #4b4b4b;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-card-features li span {
  flex: 1;
}

.pricing-card-features li em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eeeeee;
  color: #666666;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.pricing-card-features-dark li {
  color: #bcbcbc;
}

.pricing-card-features-dark li em {
  background: rgba(255, 255, 255, 0.12);
  color: #f1f1f1;
}

.contact-minimal-main {
  padding-bottom: 120px;
}

.contact-minimal-section {
  width: 100%;
  min-height: calc(100vh - 280px);
}

.contact-minimal-copy h1 {
  margin: 0;
  max-width: 980px;
  color: #090909;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.contact-minimal-copy p {
  margin: 20px 0 0;
  color: #262626;
  font-size: clamp(24px, 2.5vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.contact-minimal-divider {
  width: 100%;
  height: 1px;
  margin: 118px 0 108px;
  background: #dcdcdc;
}

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

.contact-minimal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 170px;
  padding: 0 18px;
  text-align: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.contact-minimal-item:hover,
.contact-minimal-item:focus-visible {
  transform: translateY(-3px);
  opacity: 0.75;
}

.contact-minimal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  color: #070707;
}

.contact-minimal-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.contact-minimal-icon-symbol {
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.contact-minimal-value {
  margin-top: 22px;
  color: #111111;
  font-size: clamp(22px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: 0.01em;
  word-break: break-word;
}

@media (max-width: 1180px) {
  .clean-hero-grid,
  .clean-card-grid,
  .clean-package-grid,
  .clean-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clean-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card-enterprise {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-minimal-grid {
    gap: 28px;
  }

  .contact-minimal-value {
    font-size: 20px;
  }
}

@media (max-width: 540px) {
  .clean-card-grid,
  .clean-package-grid,
  .clean-benefit-grid,
  .clean-steps-grid {
    grid-template-columns: 1fr;
  }

  .packages-pricing-main {
    padding-bottom: 90px;
  }

  .packages-pricing-hero {
    min-height: auto;
  }

  .packages-pricing-intro {
    margin-bottom: 38px;
  }

  .packages-pricing-kicker {
    font-size: 20px;
  }

  .packages-pricing-intro h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .packages-pricing-intro p:last-child {
    font-size: 16px;
  }

  .packages-pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-card-enterprise {
    grid-column: auto;
    max-width: none;
  }

  .pricing-card-shell {
    border-radius: 26px;
  }

  .pricing-card-ribbon {
    min-width: 88px;
    min-height: 42px;
    font-size: 12px;
  }

  .pricing-card-body {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  .pricing-card-price-line strong {
    font-size: 44px;
  }

  .pricing-card-features li {
    font-size: 14px;
  }

  .clean-hero-copy,
  .clean-side-card,
  .clean-card,
  .clean-package-card,
  .clean-benefit-card,
  .clean-step-card,
  .clean-banner {
    padding: 24px;
  }

  .clean-hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .clean-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-minimal-main {
    padding-bottom: 84px;
  }

  .contact-minimal-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .contact-minimal-copy p {
    font-size: 21px;
    line-height: 1.45;
  }

  .contact-minimal-divider {
    margin: 72px 0 68px;
  }

  .contact-minimal-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-minimal-item {
    min-height: auto;
    padding: 0;
  }

  .package-card-topline,
  .package-highlight-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-highlight-row strong {
    text-align: left;
  }

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