:root {
  --bg: #060a1f;
  --bg-soft: #0d1333;
  --card: #111a44;
  --text: #ffffff;
  --muted: #c5cce8;
  --brand: #f70a0a;
  --brand-dark: #c20707;
  --success: #d7defb;
  --border: #2a366f;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 18px 38px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Catamaran", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #05081a 0%, #090f33 45%, #05081a 100%);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

a {
  color: var(--brand);
  text-decoration: none;
}

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  z-index: 100;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(7, 10, 35, 0.9);
  border-bottom: 1px solid #1f2250;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-weight: 700;
}

.logo img {
  width: 140px;
  height: auto;
  border-radius: 24px;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.06rem;
  position: relative;
}

.main-nav a:hover {
  color: var(--brand);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-contact {
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.header-contact a {
  display: inline-block;
  background: #25d366;
  color: #072314;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #1db954;
  line-height: 1.1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-contact a:hover {
  background: #1fbe5d;
  color: #04180d;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(37, 211, 102, 0.32);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
}

.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(40, 49, 80, 0.5);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(247, 10, 10, 0.25), transparent 42%),
    radial-gradient(circle at 95% 30%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-tags {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-weight: 800;
  text-transform: lowercase;
  font-size: 1.1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--success);
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.005em;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2.15rem);
}

.hero-card,
.card,
.pricing-card,
.mini-card {
  background: linear-gradient(180deg, #131c47, #0f163a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.section-title-center {
  text-align: center;
  color: #bb1e2c;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.section-subtitle-center {
  text-align: center;
  color: #1d223f;
  margin: 0 auto 2.3rem;
}

.section-included {
  background: #f8f8fb;
  color: #10142d;
}

.section-included .container {
  max-width: 1280px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: center;
}

.included-item {
  display: flex;
  justify-content: center;
}

.included-diamond {
  width: 280px;
  height: 280px;
  transform: rotate(45deg);
  border: 1.6px solid #be5168;
  border-radius: 22px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  box-shadow: none;
}

.included-diamond > * {
  transform: rotate(-45deg);
}

.included-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #f8e8ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.included-icon-wrap .feature-icon {
  width: 34px;
  height: 34px;
  margin: 0;
}

.included-diamond h3,
.included-diamond p {
  text-align: center;
  margin: 0;
  width: 100%;
}

.included-diamond h3 {
  color: #11162f;
  font-size: 2rem;
  font-size: clamp(1.5rem, 1.18vw, 1.95rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.included-diamond p {
  color: #4b4f5e;
  font-size: 1.06rem;
  line-height: 1.43;
  font-weight: 500;
}

.included-diamond::before {
  content: "";
  width: 100%;
  display: block;
}

.included-diamond {
  flex-direction: column;
}

.section-included .included-diamond p {
  color: #4b4f5e !important;
}

.section-included .section-subtitle-center {
  color: #8f93a5;
  font-size: 1rem;
}

.section-included .included-diamond h3 {
  color: #141a33 !important;
}

.section-included .included-icon-wrap {
  border: 1px solid #f1d3db;
}

.plan-media {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  border: 1px solid var(--border);
}

.hero-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.78rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease, filter 0.26s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 28px rgba(247, 10, 10, 0.4);
  filter: saturate(1.08);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: #ffffff4d;
  color: #fff;
}

.btn-block {
  display: block;
  text-align: center;
}

.btn-whatsapp {
  margin-top: 0.5rem;
  background: #25d366;
  color: #072314;
}

.section {
  padding: 4rem 0;
}

/* Reduce initial render work for below-the-fold sections */
@supports (content-visibility: auto) {
  main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 780px;
  }

  .grid-3 > *,
  .grid-4 > *,
  .sports-grid img,
  .review-shots img,
  .blog-teaser-card,
  .policy-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 320px;
  }
}

.section-alt {
  background: rgba(12, 16, 56, 0.45);
  border-block: 1px solid var(--border);
}

.section h2 {
  margin-bottom: 1.2rem;
}

.devices-image {
  width: min(800px, 100%);
  display: block;
  margin: 0.5rem auto 1rem;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1.15rem;
}

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

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

.pricing-card .plan-note {
  color: var(--success);
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
}

.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-card ul,
.device-list {
  padding-left: 1rem;
}

.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(247, 10, 10, 0.45), 0 16px 34px rgba(247, 10, 10, 0.2);
}

.cta-banner {
  margin-top: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

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

.mini-cards p,
.card p {
  color: var(--muted);
}

.hero p,
.section-alt p,
.section-cta p {
  color: var(--muted);
}

.reviewer {
  font-weight: 600;
  color: var(--text);
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  background: #0f152b;
  margin-bottom: 0.6rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.section-cta {
  text-align: center;
}

.legal-hero {
  background: linear-gradient(180deg, rgba(17, 23, 43, 0.9), rgba(9, 12, 26, 0.9)),
    url("../images/hero-new.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

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

.sports-grid img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #0a0f20;
}

/* Page-specific hero treatments for stronger differentiation */
.page-about .hero,
.page-reseller .hero,
.page-guide .hero,
.page-blog .hero,
.page-faq .hero,
.page-testimonial .hero,
.page-contact .hero,
.page-pricing .hero {
  background: linear-gradient(180deg, rgba(9, 13, 28, 0.88), rgba(6, 9, 19, 0.95)),
    url("../images/hero-new.jpg") center/cover no-repeat;
}

.page-blog .hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.93)),
    url("../images/hero-new.jpg") center/cover no-repeat;
}

.page-blog .hero h1 {
  color: #000000;
}

.page-blog .hero p {
  color: #1f2937;
}

.page-blog .hero .eyebrow {
  color: #475569;
}

.page-pricing .pricing-card {
  background: linear-gradient(180deg, rgba(19, 27, 51, 0.9), rgba(15, 21, 43, 0.95));
}

.section-pricing-steps {
  background: #fff;
}

.pricing-steps__title {
  text-align: center;
  color: #b91c1c;
  margin-bottom: 0.35rem;
}

.pricing-steps__subtitle {
  margin: 0 0 1.3rem;
  text-align: center;
  color: #7ec0d4;
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.pricing-steps__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid #d8a4ad;
}

.pricing-steps__item {
  grid-column: span 2;
  text-align: center;
  padding: 1.05rem 1rem 0.9rem;
  border-right: 1px solid #d8a4ad;
  border-top: 1px solid #d8a4ad;
}

.pricing-steps__item:nth-child(-n + 3) {
  border-top: none;
}

.pricing-steps__item:nth-child(3),
.pricing-steps__item:last-child {
  border-right: none;
}

.pricing-steps__item--wide {
  grid-column: span 3;
}

.pricing-steps__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 0.7rem;
  background: #e50914;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-steps__item h3 {
  margin: 0 0 0.2rem;
  color: #111111;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.1;
}

.pricing-steps__item p {
  margin: 0;
  color: #111111;
  font-size: 1.08rem;
  line-height: 1.45;
}

.section-devices-pricing {
  background: #ffffff;
}

.section-why-4k {
  background: #ffffff;
  padding-top: 2.1rem;
}

.why-4k-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.why-4k-card {
  border: 1px solid #9f1d1d;
  background: #fff;
  text-align: center;
  padding: 1.2rem 1rem;
}

.why-4k-check {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  line-height: 1;
  color: #111827;
  font-weight: 800;
}

.why-4k-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
}

.why-4k-note {
  text-align: center;
  margin: 0.9rem 0 0;
  color: #6b7280;
}

.section-pricing-faq {
  background: #fff;
}

.section-pricing-faq .faq-boxes {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-pricing-faq .faq-item {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0;
  margin: 0;
}

.section-pricing-faq .faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #111827;
  font-weight: 700;
  padding: 1rem 2.5rem 1rem 1rem;
  position: relative;
}

.section-pricing-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.section-pricing-faq .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #dc2626;
  font-size: 1.2rem;
  font-weight: 800;
}

.section-pricing-faq .faq-item[open] summary::after {
  content: "\2212";
}

.section-pricing-faq .faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #4b5563;
  border-top: 1px solid #eceff3;
  padding-top: 0.75rem;
}

.page-blog .card,
.page-testimonial .card {
  min-height: 180px;
}

.page-contact .card h2,
.page-policy .card h2 {
  margin-bottom: 0.45rem;
}

/* FAQ page — light background & readable accordions */
.page-faq main {
  background: #f8fafc;
}

.page-faq .section-faq-list {
  background: #ffffff;
}

.page-faq .section.section-alt {
  background: #f1f5f9;
}

.page-faq details {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1f2937;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.page-faq summary {
  color: #0f172a;
  font-weight: 700;
}

.page-faq details p {
  color: #4b5563;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.page-faq .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.page-faq .card h3 {
  color: #0f172a;
}

.page-faq .card p {
  color: #4b5563;
}

.page-faq .section-alt h2 {
  color: #000000;
}

/* Testimonials page — light layout */
.page-testimonial main {
  background: #f8fafc;
}

.page-testimonial .hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.93)),
    url("../images/hero-new.jpg") center/cover no-repeat;
}

.page-testimonial .hero h1,
.page-testimonial .hero p {
  color: #0f172a;
}

.page-testimonial .hero .eyebrow {
  color: #475569;
}

.page-testimonial .section {
  background: #ffffff;
}

.page-testimonial .section.section-alt {
  background: #f1f5f9;
}

.page-testimonial .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.page-testimonial .card p {
  color: #4b5563;
}

.page-testimonial .reviewer {
  color: #0f172a;
}

.page-testimonial .section-alt h2 {
  color: #0f172a;
  text-align: center;
  margin-bottom: 1.25rem;
}

.page-testimonial .sports-grid img {
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  background: #fff;
}

/* Policy pages (Disclaimer, DMCA, Refund, Privacy) — live-aligned content */
.page-policy main {
  background: #f8fafc;
}

.page-policy .policy-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(241, 245, 249, 0.96)),
    url("../images/hero-new.jpg") center/cover no-repeat;
  border-bottom: 1px solid #e2e8f0;
}

.page-policy .policy-hero h1 {
  color: #0f172a;
}

.page-policy .policy-hero .eyebrow {
  color: #64748b;
}

.page-policy .policy-hero__meta,
.page-policy .policy-hero__lead {
  color: #475569;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.page-policy .policy-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-policy .policy-hero a {
  color: #dc2626;
  font-weight: 600;
}

.section-policy-body {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.policy-document {
  max-width: 820px;
}

.policy-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem 1.55rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.policy-section--lead {
  border-left: 4px solid #b91c1c;
}

.policy-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: #b91c1c;
  letter-spacing: 0.01em;
}

.policy-subhead {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.policy-section p {
  margin: 0 0 0.85rem;
  color: #4b5563;
  line-height: 1.75;
  font-size: 1.02rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: #4b5563;
  line-height: 1.65;
}

.policy-section li {
  margin-bottom: 0.35rem;
}

.policy-section a {
  color: #dc2626;
  font-weight: 600;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-section--contact {
  background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
  border-color: #fde68a;
}

.policy-section--contact h2 {
  color: #92400e;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.policy-table th,
.policy-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}

.policy-table thead th {
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-table tbody tr:last-child td {
  border-bottom: none;
}

.policy-table tbody tr:hover td {
  background: #fafafa;
}

/* Contact page — light band, form, Norway map */
.page-contact main {
  background: #f8fafc;
}

.page-contact .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.page-contact .card h2 {
  color: #0f172a;
}

.page-contact .card p {
  color: #4b5563;
}

.page-contact .card a {
  color: #dc2626;
  font-weight: 600;
}

.section-contact-split {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.contact-split__heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #0f172a;
}

.contact-split__intro {
  margin: 0 0 1.25rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1rem;
}

.contact-form__row {
  margin-bottom: 1rem;
}

.contact-form__label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.35rem;
}

.contact-form__optional {
  font-weight: 500;
  color: #9ca3af;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  margin-top: 0.25rem;
}

.contact-form-message {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-form-message--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.contact-form-message--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-map-embed {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
  background: #e5e7eb;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: min(380px, 48vh);
  border: 0;
  pointer-events: none;
}

@media (max-width: 960px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form__input:focus,
  .contact-form__textarea:focus {
    box-shadow: none;
  }
}

.page-about .section,
.page-pricing .section,
.page-reseller .section,
.page-guide .section,
.page-faq .section,
.page-testimonial .section,
.page-contact .section,
.page-blog .section,
.page-policy .section {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.page-reseller .section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-about .hero .container {
  max-width: 980px;
}

.page-about .hero h1,
.page-about .hero p,
.page-about .hero .checklist li {
  color: #ffffff;
  font-weight: 700;
}

.page-about .hero h1 {
  font-weight: 900;
}

.checklist--about {
  max-width: 520px;
  margin-top: 1rem;
}

.section-about-services {
  background: #fff;
  padding-top: 2.6rem;
  padding-bottom: 3rem;
}

.about-services__eyebrow {
  display: table;
  margin: 0 auto 0.7rem;
  background: #fceff2;
  color: #374151;
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-services__title {
  text-align: center;
  color: #060f3c;
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.85rem;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.about-service-card {
  text-align: center;
}

.about-service-card > img {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #e50914;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px auto 0.8rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(229, 9, 20, 0.35);
}

.about-service-card__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.about-service-card h3 {
  color: #0a0f39;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
}

.hero.hero-reseller {
  background: linear-gradient(180deg, rgba(29, 9, 56, 0.76), rgba(17, 8, 36, 0.88)),
    url("../images/reseller-hero-bg.png") center/cover no-repeat;
}

.hero-reseller h1,
.hero-reseller p,
.hero-reseller .eyebrow {
  color: #fff !important;
}

.hero-reseller .container {
  max-width: 980px;
  text-align: center;
}

.reseller-hero__note {
  font-weight: 700;
}

.section-reseller-logos {
  background: #fff;
  padding-top: 1.3rem;
}

.reseller-logo-slider {
  overflow: hidden;
}

.reseller-logo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: resellerLogos 28s linear infinite;
}

.reseller-logo-track img {
  width: 150px;
  height: 95px;
  object-fit: cover;
  border: 1px solid #ddd;
  background: #fff;
}

@keyframes resellerLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-reseller-about {
  background: #fff;
}

.section-reseller-about .container {
  max-width: 940px;
}

.reseller-about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2.25rem;
  align-items: start;
  margin-top: 0.35rem;
}

.reseller-about-col > p:first-child {
  margin-top: 0;
}

@media (max-width: 720px) {
  .reseller-about-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.reseller-focus {
  font-weight: 800;
  color: #b91c1c;
}

.section-reseller-why {
  background: #fff;
}

.reseller-why__title {
  text-align: center;
  color: #7ec0d4;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1.6rem;
}

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

.reseller-why-card {
  border-radius: 34px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #fff;
}

.reseller-why-card h3 {
  margin: 0;
  background: #e50914;
  color: #fff;
  text-align: center;
  padding: 0.85rem 1rem;
  text-transform: uppercase;
  font-size: 1.12rem;
}

.reseller-why-card .checklist {
  padding: 1rem 1.1rem 0.2rem;
}

.reseller-why-card .btn {
  border-radius: 0;
  padding: 0.9rem 1rem;
}

.reseller-why__note {
  text-align: center;
  margin: 1rem 0 0;
  color: #111827;
  font-weight: 600;
}

.reseller-why__note a {
  color: #e50914;
  font-weight: 700;
}

.section-reseller-features,
.section-reseller-better,
.section-reseller-who,
.section-reseller-cta,
.section-reseller-steps {
  background: #fff;
}

.reseller-feature-list,
.reseller-better-list,
.reseller-who-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
}

.reseller-feature-list li,
.reseller-better-list li,
.reseller-who-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #1f2937;
}

.reseller-feature-list li::before,
.reseller-better-list li::before,
.reseller-who-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #dc2626;
  font-weight: 800;
}

.reseller-better-note {
  text-align: center;
  margin-top: 1rem;
  font-weight: 700;
}

.section-reseller-cta .container > p {
  text-align: center;
  margin: 0.2rem 0;
  color: #6b7280;
}

.reseller-cta-box {
  margin-top: 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.92), rgba(127, 29, 29, 0.96)),
    url("../images/reseller-cta-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 2rem 1rem;
}

.reseller-cta-box h3 {
  margin: 0 0 0.4rem;
  color: #fff;
}

.reseller-cta-box p {
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 700;
}

.section-reseller-steps .container {
  max-width: 980px;
}

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

.reseller-step {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem 1rem 1.15rem;
  background: #fff;
}

.reseller-step h3 {
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.reseller-step p {
  margin: 0;
  color: #4b5563;
}

@keyframes resellerFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-reseller .hero {
  padding-top: 4rem;
  padding-bottom: 3.25rem;
}

.page-reseller .section-heading-red {
  font-size: clamp(1.62rem, 3vw, 2.15rem);
  margin-bottom: 1.35rem;
}

.page-reseller .section p,
.page-reseller .section li,
.page-reseller .reseller-why-card .checklist li {
  font-size: 1.06rem;
  line-height: 1.55;
}

.page-reseller .hero h1 {
  font-size: clamp(1.95rem, 4.2vw, 2.65rem);
}

.page-reseller .hero p {
  font-size: 1.08rem;
  line-height: 1.58;
}

.page-reseller .reseller-why__title {
  font-size: clamp(1.72rem, 3.2vw, 2.35rem);
}

.page-reseller .reseller-why-card h3 {
  font-size: 1.15rem;
}

.page-reseller main > section:nth-of-type(n + 2) {
  animation: resellerFadeUp 0.68s ease backwards;
}

.page-reseller main > section:nth-of-type(2) {
  animation-delay: 0.03s;
}

.page-reseller main > section:nth-of-type(3) {
  animation-delay: 0.07s;
}

.page-reseller main > section:nth-of-type(4) {
  animation-delay: 0.11s;
}

.page-reseller main > section:nth-of-type(5) {
  animation-delay: 0.15s;
}

.page-reseller main > section:nth-of-type(6) {
  animation-delay: 0.19s;
}

.page-reseller main > section:nth-of-type(7) {
  animation-delay: 0.23s;
}

.page-reseller main > section:nth-of-type(8) {
  animation-delay: 0.27s;
}

.page-reseller main > section:nth-of-type(9) {
  animation-delay: 0.31s;
}

.page-reseller main > section:nth-of-type(10) {
  animation-delay: 0.35s;
}

.page-reseller main > section:nth-of-type(11) {
  animation-delay: 0.39s;
}

.page-reseller main > section:nth-of-type(12) {
  animation-delay: 0.43s;
}

.page-reseller main > section:nth-of-type(13) {
  animation-delay: 0.47s;
}

.page-reseller main > section:nth-of-type(14) {
  animation-delay: 0.51s;
}

.page-reseller .reseller-why-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.page-reseller .reseller-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.page-reseller .reseller-step {
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.page-reseller .reseller-step:hover {
  border-color: rgba(220, 38, 38, 0.38);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
  transform: translateY(-3px);
}

.page-reseller .section-pricing-faq .faq-item {
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.page-reseller .section-pricing-faq .faq-item:hover {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.page-reseller .section-pricing-faq .faq-item summary {
  font-size: 1.05rem;
}

.page-reseller .section-pricing-faq .faq-item p {
  font-size: 1.04rem;
}

.page-reseller .reseller-cta-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reseller .reseller-cta-box:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .page-reseller main > section:nth-of-type(n + 2) {
    animation: none;
  }

  .page-reseller .reseller-why-card,
  .page-reseller .reseller-step,
  .page-reseller .section-pricing-faq .faq-item,
  .page-reseller .reseller-cta-box {
    transition: none;
  }

  .page-reseller .reseller-why-card:hover,
  .page-reseller .reseller-step:hover {
    transform: none;
  }

  .page-reseller .reseller-cta-box:hover {
    transform: none;
  }
}

.section-stats-pill--about {
  padding-top: 0.3rem;
  padding-bottom: 2.4rem;
}

.page-reseller .section-stats-pill--about {
  padding-bottom: 1.2rem;
}

.section-about-slider {
  background: #ffffff;
  padding-top: 1.2rem;
}

.about-slider {
  max-width: 1020px;
  margin: 0 auto;
}

.about-slide {
  display: none;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.about-slide.is-active {
  display: grid;
}

.about-slide__avatar {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 28px;
}

.about-slide__content {
  border-left: 2px solid #e50914;
  padding-left: 1.8rem;
}

.about-slide__quote {
  margin: 0 0 1.2rem;
  color: #0a0f39;
  font-size: clamp(1.35rem, 3.1vw, 2.6rem);
  line-height: 1.25;
  font-weight: 600;
  font-style: italic;
}

.about-slide__name {
  color: #e50914;
  margin: 0 0 0.2rem;
  font-size: 1.9rem;
}

.about-slide__role {
  margin: 0;
  color: #9ca3af;
  font-weight: 600;
  font-size: 1.05rem;
}

.about-slider__controls {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin-top: 1rem;
  margin-left: 2.2rem;
}

.about-slider__btn {
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.1rem 0.3rem;
}

.about-slider__btn:hover {
  color: #e50914;
}

.about-slider__counter {
  margin: 0;
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #070c2a;
  padding-top: 2rem;
}

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

.footer-title {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

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

.site-footer li {
  margin-bottom: 0.3rem;
}

.copyright {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding: 0.9rem 0 1.4rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-contact {
    grid-column: 1 / -1;
  }

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

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

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

  .included-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }
}

@media (max-width: 740px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #070337;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 1rem;
    display: none;
  }

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

  .hero-inner,
  .grid-3,
  .grid-4,
  .device-list,
  .footer-grid,
  .sports-grid {
    grid-template-columns: 1fr;
  }

  .included-diamond {
    width: 250px;
    height: 250px;
    padding: 28px;
  }

  .included-diamond h3 {
    font-size: 1.2rem;
    line-height: 1.06;
  }

  .included-diamond p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .header-contact {
    display: none;
  }

  .page-home .split-grid,
  .page-home .seo-columns,
  .page-home .device-features {
    grid-template-columns: 1fr;
  }

  .page-home .review-shots {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .section-cta-bar .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ----- Homepage wireframe (reference layout) ----- */
.page-home {
  background: #f3f4f6;
  color: #1a1d2e;
}

.page-home .site-header {
  background: #0a0e1a;
  border-bottom: none;
}

.page-home .main-nav a {
  color: #fff;
  font-size: 1.06rem;
}

.page-home .main-nav a:hover {
  color: #ff2b2b;
}

.page-home .header-contact,
.page-home .header-contact a {
  color: #fff;
}

.hero-home {
  position: relative;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  overflow: hidden;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-home-bg.png") center/cover no-repeat;
  background-color: #0f172a;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 26, 0.42) 0%,
    rgba(15, 23, 42, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

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

.hero-home h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5.4vw, 3.65rem);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 1rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.38);
}

.hero-home__lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

@media (max-width: 700px) {
  .hero-home {
    min-height: 78vh;
    padding: 4rem 1rem 3rem;
  }

  .hero-home__overlay {
    background: linear-gradient(180deg, rgba(8, 12, 24, 0.56) 0%, rgba(15, 23, 42, 0.72) 100%);
  }

  .hero-home__inner {
    max-width: 94%;
  }

  .hero-home h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
  }

  .hero-home__lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
}

.btn-hero {
  background: #e50914;
  color: #fff;
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.45);
}

.btn-hero:hover {
  background: #c40812;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 9, 20, 0.5);
}

.page-home .section {
  background: #fff;
  border-block: none;
}

.page-home .section-alt {
  background: #f9fafb;
}

.section-services {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-services__title {
  font-family: Georgia, "Times New Roman", serif;
  color: #6d28d9;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  text-align: center;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.section-services__subtitle {
  color: #dc2626;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
}

.section-services__intro {
  text-align: center;
  color: #374151;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 2px solid #e11d48;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: #fce7f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  color: #0f172a;
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-grid__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.split-grid__content h2 {
  color: #dc2626;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
}

.split-grid__content > p {
  color: #374151;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.checklist li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #dc2626;
  font-weight: 800;
  font-size: 0.95rem;
}

.checklist--compact li {
  font-size: 0.9rem;
}

.section-heading-red {
  color: #dc2626;
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 800;
}

.section-pricing-home {
  background: #ffffff !important;
}

.pricing-card--home {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pricing-card--home h3 {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.pricing-card--home .price {
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.pricing-card--home .plan-media {
  margin-bottom: 0.75rem;
}

.plan-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.btn-plan {
  margin-top: auto;
  background: #0f172a !important;
  color: #fff !important;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.75rem 1rem;
}

.btn-plan:hover {
  background: #1e293b !important;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

/* Wireframe pricing cards (home + pricing page) */
.section-pricing-plans {
  background: #ffffff;
}

.pricing-wireframe {
  align-items: stretch;
}

.pricing-card--wireframe {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem 1.1rem 1.15rem;
  border-radius: 12px;
}

.page-pricing .pricing-card--wireframe {
  background: #fff !important;
  color: #0f172a !important;
}

.pricing-card--wireframe.featured {
  border-color: rgba(220, 38, 38, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.25), 0 12px 32px rgba(15, 23, 42, 0.1) !important;
}

.pricing-card__kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.4rem;
}

.pricing-card--wireframe h3 {
  color: #050a30 !important;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.pricing-card__pill {
  background: #f0f0f0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.45rem;
  margin-bottom: 1rem;
}

.pricing-card__pill-main {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-weight: 800;
  color: #050a30;
  font-size: 1.7rem;
  line-height: 1;
}

.pricing-card__currency {
  font-size: 1.15rem;
  font-weight: 700;
}

.pricing-card__period {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #64748b;
  text-transform: uppercase;
}

.pricing-card__oval {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #e5e7eb;
}

.pricing-card__oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-card__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.pricing-card__icons-top {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}

.pricing-card__icons-bottom {
  display: flex;
  justify-content: center;
}

.pricing-card__icon-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #dc2626;
}

.pricing-card__icon-ring svg {
  flex-shrink: 0;
}

.pricing-card__feature-list {
  margin-bottom: 1rem !important;
  flex-grow: 1;
}

.pricing-card--wireframe .checklist li {
  color: #1f2937;
}

.btn-subscribe {
  margin-top: auto;
  background: #050a30 !important;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.8rem 1rem;
  text-align: center;
  border: none;
}

.btn-subscribe:hover {
  background: #0f172a !important;
  color: #fff !important;
}

.page-pricing .section-heading-red {
  margin-bottom: 1.75rem;
}

.section-devices-home .devices-image {
  margin: 0 auto 1.5rem;
}

.device-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-sports-strip {
  background: #7f1d1d;
  padding: 1.9rem 1rem;
  border: none;
}

.sports-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
}

.sports-strip-inner img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.section-seo .seo-lead {
  color: #374151;
  line-height: 1.7;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.subheading-red {
  color: #dc2626;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.section-cta-bar {
  background: #dc2626;
  padding: 1.75rem 1rem;
  border: none;
}

.section-cta-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-cta-bar p {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.section-cta-bar .btn-hero {
  flex-shrink: 0;
  background: #fff;
  color: #dc2626;
  box-shadow: none;
}

.section-cta-bar .btn-hero:hover {
  background: #fef2f2;
  color: #b91c1c;
}

.section-reviews-home {
  background: #fff;
}

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

.review-shots img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.section-faq-home.section-faq-wire {
  background: #ffffff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.faq-wire__title {
  text-align: center;
  color: #dc2626;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 2.25rem;
}

.faq-wire__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.faq-wire__visual {
  position: relative;
  min-height: 280px;
}

.faq-wire__v-shape {
  position: absolute;
  inset: 0;
  left: -8%;
  width: 90%;
  height: 100%;
  background: linear-gradient(165deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.02) 45%, transparent 70%);
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 100%);
  transform: scale(1.05);
  pointer-events: none;
}

.faq-wire__photos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 0;
}

.faq-wire__tv {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e5e7eb;
}

.faq-wire__logo-wrap {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-wire__logo {
  display: block;
  width: 120px;
  height: auto;
}

.faq-wire__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-faq-wire .faq-wire-item:last-child {
  margin-bottom: 0 !important;
}

.faq-wire-item {
  border: none !important;
  border-radius: 0;
  padding: 0 !important;
  margin: 0;
  background: transparent !important;
}

.faq-wire-item + .faq-wire-item {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #a855f7, #6366f1, #2563eb) 1;
}

.faq-wire-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0 1.05rem 0.15rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: #a21caf;
}

.faq-wire-item summary::-webkit-details-marker {
  display: none;
}

.faq-wire-item summary::after {
  content: "\2212";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  line-height: 1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.faq-wire-item:not([open]) summary::after {
  content: "+";
  background: linear-gradient(135deg, #c026d3, #4f46e5);
}

.faq-wire-item p {
  margin: 0;
  padding: 0 3rem 1.15rem 0.15rem;
  color: #374151;
  line-height: 1.65;
  font-size: 0.98rem;
}

.section-whats-included {
  background: #ffffff;
  padding-bottom: 2.5rem;
}

.whats-included__title {
  text-align: center;
  color: #991b1b;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  max-width: 900px;
  margin: 0 auto 1.25rem;
  line-height: 1.3;
}

.whats-included__intro {
  text-align: center;
  color: #1f2937;
  line-height: 1.75;
  max-width: 920px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-stats-pill {
  padding: 1.2rem 0 3.4rem;
  background: #ffffff;
}

.stats-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.1rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e30613, #7f1d1d, #4c0510);
  box-shadow: 0 12px 36px rgba(127, 29, 29, 0.35);
}

.stats-pill__item {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: #fff;
  padding: 0.25rem 0.35rem;
}

.stats-pill__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.stats-pill__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.stats-pill__num {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.stats-pill__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
  line-height: 1.2;
}

/* Installation guide: intro collage + stats + device strip */
.section-install-intro {
  background: #ffffff;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.install-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 2.25rem 3rem;
  align-items: center;
}

.install-intro__collage {
  min-width: 0;
}

.install-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(130px, 14vw) minmax(130px, 14vw);
  gap: 0.65rem;
  max-width: 540px;
  margin: 0 auto;
}

.install-collage__tile {
  margin: 0;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.install-collage__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.install-collage__tile--1 {
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 86%);
}

.install-collage__tile--2 {
  clip-path: polygon(6% 0, 100% 0, 100% 92%, 0 100%);
}

.install-collage__tile--3 {
  grid-column: 1 / -1;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 94%);
  min-height: 160px;
}

.install-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}

.install-intro__eyebrow-accent {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  flex-shrink: 0;
}

.install-intro__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.install-intro__lead {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
}

.install-intro__quick {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.55;
}

.install-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.install-intro__btn-pkg {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid #7c3aed;
  border-radius: 8px;
  color: #6d28d9;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.install-intro__btn-pkg:hover {
  background: #7c3aed;
  color: #fff;
  border-color: #6d28d9;
  transform: translateY(-2px);
}

.install-intro__btn-icon {
  display: inline-flex;
  color: inherit;
}

.install-intro__contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.install-intro__phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8b5cf6, #6d28d9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}

.install-intro__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.install-intro__contact-label {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 600;
}

.install-intro__phone-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
}

.install-intro__phone-num:hover {
  color: #7c3aed;
}

.section-stats-pill--guide-top {
  padding-top: 0.75rem;
  padding-bottom: 2rem;
}

.section-install-cards {
  position: relative;
  padding: 2.75rem 0 3rem;
  overflow: hidden;
  background: #13151f;
}

.section-install-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-wireframe-bg.png") center/cover no-repeat;
  opacity: 0.28;
  filter: blur(1px);
  pointer-events: none;
}

.section-install-cards .container {
  position: relative;
  z-index: 1;
}

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

.install-device-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1.1rem 1rem;
  background: rgba(38, 42, 58, 0.92);
  border-radius: 14px;
  border: 1px solid rgba(217, 70, 239, 0.28);
  text-decoration: none;
  color: #f9fafb;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.install-device-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 121, 255, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  background: rgba(48, 52, 72, 0.98);
}

.install-device-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px 7px 16px 7px;
  border: 2px solid #d946ef;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  color: #f0abfc;
}

.install-device-card__icon--pc {
  position: relative;
}

.install-device-card__4k {
  position: absolute;
  bottom: 6px;
  right: 5px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fae8ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.install-device-card__text {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.section-heading-red--guide {
  margin-bottom: 1.5rem;
}

@media (max-width: 960px) {
  .install-intro {
    grid-template-columns: 1fr;
  }

  .install-collage {
    max-width: 480px;
  }

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

@media (max-width: 560px) {
  .install-cards-grid {
    grid-template-columns: 1fr;
  }

  .install-intro__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .install-intro__btn-pkg:hover,
  .install-device-card:hover {
    transform: none;
  }

  .blog-teaser-card:hover {
    transform: none;
  }
}

/* Installation page: two-column accordion + blog grid */
.section-install-accordion {
  background: #ffffff;
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

.install-acc-header {
  text-align: center;
  margin-bottom: 1.85rem;
}

.install-acc-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4338ca;
}

.install-acc-kicker-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, #6366f1, transparent);
  border-radius: 999px;
}

.install-acc-title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: #1a1a3c;
  line-height: 1.15;
}

.install-acc-title-accent {
  color: #d63384;
}

.install-acc-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  background: #f8f9fa;
  border-radius: 18px;
  padding: 1.25rem 1.45rem 1.45rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.install-acc-col {
  display: flex;
  flex-direction: column;
}

.install-acc-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.install-acc-col .install-acc-item:last-child {
  margin-bottom: 0;
}

.install-acc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1rem 1rem 1.05rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: #1d4ed8;
  list-style: none;
  line-height: 1.35;
  background: #f8fafc;
}

.install-acc-summary::-webkit-details-marker {
  display: none;
}

.install-acc-summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #9333ea, #ec4899);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.install-acc-item[open] .install-acc-summary::after {
  content: "\2212";
  font-size: 1.2rem;
}

.install-acc-item[open] .install-acc-summary {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.install-acc-body {
  padding: 0.85rem 1.05rem 1.2rem;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.65;
  background: #ffffff;
}

.install-acc-body p {
  margin: 0 0 0.75rem;
}

.install-acc-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.install-acc-steps li {
  margin-bottom: 0.65rem;
}

.install-acc-ok {
  margin-right: 0.15rem;
}

.section-blog-archive {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.5rem;
}

.blog-teaser-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-teaser-card:hover {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.blog-teaser-card__img-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.blog-teaser-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-teaser-card__body {
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-teaser-card__meta {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0 0 0.4rem;
}

.blog-teaser-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 800;
}

.blog-teaser-card__title a {
  color: #0f172a;
  text-decoration: none;
}

.blog-teaser-card__title a:hover {
  color: #dc2626;
}

.blog-teaser-card__excerpt {
  margin: 0 0 0.85rem;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.blog-teaser-card__more {
  font-weight: 700;
  color: #dc2626;
  text-decoration: none;
  font-size: 0.9rem;
}

.blog-teaser-card__more:hover {
  text-decoration: underline;
}

.page-blog .blog-page-lead {
  text-align: center;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.page-blog .blog-teaser-grid {
  margin-top: 0.5rem;
}

.blog-post-page .blog-post {
  background: #fff;
}

.blog-post-page .blog-post__cover-wrap {
  margin: 0;
  max-height: min(52vh, 420px);
  overflow: hidden;
  background: #0f172a;
}

.blog-post-page .blog-post__cover {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  display: block;
}

.blog-post-page .blog-post__head {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.blog-post-page .blog-post__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.blog-post-page .blog-post__meta {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

.blog-post-page .blog-post__meta strong {
  color: #374151;
}

.blog-post-page .blog-post__author-face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e11d48, #be185d);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.blog-post-page .blog-post__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem 3.5rem;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-post-page .blog-post__body h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: #0f172a;
}

.blog-post-page .blog-post__body p {
  margin: 0 0 1.1rem;
}

.blog-post-page .blog-post__body ul {
  margin: 0 0 1.1rem 1.1rem;
  padding: 0;
}

.blog-post-page .blog-post__body li {
  margin-bottom: 0.45rem;
}

.blog-post-page .blog-post__back {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 700;
  color: #dc2626;
  text-decoration: none;
}

.blog-post-page .blog-post__back:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .install-acc-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .blog-teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }
}

.section-seo__main-title {
  margin-bottom: 1rem;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.what-grid__cell {
  background: #fff;
  border-radius: 12px;
  padding: 1.15rem 1.2rem 1.25rem;
}

.what-grid__pill {
  display: inline-block;
  background: #fce7f3;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.what-grid__list.checklist {
  margin: 0;
}

.what-grid__list.checklist li {
  font-size: 0.95rem;
  color: #111827;
}

.page-home .section-seo {
  background: #ffffff;
}

.site-footer.site-footer--wire {
  background: #000000;
  border-top: none;
  padding: 2.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.footer-wire {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem 2.5rem;
}

.footer-wire__logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.footer-wire__body {
  flex: 1;
  min-width: min(100%, 280px);
  max-width: 820px;
}

.footer-wire__tagline {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.footer-wire__copy {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-wire__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin-bottom: 1.25rem;
}

.footer-wire__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-wire__nav a:hover {
  text-decoration: underline;
}

.footer-wire__phone {
  margin: 0;
  text-align: right;
  font-size: 0.98rem;
}

.footer-wire__phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-wire__phone a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .faq-wire__grid {
    grid-template-columns: 1fr;
  }

  .faq-wire__visual {
    min-height: 0;
  }

  .stats-pill {
    border-radius: 20px;
  }

  .footer-wire__phone {
    text-align: left;
  }
}

@media (max-width: 740px) {
  .what-grid {
    grid-template-columns: 1fr;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-slide__quote {
    font-size: clamp(1.08rem, 4.7vw, 1.5rem);
  }

  .about-slide__name {
    font-size: 1.3rem;
  }

  .about-slide__role {
    font-size: 0.9rem;
  }

  .pricing-steps__grid {
    grid-template-columns: 1fr;
  }

  .pricing-steps__item,
  .pricing-steps__item--wide {
    grid-column: auto;
    border-right: none;
    border-top: 1px solid #d8a4ad;
  }

  .pricing-steps__item:first-child {
    border-top: none;
  }

  .why-4k-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .service-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .about-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
  }

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

  .about-slide__avatar {
    width: 170px;
    height: 170px;
  }

  .about-slide__content {
    padding-left: 1rem;
  }

  .about-slider__controls {
    margin-left: 0;
  }

  .pricing-steps__item h3 {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  }

  .pricing-steps__item p {
    font-size: 0.95rem;
  }

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

  .reseller-why__grid,
  .reseller-steps-grid,
  .reseller-feature-list,
  .reseller-better-list,
  .reseller-who-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .reseller-logo-track img {
    width: 120px;
    height: 78px;
  }

  .reseller-why-card h3 {
    font-size: 0.95rem;
  }

  .reseller-cta-box {
    padding: 1.5rem 0.9rem;
  }
}
