:root {
  --blue: #2d2e40;
  --yellow: #fcbb15;
  --white: #eeeaeb;
  --bg: #fafafa;
  --ink: #1e1f2a;
  --muted: #6c6e82;
  --line: #e4e5ee;
  --radius: 18px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 20px rgba(28, 29, 43, 0.07);
  --shadow-md: 0 16px 40px rgba(28, 29, 43, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 16, 26, 0.18);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.visually-hidden {
  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: min(1120px, 90vw);
  margin: 0 auto;
}

.texture-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("../imgs/idvisual/textura.webp");
  background-repeat: repeat;
  background-size: 420px;
  mix-blend-mode: multiply;
  opacity: 0.010;
}

.hero,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  color: #fff;
  background: #0e0f1a;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero__aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.hero__orb--gold {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(252,187,21,0.32) 0%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite alternate;
}

.hero__orb--indigo {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  bottom: -10%;
  left: -14%;
  background: radial-gradient(circle, rgba(88,100,220,0.22) 0%, transparent 70%);
  animation: orbDrift 22s ease-in-out infinite alternate-reverse;
}

.hero__orb--warm {
  width: 35vw;
  height: 35vw;
  max-width: 420px;
  max-height: 420px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(252,187,21,0.14) 0%, transparent 70%);
  animation: orbDrift 15s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.03); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 0;
}

.brand-logo {
  width: clamp(120px, 32vw, 170px);
  object-fit: contain;
}

.nav-cta {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--yellow);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(252, 187, 21, 0.38);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(252, 187, 21, 0.48);
}

.hero__center {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}

.hero__headline {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.hero__line {
  display: block;
}

.hero__line--accent {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffe082 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: 1.4rem;
  max-width: 44ch;
  color: rgba(200,204,232,0.85);
  font-size: clamp(0.92rem, 2.6vw, 1.08rem);
  line-height: 1.72;
  font-weight: 400;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__reels {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0;
  margin-top: auto;
}

.hero__reel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero__track {
  display: flex;
  width: max-content;
}

.hero__reel--fwd .hero__track {
  animation: reelScroll 40s linear infinite;
}

.hero__reel--rev .hero__track {
  animation: reelScroll 35s linear infinite reverse;
}

@keyframes reelScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__strip {
  display: flex;
  gap: 1rem;
  padding: 0 0.5rem;
}

.hero__strip img {
  width: clamp(200px, 26vw, 340px);
  height: clamp(130px, 17vw, 220px);
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero__strip img:hover {
  transform: scale(1.05) translateY(-4px);
  border-color: rgba(252,187,21,0.5);
  box-shadow: 0 16px 48px rgba(252,187,21,0.15), 0 8px 32px rgba(0,0,0,0.5);
}

.hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff3cc;
}

.kicker-light {
  background: #f0f1f7;
  border-color: #dddee8;
  color: var(--blue);
}

.kicker-dark {
  background: rgba(45, 46, 64, 0.08);
  border-color: rgba(45, 46, 64, 0.18);
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.12;
}

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

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

.btn-primary {
  color: var(--blue);
  background: linear-gradient(140deg, #ffe06b 0%, #fcbb15 70%);
  box-shadow: 0 10px 28px rgba(252, 187, 21, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(252, 187, 21, 0.45);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}


.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.trust-item strong {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 800;
}

.trust-item span {
  font-size: 0.76rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-head h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.6rem, 6vw, 2.8rem);
  max-width: 20ch;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.solutions {
  background: linear-gradient(180deg, var(--bg) 0%, #f0f0f5 100%);
}

.solution-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.sol-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  overflow: hidden;
  contain: layout style;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(252, 187, 21, 0.4);
}

.sol-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(252, 187, 21, 0.12);
}

.sol-number {
  position: absolute;
  top: -0.2rem;
  right: 0.8rem;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, rgba(45, 46, 64, 0.06) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.sol-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}

.sol-card:hover .sol-icon {
  transform: scale(1.08);
}

.sol-icon--blue {
  background: rgba(45, 46, 64, 0.08);
}

.sol-icon--yellow {
  background: rgba(252, 187, 21, 0.12);
}

.sol-icon--dark {
  background: var(--blue);
}

.sol-icon img {
  width: 30px;
  height: 30px;
}

.sol-card h3 {
  margin-top: 0.9rem;
  font-size: 1.22rem;
  color: var(--blue);
  font-weight: 700;
}

.sol-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.sol-tag {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--blue);
}

.sol-card-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(252, 187, 21, 0.65);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.sol-card-link:hover {
  color: #1a1b28;
  border-color: var(--yellow);
}

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

.btn-secondary:hover {
  border-color: rgba(252, 187, 21, 0.55);
  box-shadow: var(--shadow-md);
}

.differentiator {
  background: #fff;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.diff-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.diff-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.diff-photo-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.diff-copy h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
  color: var(--blue);
  max-width: 20ch;
}

.diff-copy p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.diff-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.diff-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
}

.diff-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.testimonial-section {
  position: relative;
  background-color: #22233a;
  color: #fff;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imgs/idvisual/textura.webp") repeat center / 400px;
  background-attachment: fixed;
  opacity: 0.16;
  pointer-events: none;
}

.testimonial-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.testimonial-icon {
  width: 46px;
  margin-bottom: 0.8rem;
  filter: brightness(0) invert(1) opacity(0.55);
}

blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
  color: #e8eafb;
}

.testimonial-author {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #b0b3cc;
  font-weight: 600;
}

.testimonial-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testimonial-photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.contact-section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.contact-panel {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-info {
  padding: 1.6rem 1.4rem;
}

.contact-info h2 {
  margin-top: 0.7rem;
  color: var(--blue);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  max-width: 18ch;
}

.contact-info p {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 44ch;
}

.contact-rocket {
  width: 56px;
  margin-top: 1rem;
  opacity: 0.55;
}

.lead-form {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem 1.4rem 1.6rem;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.88rem;
  color: #3f4257;
}

.lead-form input {
  min-height: 48px;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.lead-form input::placeholder {
  color: #b5b7c8;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 46, 64, 0.1);
}

.lead-form textarea {
  min-height: 96px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.lead-form textarea::placeholder {
  color: #b5b7c8;
}

.lead-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 46, 64, 0.1);
}

.lead-form input.invalid,
.lead-form textarea.invalid {
  border-color: #d63e3e;
}

.btn-submit {
  margin-top: 0.5rem;
  width: 100%;
}

.form-feedback {
  min-height: 20px;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-feedback.error {
  color: #c93535;
}

.form-feedback.success {
  color: #1d8a3e;
}

.site-footer {
  background: linear-gradient(165deg, #1e1f30 0%, #2d2e40 60%, #3a3d57 100%);
  color: #fff;
  padding: 3rem 0 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

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

.footer-brand img {
  width: min(200px, 60vw);
  object-fit: contain;
}

.footer-brand p {
  margin: 0.8rem 0 0;
  max-width: 42ch;
  color: #c8cae0;
  font-size: 0.9rem;
}

.footer-socials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #eee;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.26s var(--ease), background 0.26s var(--ease),
    border-color 0.26s var(--ease);
}

.social-pill > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-pill:hover {
  transform: translateY(-2px);
  background: rgba(252, 187, 21, 0.12);
  border-color: rgba(252, 187, 21, 0.6);
}

.social-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--blue);
  flex-shrink: 0;
}

.social-circle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: #8a8daa;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #20ba55, #25d366);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.float-y {
  animation: floatY 5s ease-in-out infinite;
}

.float-x {
  animation: floatX 4.2s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatX {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(6px) rotate(4deg);
  }
}

@media (max-width: 767px) {
  .hero__headline {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .hero__reels {
    gap: 0.7rem;
  }

  .hero__strip {
    gap: 0.7rem;
  }

  .hero__strip img {
    width: 180px;
    height: 118px;
    border-radius: 10px;
  }
}

@media (min-width: 768px) {
  .nav-cta {
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
  }

  .hero__center {
    padding: 5rem 0 2.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .trust-item {
    flex-direction: column;
    gap: 0.15rem;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }

  .trust-item span {
    font-size: 0.78rem;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

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

  .testimonial-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    padding: 2.2rem 2rem;
  }

  .lead-form {
    padding: 2.2rem 2rem;
    border-left: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
  }

  .whatsapp-fab {
    right: 1.4rem;
    bottom: 1.4rem;
  }
}

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

  .hero__track {
    animation: none !important;
  }

  .hero__orb {
    animation: none !important;
  }

  .hero__strip img {
    opacity: 1 !important;
  }

  .cms-hero__drag-group,
  .cms-hero__cursor,
  .cms-hero__section,
  .cms-hero__ghost {
    animation: none !important;
  }

  .cms-hero__highlight-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .cms-modules__glow--a,
  .cms-modules__glow--b {
    animation: none !important;
  }

  .cms-module-card::before {
    animation: none !important;
  }

  .cms-module-card__icon {
    animation: none !important;
  }

  .cms-module-card__item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.page-cms {
  background: var(--bg);
}

.cms-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.cms-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.cms-topbar__brand img {
  width: clamp(130px, 36vw, 150px);
  height: auto;
}

.cms-topbar__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cms-topbar__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.cms-topbar__link:hover {
  color: var(--blue);
  background: rgba(45, 46, 64, 0.06);
}

.cms-topbar__cta {
  font-size: 0.72rem;
  padding: 0.5rem 0.85rem;
}

.cms-hero {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.cms-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(252, 187, 21, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(45, 46, 64, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #f6f6fa 0%, var(--bg) 100%);
  pointer-events: none;
}

.cms-hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.cms-hero__title {
  margin-top: 0.85rem;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--blue);
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.cms-hero__lead {
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
}

.cms-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cms-hero__price {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.cms-hero__price strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.cms-hero__price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.cms-hero__panel {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.25rem 1.5rem;
}

.cms-hero__browser {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(45, 46, 64, 0.1);
  box-shadow:
    0 20px 50px rgba(28, 29, 43, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: #eef0f6;
}

.cms-hero__browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #f8f9fc 0%, #eceef4 100%);
  border-bottom: 1px solid rgba(45, 46, 64, 0.08);
}

.cms-hero__chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c4c8d4;
  flex-shrink: 0;
}

.cms-hero__chrome-dot--amber {
  background: #fcbb15;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.cms-hero__chrome-dot--green {
  background: #6bcf7a;
}

.cms-hero__chrome-url {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(45, 46, 64, 0.08);
  border-radius: 6px;
  padding: 0.28rem 0.5rem;
  margin-left: 0.25rem;
}

.cms-hero__workspace {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 200px;
  background: linear-gradient(160deg, #f4f5fa 0%, #e8eaf2 100%);
}

.cms-hero__sidebar {
  padding: 0.65rem 0.5rem;
  border-right: 1px solid rgba(45, 46, 64, 0.08);
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cms-hero__sidebar-title {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.cms-hero__sidebar-pill {
  height: 8px;
  border-radius: 4px;
  background: rgba(45, 46, 64, 0.1);
}

.cms-hero__sidebar-pill--on {
  background: linear-gradient(90deg, rgba(252, 187, 21, 0.55), rgba(252, 187, 21, 0.2));
  box-shadow: 0 0 0 1px rgba(252, 187, 21, 0.35);
}

.cms-hero__canvas {
  position: relative;
  padding: 0.65rem 0.65rem 0.85rem;
  overflow: hidden;
}

.cms-hero__canvas-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 46, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 46, 64, 0.04) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
}

.cms-hero__ghost {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  top: 0.65rem;
  height: 118px;
  z-index: 0;
  border-radius: 12px;
  border: 2px dashed rgba(252, 187, 21, 0.45);
  background: rgba(252, 187, 21, 0.06);
  animation: cmsGhostPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cmsGhostPulse {
  0%,
  100% {
    opacity: 0.65;
    border-color: rgba(252, 187, 21, 0.35);
  }
  50% {
    opacity: 1;
    border-color: rgba(252, 187, 21, 0.55);
  }
}

.cms-hero__drag-scene {
  position: relative;
  z-index: 1;
  min-height: 132px;
  padding-top: 0.15rem;
}

.cms-hero__drag-group {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  right: 0.65rem;
  height: 118px;
  animation: cmsDragMove 4.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes cmsDragMove {
  0%,
  12% {
    transform: translate(0, 0);
  }
  22% {
    transform: translate(0, 2px) scale(0.998);
  }
  42% {
    transform: translate(14px, 26px) scale(1.01);
  }
  52% {
    transform: translate(14px, 26px) scale(1.01);
  }
  68% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(0, 0);
  }
}

.cms-hero__section {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
  border: 1px solid rgba(45, 46, 64, 0.12);
  box-shadow:
    0 14px 32px rgba(28, 29, 43, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  animation: cmsSectionLift 4.8s ease-in-out infinite;
}

@keyframes cmsSectionLift {
  0%,
  18% {
    box-shadow:
      0 14px 32px rgba(28, 29, 43, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }
  28%,
  58% {
    box-shadow:
      0 22px 48px rgba(28, 29, 43, 0.18),
      0 0 0 1px rgba(252, 187, 21, 0.25) inset,
      0 0 0 2px rgba(252, 187, 21, 0.15);
  }
  72%,
  100% {
    box-shadow:
      0 14px 32px rgba(28, 29, 43, 0.12),
      0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  }
}

.cms-hero__section-handle {
  display: flex;
  gap: 3px;
  padding: 0.35rem 0.5rem;
  background: linear-gradient(180deg, #f0f1f6 0%, #e4e6ee 100%);
  border-bottom: 1px solid rgba(45, 46, 64, 0.08);
}

.cms-hero__section-handle span {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: rgba(45, 46, 64, 0.22);
}

.cms-hero__section-body {
  padding: 0.5rem 0.55rem 0.55rem;
}

.cms-hero__section-line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(45, 46, 64, 0.12), rgba(45, 46, 64, 0.06));
  margin-bottom: 0.4rem;
}

.cms-hero__section-line--short {
  width: 58%;
}

.cms-hero__section-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.cms-hero__section-cols span {
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(252, 187, 21, 0.22) 0%, rgba(252, 187, 21, 0.06) 100%);
  border: 1px solid rgba(252, 187, 21, 0.2);
}

.cms-hero__cursor {
  position: absolute;
  right: -6px;
  top: 38px;
  z-index: 4;
  filter: drop-shadow(2px 6px 10px rgba(0, 0, 0, 0.22));
  animation: cmsCursorDrag 4.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cmsCursorDrag {
  0%,
  12% {
    transform: translate(18px, -28px);
  }
  22% {
    transform: translate(4px, -6px);
  }
  42% {
    transform: translate(10px, 12px);
  }
  52% {
    transform: translate(10px, 12px);
  }
  68% {
    transform: translate(18px, -28px);
  }
  100% {
    transform: translate(18px, -28px);
  }
}

.cms-hero__highlights {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cms-hero__highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(125deg, rgba(252, 187, 21, 0.14) 0%, rgba(45, 46, 64, 0.05) 55%, #fff 100%);
  border: 1px solid rgba(252, 187, 21, 0.35);
  border-left: 5px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(28, 29, 43, 0.07);
  animation: cmsHlEnter 0.65s var(--ease) backwards;
}

.cms-hero__highlight-item:nth-child(1) {
  animation-delay: 0.05s;
}

.cms-hero__highlight-item:nth-child(2) {
  animation-delay: 0.14s;
}

.cms-hero__highlight-item:nth-child(3) {
  animation-delay: 0.23s;
}

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

.cms-hero__hl-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 0.05rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #fcbb15 0%, #e5a800 100%);
  box-shadow: 0 4px 12px rgba(252, 187, 21, 0.45);
  position: relative;
}

.cms-hero__hl-check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--blue);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.cms-hero__hl-text {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.cms-trust {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.cms-trust__grid {
  display: grid;
  gap: 1rem;
}

.cms-trust__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.cms-trust__item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cms-trust__item span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.cms-modules--pro {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.cms-modules__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(252, 187, 21, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 80%, rgba(45, 46, 64, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #f3f4f9 0%, var(--bg) 38%, #f8f9fc 100%);
  pointer-events: none;
}

.cms-modules__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.cms-modules__glow--a {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(252, 187, 21, 0.22) 0%, transparent 68%);
  animation: cmsModGlowFloat 14s ease-in-out infinite;
}

.cms-modules__glow--b {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  bottom: -5%;
  left: -10%;
  background: radial-gradient(circle, rgba(88, 100, 180, 0.12) 0%, transparent 70%);
  animation: cmsModGlowFloat 18s ease-in-out infinite reverse;
}

@keyframes cmsModGlowFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.06);
  }
}

.cms-modules__inner {
  position: relative;
  z-index: 1;
}

.cms-modules__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cms-modules__title {
  margin-top: 0.75rem;
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cms-modules__intro {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.7;
}

.cms-module-grid {
  margin-top: 2.75rem;
  display: grid;
  gap: 1.35rem;
}

.cms-module-card {
  position: relative;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.35rem;
  background: linear-gradient(165deg, #fff 0%, #fafbfe 48%, #f4f5fa 100%);
  border: 1px solid rgba(45, 46, 64, 0.09);
  box-shadow:
    0 4px 24px rgba(28, 29, 43, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s var(--ease);
  overflow: hidden;
}

.cms-module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(252, 187, 21, 0.35) 55%, rgba(45, 46, 64, 0.15) 100%);
  background-size: 200% 100%;
  animation: cmsModTopShine 5s ease-in-out infinite;
}

@keyframes cmsModTopShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cms-module-card__shine {
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 48%,
    transparent 62%
  );
  transform: translateX(-30%) rotate(8deg);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.cms-module-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 187, 21, 0.45);
  box-shadow:
    0 20px 48px rgba(28, 29, 43, 0.12),
    0 0 0 1px rgba(252, 187, 21, 0.12) inset;
}

.cms-module-card:hover .cms-module-card__shine {
  opacity: 1;
  transform: translateX(10%) rotate(8deg);
}

.cms-module-card__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(45, 46, 64, 0.07);
}

.cms-module-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(145deg, rgba(45, 46, 64, 0.08) 0%, rgba(252, 187, 21, 0.12) 100%);
  border: 1px solid rgba(45, 46, 64, 0.08);
  box-shadow: 0 8px 20px rgba(28, 29, 43, 0.08);
  animation: cmsModIconFloat 5s ease-in-out infinite;
}

.cms-module-card[data-module="2"] .cms-module-card__icon {
  animation-delay: 0.6s;
}

.cms-module-card[data-module="3"] .cms-module-card__icon {
  animation-delay: 1.2s;
}

.cms-module-card__icon--content {
  background: linear-gradient(145deg, rgba(252, 187, 21, 0.18) 0%, rgba(45, 46, 64, 0.06) 100%);
}

.cms-module-card__icon--growth {
  background: linear-gradient(145deg, rgba(88, 100, 180, 0.12) 0%, rgba(252, 187, 21, 0.1) 100%);
}

@keyframes cmsModIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.cms-module-card__icon svg {
  width: 28px;
  height: 28px;
}

.cms-module-card__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.cms-module-card__title {
  margin: 0.25rem 0 0;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cms-module-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cms-module-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.cms-module-card__item:hover {
  background: #fff;
  border-color: rgba(252, 187, 21, 0.22);
  transform: translateX(4px);
}

.cms-module-card.reveal.visible .cms-module-card__item {
  animation: cmsModItemIn 0.55s var(--ease) forwards;
}

.cms-module-card.reveal.visible .cms-module-card__item:nth-child(1) {
  animation-delay: 0.04s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(2) {
  animation-delay: 0.09s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(3) {
  animation-delay: 0.14s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(4) {
  animation-delay: 0.19s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(5) {
  animation-delay: 0.24s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(6) {
  animation-delay: 0.29s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(7) {
  animation-delay: 0.34s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(8) {
  animation-delay: 0.39s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(9) {
  animation-delay: 0.44s;
}
.cms-module-card.reveal.visible .cms-module-card__item:nth-child(10) {
  animation-delay: 0.49s;
}

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

.cms-module-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(252, 187, 21, 0.35) 0%, rgba(252, 187, 21, 0.12) 100%);
  border: 1px solid rgba(252, 187, 21, 0.45);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cms-module-card__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0.85;
}

.cms-module-card__item:hover .cms-module-card__check {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(252, 187, 21, 0.35);
}

.cms-pricing-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.cms-pricing-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2d2e40 0%, #1e1f2e 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cms-pricing-card__copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.cms-pricing-card__copy p {
  margin: 0.75rem 0 0;
  color: rgba(232, 234, 251, 0.88);
  font-size: 0.95rem;
  max-width: 48ch;
}

.cms-pricing-card__price {
  text-align: left;
}

.cms-pricing-card__from {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.cms-pricing-card__value {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.cms-pricing-card__value span {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.cms-pricing-card__fine {
  margin: 0.6rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28ch;
}

.cms-demo-section {
  padding-bottom: 4.5rem;
}

.cms-demo-panel {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cms-demo-panel__info {
  padding: 1.6rem 1.4rem 1.2rem;
}

.cms-demo-panel__info h2 {
  margin-top: 0.65rem;
  color: var(--blue);
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  max-width: 22ch;
  line-height: 1.15;
}

.cms-demo-panel__info p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 48ch;
  font-size: 0.95rem;
}

.cms-demo-panel__note {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: var(--ink);
  font-weight: 500;
}

.cms-demo-form {
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .cms-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
    padding-top: 0.5rem;
  }

  .cms-trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cms-module-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1.5rem;
  }

  .cms-module-card {
    padding: 1.65rem 1.5rem 1.45rem;
  }

  .cms-pricing-card {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.25rem 2.5rem;
  }

  .cms-pricing-card__price {
    text-align: right;
    justify-self: end;
  }

  .cms-demo-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cms-demo-form {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .cms-demo-panel__info {
    padding: 2.2rem 2rem;
  }

  .cms-demo-form.lead-form {
    padding: 2.2rem 2rem 2rem;
  }
}
