:root {
  --accent: #ff1007;
  --accent-dark: #e20a04;
  --heading: #18212b;
  --body: #21222a;
  --muted: #686a73;
  --light: #f7f7fd;
  --border: #e9e9f2;
  --shadow: 0 16px 34px rgba(28, 31, 40, 0.08);
  --soft-shadow: 0 10px 28px rgba(20, 24, 36, 0.06);
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --container-max: 1160px;
  --section-space: 64px;
  --card-radius: 16px;
  --panel-radius: 18px;
  --text-base: 16px;
  --text-md: 16px;
  --text-lg: 17px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background:
    radial-gradient(140px 80px at 12% 0%, rgba(255, 144, 144, 0.2), transparent 70%),
    radial-gradient(160px 100px at 56% 0%, rgba(255, 233, 169, 0.22), transparent 70%),
    radial-gradient(180px 110px at 74% 3%, rgba(181, 214, 255, 0.23), transparent 72%),
    #ffffff;
  font-family: var(--serif);
  font-size: var(--text-base);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.container {
  width: min(var(--container-max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(17, 23, 35, 0.03);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-header {
  width: 142px;
}

.brand-logo-footer {
  width: 156px;
}

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

.main-nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #262b32;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--accent);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.top-buy,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.top-buy {
  min-width: 114px;
  height: 42px;
  margin-left: 20px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 16, 7, 0.18);
}

.top-buy:hover,
.top-buy:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff241d;
}

.top-buy:active,
.btn:active {
  transform: translateY(1px);
}

.btn {
  min-width: 176px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sans);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 16, 7, 0.18);
}

.btn-secondary {
  border: 1px solid #d7dbe8;
  background: #fff;
  color: var(--heading);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #c8cede;
  background: #f7f8fd;
}

.btn-outline {
  min-width: 220px;
  height: 44px;
  padding: 0 24px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

section,
footer {
  scroll-margin-top: 88px;
}

.section-title {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
  text-align: center;
}

.section-subtitle {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 17px;
  color: #71737b;
  text-align: center;
}

.hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(340px 220px at 35% 76%, rgba(165, 231, 255, 0.34), transparent 60%),
    radial-gradient(280px 200px at 58% 48%, rgba(171, 195, 255, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f7f9ff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  align-items: center;
  gap: 28px;
}

.hero-copy h1 {
  margin: 0 0 22px;
  max-width: 610px;
  font-family: var(--sans);
  font-size: clamp(36px, 4.6vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.hero-copy p,
.copy-block p,
.step-copy p,
.provider-card p,
.value-card p,
.faq-panel p,
.footer-brand p {
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.65;
  color: #2b2d32;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 30px;
}

.hero-note {
  margin-top: 14px;
  font-size: 15px;
  color: #202229;
}

.hero-art {
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 12% 6% 6%;
  background: radial-gradient(circle, rgba(161, 196, 255, 0.34), transparent 62%);
  filter: blur(28px);
  z-index: 0;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(20, 23, 36, 0.08));
}

.pricing,
.features,
.how-to,
.providers,
.testimonials {
  padding: var(--section-space) 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.pricing .section-title {
  margin-bottom: 48px;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 22px 24px;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--soft-shadow);
}

.plan-title,
.step-copy h3,
.provider-card h3,
.value-card h3,
.copy-block h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
}

.plan-title {
  font-size: 24px;
}

.plan-price {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.plan-price span {
  position: relative;
  top: -6px;
  margin-right: 4px;
  font-size: 20px;
}

.plan-note {
  margin: 20px 0 24px;
  min-height: 22px;
  font-size: 15px;
  color: #666971;
}

.plan-button {
  width: 100%;
}

.plan-features {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.plan-features li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: #111821;
}

.features .section-title,
.how-to .section-title,
.providers .section-title,
.testimonials .section-title,
.faq .section-title {
  margin-bottom: 44px;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

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

.feature-list li {
  position: relative;
  padding-left: 38px;
  font-size: 17px;
  line-height: 1.45;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
}

.feature-visual img {
  width: min(388px, 30vw);
  filter: drop-shadow(0 16px 24px rgba(21, 24, 35, 0.08));
}

.about,
.devices,
.faq,
.site-footer {
  background: #fff;
}

.about,
.trial,
.devices {
  padding: var(--section-space) 0;
}

.trial {
  background: var(--light);
  border-top: 1px solid var(--border);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  align-items: center;
  gap: 40px;
}

.copy-block h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.1;
}

.copy-block p + p {
  margin-top: 20px;
}

.copy-block .btn {
  margin-top: 24px;
}

.accent-word {
  color: #d51912;
}

.image-block img {
  width: 100%;
  object-fit: contain;
}

.image-block-about img {
  max-width: 596px;
  margin-left: auto;
}

.image-block-trial img {
  max-width: 612px;
}

.copy-block-trial h2 {
  max-width: 630px;
}

.copy-block-trial p {
  max-width: 650px;
}

.offer {
  padding: 40px 0 var(--section-space);
  background: #fff;
}

.offer-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 34px 24px;
  text-align: center;
  color: #fff;
  border-radius: var(--panel-radius);
  background: linear-gradient(180deg, #4b2829 0%, #121112 100%);
}

.offer-panel h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.offer-panel p {
  max-width: 830px;
  margin: 24px auto 16px;
  font-size: 17px;
  line-height: 1.6;
}

.offer-note {
  margin-bottom: 32px;
  font-size: 16px;
  font-style: italic;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.steps-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 8px 32px;
}

.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  align-items: flex-start;
}

.step-item + .step-item {
  margin-top: 34px;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 22px;
  width: 2px;
  height: 58px;
  background: #ddddE7;
}

.step-marker {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
}

.step-copy h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.steps-visual {
  overflow: hidden;
}

.steps-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.split-layout-devices {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.1fr);
  gap: 42px;
}

.image-block-devices img {
  max-width: 560px;
}

.copy-block-devices h2 {
  max-width: 620px;
}

.stats-bar {
  margin-top: 10px;
  margin-bottom: 44px;
  padding: 38px 0 42px;
  color: #fff;
  background: linear-gradient(180deg, #1a1b1e 0%, #70201a 100%);
}

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

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
}

.why-choose {
  padding-bottom: 68px;
}

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

.value-card h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.providers .section-title {
  margin-bottom: 58px;
}

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

.provider-card {
  min-height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid #dbdde9;
  border-radius: 16px;
}

.provider-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.testimonial-slider {
  margin-top: 30px;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 6px 0 10px;
}

.testimonial-grid {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.8s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 34px 22px 24px;
  text-align: left;
  color: #fff;
  background: #ff150f;
  border-radius: var(--panel-radius);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 10px;
  right: 10px;
  height: 62px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: skewY(-5deg);
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 4px;
  color: #ffdd58;
}

.testimonial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card h3 {
  margin: auto 0 4px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
}

.testimonial-card span {
  font-size: 15px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #d4d5dd;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot:hover,
.dot:focus-visible {
  transform: scale(1.15);
}

.dot.is-active {
  background: #26262d;
}

.faq {
  padding: var(--section-space) 0 72px;
  border-top: 1px solid var(--border);
}

.faq-inner {
  width: min(964px, calc(100% - 34px));
}

.faq-list {
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid #dfe0e8;
}

.faq-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--heading);
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-panel p {
  padding: 8px 0 28px;
  max-width: 840px;
}

.site-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 230px;
  height: 42px;
  margin: 12px auto 46px;
  border-radius: 999px;
  background: #f7f4fd;
  font-size: 15px;
}

.footer-pill a {
  color: #d51912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.68fr 0.68fr 1fr;
  gap: 28px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-icon {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 17px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding: 18px 0 12px;
  border-top: 1px solid var(--border);
}

.footer-bottom p,
.footer-nav a {
  margin: 0;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-widgets {
  pointer-events: none;
}

.chat-pill {
  position: fixed;
  left: 20px;
  bottom: 92px;
  z-index: 60;
  pointer-events: auto;
  height: 31px;
  padding: 0 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--soft-shadow);
  font-family: var(--sans);
  font-size: 12px;
  color: #2b2d34;
}

.whatsapp-button,
.scroll-top {
  position: fixed;
  bottom: 16px;
  z-index: 60;
  pointer-events: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.whatsapp-button {
  left: 20px;
  width: 64px;
  height: 64px;
  background: #22c55e;
  box-shadow: 0 16px 28px rgba(34, 197, 94, 0.28);
  border: 4px solid #effff3;
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
}

.scroll-top {
  right: 20px;
  width: 58px;
  height: 58px;
  background: #1f2530;
  border: 3px solid var(--accent);
  box-shadow: 0 16px 26px rgba(15, 20, 29, 0.22);
  color: #fff;
  font-family: var(--sans);
  font-size: 27px;
  line-height: 1;
}

.page-hero {
  padding: 56px 0 var(--section-space);
  background:
    radial-gradient(360px 220px at 22% 16%, rgba(255, 157, 157, 0.14), transparent 70%),
    radial-gradient(320px 220px at 72% 10%, rgba(166, 214, 255, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8f9ff 100%);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  align-items: center;
  gap: 28px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero h1 {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: clamp(34px, 4.2vw, 46px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.page-intro {
  margin: 0;
  max-width: 680px;
  font-size: var(--text-lg);
  line-height: 1.65;
  color: #2f323a;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 720px;
}

.page-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 16, 7, 0.14);
  border-radius: 999px;
  background: rgba(255, 16, 7, 0.05);
  color: #b2140e;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.page-art-frame {
  padding: 18px;
  border: 1px solid #eceef5;
  border-radius: var(--panel-radius);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
  box-shadow: var(--soft-shadow);
}

.page-art-frame img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  margin: 0 auto;
}

.content-section {
  padding: var(--section-space) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.content-section.soft {
  background: var(--light);
}

.content-section.compact {
  padding: 56px 0;
}

.content-section .section-title {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.8vw, 42px);
}

.page-lead {
  max-width: 860px;
  margin: 0 auto 32px;
  font-size: var(--text-md);
  line-height: 1.65;
  color: #666b74;
  text-align: center;
}

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

.info-card,
.legal-card {
  padding: 22px 20px;
  border: 1px solid #dde0ea;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.info-card h3,
.article-card h3,
.legal-card h3 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.info-card p,
.article-card p,
.legal-card p,
.legal-card li {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #333640;
}

.info-card p + p,
.legal-card p + p {
  margin-top: 14px;
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e2e5ef;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

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

.article-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
}

.article-card .simple-list {
  margin: 16px 0 18px;
}

.article-card .btn {
  width: 100%;
  margin-top: auto;
}

.article-meta {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.text-link {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
}

.inline-note {
  margin: 12px 0 0;
  font-size: 15px;
  color: #7a7e88;
}

.simple-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
}

.simple-list li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--accent);
}

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

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.banner-card {
  padding: 24px;
  border-radius: var(--panel-radius);
  background: linear-gradient(135deg, #23191a 0%, #6f1f18 100%);
  color: #fff;
}

.banner-card h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.banner-card p {
  margin: 0;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.6;
}

.banner-card .page-actions {
  margin-top: 22px;
}

.reading-shell {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
}

.reading-card {
  padding: 26px 24px;
  border: 1px solid #e3e6f0;
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.reading-copy h2,
.reading-copy h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.reading-copy h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.12;
}

.reading-copy h3 {
  font-size: 24px;
  line-height: 1.2;
}

.reading-copy p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.75;
  color: #30333b;
}

.reading-copy .simple-list {
  margin: 18px 0 24px;
}

.reading-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: #fff5f4;
  font-size: 15px;
  line-height: 1.65;
  color: #6a3734;
}

.reading-divider {
  height: 1px;
  margin: 26px 0;
  background: #e8eaf2;
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 22px;
    margin-left: 0;
  }

  .top-buy {
    margin-left: 0;
  }

  .hero-inner,
  .page-hero-inner,
  .split-layout,
  .split-layout-devices,
  .how-layout {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .image-block,
  .steps-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .pricing-grid,
  .info-grid,
  .article-grid,
  .provider-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    display: flex;
    justify-content: center;
  }

  .steps-list {
    padding-left: 0;
  }

  .value-grid,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .container,
  .faq-inner {
    width: min(100%, calc(100% - 24px));
  }

  .site-header {
    position: static;
  }

  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .pricing-grid,
  .stats-grid,
  .info-grid,
  .article-grid,
  .provider-grid,
  .value-grid,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .plan-card {
    min-height: auto;
  }

  .stats-bar {
    padding: 34px 0 36px;
  }

  .stats-grid {
    gap: 28px;
  }

  .steps-visual img {
    min-height: 480px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1,
  .page-hero h1,
  .copy-block h2,
  .offer-panel h2,
  .section-title {
    font-size: clamp(30px, 6vw, 38px);
  }

  .plan-card,
  .provider-card,
  .info-card,
  .legal-card,
  .article-card-body,
  .banner-card,
  .reading-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .pricing,
  .features,
  .about,
  .trial,
  .offer,
  .how-to,
  .devices,
  .providers,
  .testimonials,
  .faq {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .hero-copy p,
  .copy-block p,
  .step-copy p,
  .provider-card p,
  .value-card p,
  .faq-panel p,
  .footer-brand p {
    font-size: 16px;
  }

  .feature-list li {
    font-size: 16px;
  }

  .plan-price {
    font-size: 42px;
  }

  .section-title,
  .hero-copy h1,
  .page-hero h1,
  .copy-block h2,
  .offer-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .faq-trigger {
    font-size: 19px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    min-width: 0;
  }

  .floating-widgets {
    pointer-events: none;
  }

  .chat-pill {
    left: 12px;
    bottom: 88px;
    max-width: calc(100vw - 24px);
  }

  .whatsapp-button {
    left: 12px;
    bottom: 12px;
  }

  .scroll-top {
    right: 12px;
    bottom: 12px;
  }
}
