:root {
  --neon-purple: #9d00ff;
  --deep-black: #0a0a0a;
  --matte-gray: #2b2b2b;
  --snow-white: #fafafa;
  --coral-red: #ff4e4e;
  --cyan-blue: #00d4ff;
  --yellow: #ffd600;
  --muted: #c3c3c3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--deep-black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--deep-black);
  color: var(--snow-white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
input {
  font-family: "Montserrat", sans-serif;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan-blue);
  outline-offset: 4px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.gradient-bg {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.22) 0%, var(--deep-black) 72%);
}

.gradient-bg::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(157, 0, 255, 0.18), transparent 42%),
    radial-gradient(circle at 78% 78%, rgba(0, 212, 255, 0.1), transparent 43%);
  content: "";
}

.urban-texture {
  background-color: var(--matte-gray);
  background-image:
    radial-gradient(circle at 25% 25%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 24px 0;
  background: #000;
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1152px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.brand-title {
  color: #fff;
  font-family: "Bebas Neue", cursive;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-subtitle {
  margin-top: 4px;
  color: #8e8e8e;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a,
.mobile-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.mobile-nav a:hover {
  color: var(--cyan-blue);
}

.header-cta,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cyan-blue);
  color: #fff;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.header-cta {
  padding: 12px 24px;
  font-size: 15px;
}

.header-cta:hover,
.mobile-nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.36);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: 672px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 672px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
}

.hero-circle {
  top: 80px;
  left: 3%;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(157, 0, 255, 0.2);
  border-radius: 50%;
}

.hero-diamond {
  right: 4%;
  bottom: 50px;
  width: 110px;
  height: 110px;
  transform: rotate(45deg);
  border: 2px solid rgba(0, 212, 255, 0.14);
}

.hero-grid {
  right: 18%;
  bottom: 30%;
  width: 56px;
  height: 56px;
  transform: rotate(12deg);
  border: 2px solid rgba(157, 0, 255, 0.12);
}

.display-title,
.display-heading {
  font-family: "Bebas Neue", cursive;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.display-title {
  max-width: 820px;
  color: #fff;
  font-size: clamp(3.5rem, 6.2vw, 5.7rem);
  line-height: 0.96;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.display-title span,
.display-heading span {
  color: var(--neon-purple);
}

.hero-subtitle {
  margin-top: 32px;
  color: #b7b7b7;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 300;
}

.hero-lead {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 700;
}

.hero-proof {
  margin-top: 30px;
  color: #eaeaea;
  font-family: "Bebas Neue", cursive;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-actions {
  margin-top: 48px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.button:hover {
  transform: scale(1.04);
}

.button-purple {
  background: var(--neon-purple);
  box-shadow: 0 0 26px rgba(157, 0, 255, 0.38);
  color: #fff;
}

.button-purple:hover {
  box-shadow: 0 0 34px rgba(157, 0, 255, 0.65);
}

.button-outline-cyan,
.button-outline-purple {
  border: 2px solid var(--cyan-blue);
  color: var(--cyan-blue);
}

.button-outline-cyan:hover {
  background: rgba(0, 212, 255, 0.12);
}

.section {
  padding: 80px 0;
}

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

.display-heading {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section-heading p {
  margin-top: 20px;
  color: #c2c2c2;
  font-size: 18px;
  font-weight: 400;
}

.section-heading strong {
  color: var(--neon-purple);
  font-weight: 700;
}

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

.service-card {
  min-height: 390px;
  padding: 32px;
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.service-card.accent-cyan {
  border-color: var(--cyan-blue);
}

.service-icon {
  display: block;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1;
}

.service-card h3 {
  max-width: 310px;
  font-family: "Bebas Neue", cursive;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.service-card ul {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #c7c7c7;
  font-size: 16px;
  line-height: 1.48;
}

.service-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--neon-purple);
  content: "•";
}

.service-card.accent-cyan li::before {
  color: var(--cyan-blue);
}

.bonus-panel,
.extras-panel {
  margin-top: 64px;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
}

.bonus-panel {
  border: 2px solid var(--yellow);
  background: rgba(10, 10, 10, 0.92);
}

.bonus-panel > p,
.extras-panel > p {
  margin-top: 18px;
  color: #c3c3c3;
  font-size: 18px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.bonus-card {
  padding: 24px 20px;
  border: 1px solid rgba(255, 214, 0, 0.8);
  border-radius: 14px;
  background: var(--matte-gray);
}

.bonus-card > span {
  display: block;
  font-size: 28px;
}

.bonus-card > .bonus-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--yellow);
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-card h3 {
  margin-top: 12px;
  font-size: 17px;
}

.bonus-card p {
  margin-top: 8px;
  color: #c4c4c4;
  font-size: 14px;
  line-height: 1.45;
}

.packages-section {
  background-color: var(--deep-black);
}

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

.package-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 28px 24px 24px;
  overflow: hidden;
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  background: var(--matte-gray);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.package-card::before {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  content: "";
  transition: left 0.5s;
}

.package-card:hover::before {
  left: 100%;
}

.package-cyan {
  border-color: var(--cyan-blue);
  background: var(--deep-black);
}

.package-yellow {
  border-color: var(--yellow);
  background: var(--deep-black);
}

.package-icon {
  position: relative;
  z-index: 1;
  font-size: 34px;
  line-height: 1;
}

.package-card h3,
.extra-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: "Bebas Neue", cursive;
  font-size: 23px;
  letter-spacing: 0.04em;
}

.package-name {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: #c6c6c6;
  font-size: 15px;
}

.price {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--neon-purple);
  font-family: "Bebas Neue", cursive;
  font-size: 39px;
  line-height: 1;
}

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

.package-yellow .price {
  color: var(--yellow);
}

.price span {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.ad-budget {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #b7b7b7;
  font-size: 12px;
}

.package-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.package-card li {
  position: relative;
  padding-left: 16px;
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.35;
}

.package-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--neon-purple);
  content: "•";
}

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

.package-yellow li::before {
  color: var(--yellow);
}

.package-button,
.extra-card button {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.package-button:hover,
.extra-card button:hover {
  transform: scale(1.04);
}

.package-button.purple {
  background: var(--neon-purple);
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.35);
}

.package-button.cyan {
  background: var(--cyan-blue);
}

.package-button.yellow {
  background: var(--yellow);
  color: #111;
}

.popular-badge {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 50%;
  padding: 5px 20px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: var(--cyan-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.package-yellow .popular-badge {
  background: var(--yellow);
  color: #111;
}

.extras-panel {
  border: 2px solid var(--neon-purple);
  background: var(--matte-gray);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  text-align: left;
}

.extra-card {
  display: flex;
  gap: 16px;
  min-height: 124px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--neon-purple);
  border-radius: 12px;
  background: var(--deep-black);
}

.extra-card > span {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
}

.extra-card h3 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

.extra-card p {
  margin-top: 6px;
  color: #bdbdbd;
  font-size: 14px;
}

.extra-card strong {
  display: block;
  margin-top: 10px;
  color: var(--neon-purple);
  font-size: 18px;
}

.extra-cyan {
  border-color: var(--cyan-blue);
}

.extra-cyan strong {
  color: var(--cyan-blue);
}

.extra-red {
  border-color: var(--coral-red);
}

.extra-red strong {
  color: var(--coral-red);
}

.extra-dashed {
  border-style: dashed;
  border-color: var(--coral-red);
  align-items: center;
}

.extra-dashed button {
  min-height: 36px;
  margin-top: 12px;
  padding: 8px 18px;
  background: var(--coral-red);
  font-size: 12px;
}

.testimonials-section {
  background-color: var(--matte-gray);
}

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

.testimonial-card {
  min-height: 250px;
  padding: 24px;
  border: 2px solid var(--neon-purple);
  border-radius: 16px;
  background: var(--deep-black);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
}

.testimonial-red {
  border-color: var(--coral-red);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 23px;
}

.purple-avatar {
  background: var(--neon-purple);
}

.red-avatar {
  background: var(--coral-red);
}

.testimonial-person h3 {
  font-size: 16px;
  font-weight: 700;
}

.testimonial-person p {
  margin-top: 2px;
  color: #bdbdbd;
  font-size: 14px;
}

.testimonial-card blockquote {
  margin-top: 22px;
  color: #dedede;
  font-size: 16px;
  line-height: 1.48;
}

.metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: var(--neon-purple);
  font-size: 13px;
}

.testimonial-red .metrics {
  color: var(--coral-red);
}

.final-cta {
  padding: 96px 0;
  text-align: center;
}

.final-cta .display-heading {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
}

.final-cta > .container > p {
  margin-top: 28px;
  color: #d1d1d1;
  font-size: 20px;
}

.final-cta .cta-lead {
  margin-top: 0;
  color: #fff;
  font-weight: 700;
}

.cta-actions {
  margin-top: 36px;
}

.button-coral {
  background: var(--coral-red);
  box-shadow: 0 0 26px rgba(255, 78, 78, 0.36);
  color: #fff;
}

.button-outline-purple {
  border-color: var(--neon-purple);
  color: var(--neon-purple);
}

.button-outline-purple:hover {
  background: rgba(157, 0, 255, 0.12);
}

.guarantees {
  margin-top: 32px !important;
  color: #c9c9c9 !important;
  font-size: 14px !important;
}

.site-footer {
  padding: 48px 0;
  background: var(--deep-black);
  color: var(--snow-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 20px;
  color: #bcbcbc;
  font-size: 14px;
  line-height: 1.5;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.footer-grid a,
.footer-grid button,
.footer-grid span {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 0;
  background: transparent;
  color: #bdbdbd;
  font-size: 14px;
  text-align: left;
  transition: color 0.3s ease;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--neon-purple);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid #343434;
  color: #969696;
  font-size: 14px;
  text-align: center;
}

.chat-widget {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.chat-button {
  position: relative;
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--coral-red));
  box-shadow: 0 4px 20px rgba(157, 0, 255, 0.4);
  color: #fff;
  font-size: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(157, 0, 255, 0.6);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 90px;
  display: flex;
  width: 400px;
  height: 600px;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--neon-purple);
  border-radius: 20px;
  background: var(--deep-black);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.chat-window[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, var(--neon-purple), var(--coral-red));
}

.chat-header .bot-avatar {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.chat-header strong {
  display: block;
  font-size: 14px;
}

.chat-header small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.chat-header button {
  margin-left: auto;
  background: transparent;
  color: #fff;
  font-size: 24px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--matte-gray);
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.message p {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  background: var(--deep-black);
  color: var(--snow-white);
  font-size: 14px;
  line-height: 1.4;
}

.message .bot-avatar {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--neon-purple);
  font-size: 16px;
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid var(--matte-gray);
  background: var(--deep-black);
}

.chat-input {
  display: flex;
  gap: 10px;
}

.chat-input input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #424242;
  border-radius: 25px;
  background: var(--matte-gray);
  color: var(--snow-white);
  font-size: 14px;
}

.chat-input input::placeholder {
  color: #aaa;
}

.send-button {
  padding: 12px 18px;
  border-radius: 25px;
  background: var(--neon-purple);
  color: #fff;
  font-weight: 600;
}

.send-button:hover {
  background: var(--coral-red);
}

@media (max-width: 1100px) {
  .header-inner {
    max-width: 100%;
  }

  .main-nav {
    gap: 20px;
  }

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

  .package-card {
    min-height: 570px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 22px 24px 4px;
    border-top: 1px solid #222;
    background: #000;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav-cta {
    padding: 12px 18px;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    padding: 18px 0;
  }

  .brand-title {
    font-size: 22px;
  }

  .hero,
  .hero-content {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .display-title {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero-subtitle {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    gap: 14px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
  }

  .section {
    padding: 64px 0;
  }

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

  .display-heading {
    font-size: 2.45rem;
  }

  .section-heading p {
    font-size: 16px;
  }

  .service-grid,
  .package-grid,
  .bonus-grid,
  .extras-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .bonus-panel,
  .extras-panel {
    padding: 24px 18px;
  }

  .package-card {
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .package-card ul {
    margin-bottom: 30px;
  }

  .extra-card {
    min-height: 0;
  }

  .metrics {
    flex-direction: column;
    gap: 5px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-cta > .container > p {
    font-size: 17px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-button {
    width: 62px;
    height: 62px;
  }

  .chat-window {
    right: -8px;
    width: min(390px, calc(100vw - 28px));
    height: 70vh;
  }
}

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


/* Sharing controls */
.share-actions{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:18px}.share-label{color:var(--muted);font-size:.78rem;letter-spacing:.06em;text-transform:uppercase}.share-control{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:38px;padding:8px 13px;border:1px solid rgba(255,255,255,.24);border-radius:999px;background:rgba(255,255,255,.04);color:var(--snow-white);font:600 .78rem/1.2 inherit;transition:background .2s ease,border-color .2s ease,transform .2s ease}.share-control:hover{background:rgba(255,255,255,.11);border-color:rgba(255,255,255,.5);transform:translateY(-1px)}.share-control:active{transform:translateY(0)}.share-control .icon{width:16px;height:16px;flex:0 0 auto;stroke:currentColor}.share-control-secondary{background:transparent;color:var(--muted)}.share-feedback{min-width:7.5rem;color:var(--cyan-blue);font-size:.78rem;text-align:left}@media(max-width:640px){.share-actions{align-items:stretch}.share-control{flex:1 1 auto}.share-label{width:100%;text-align:center}.share-feedback{width:100%;text-align:center}}
