:root {
  --yÃ¶: #061026;
  --syvÃ¤: #090b20;
  --pinta: #0f1b36;
  --sininen: #0b8cff;
  --taivas: #3fd3ff;
  --minttu: #44e6c8;
  --kulta: #f4c75a;
  --koralli: #ff6b6b;
  --teksti: #eef6ff;
  --himmeÃ¤: #9cafca;
  --vaalea: #f6f9fd;
  --raja: rgba(255, 255, 255, .14);
  --varjo: 0 22px 70px rgba(7, 16, 38, .18);
  --pyÃ¶ristys: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #152035;
  background: var(--vaalea);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 12px;
  color: #071026;
  background: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(31, 30, 45, .96);
  border-top: 1px solid rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1540px, calc(100% - 64px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fbff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  white-space: nowrap;
}

.header-brand img {
  width: 66px;
  height: 66px;
}

.header-brand strong {
  color: #0b6cff;
  font-weight: 900;
}

.header-brand span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.brand {
  width: 218px;
  flex: 0 0 auto;
}

.text-brand {
  width: auto;
  color: #f8fbff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .3px;
  white-space: nowrap;
}

.text-brand span {
  color: #0b8cff;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
}

.site-nav a,
.site-nav button {
  font: inherit;
}

.site-nav .nav-link,
.dropdown-menu a {
  color: #f8fbff;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 900;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav .nav-link:hover,
.site-nav .nav-link[aria-current="page"],
.site-nav .nav-dropdown.is-open > .nav-link {
  color: #0b6cff;
}

.nav-dropdown {
  position: relative;
}

.chevron {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;
  transform: translateY(2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: none;
  min-width: 240px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(28, 29, 44, .98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  transform: translateX(-50%);
}

.support-menu {
  min-width: 285px;
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  color: #d8e2f4;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  color: #fff;
  background: rgba(11, 108, 255, .16);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  display: block;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  color: #fff;
  background: #0b6cff;
  box-shadow: 0 16px 35px rgba(11, 108, 255, .28);
  font-size: 18px;
  font-weight: 700;
}

.header-cta:hover {
  background: #0a5fe0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--raja);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: currentColor;
}
.cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--sininen), #0064e8 58%, #654cff);
  box-shadow: 0 12px 30px rgba(11, 140, 255, .35);
  font-weight: 800;
  cursor: pointer;
}

.button.alt {
  color: #f8fbff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid var(--raja);
  box-shadow: none;
}

.button.light {
  color: #071026;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 16, 38, .16);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--yÃ¶);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 38, .96) 0%, rgba(6, 16, 38, .84) 44%, rgba(6, 16, 38, .35) 100%),
    linear-gradient(0deg, rgba(6, 16, 38, .95), rgba(6, 16, 38, .1) 44%, rgba(6, 16, 38, .4)),
    url("img/iptvisuomi-hero.jpg") center/cover no-repeat;
}

.hero-inner,
.page-hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 82px 0 96px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--raja);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 4.4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 730px;
  color: #d6e4f6;
  font-size: clamp(18px, 2.4vw, 22px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #cbd8ee;
  font-weight: 700;
}

.hero-pills span {
  padding: 8px 12px;
  border: 1px solid var(--raja);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.section {
  padding: 92px 0;
}

.section.dark {
  color: #eef6ff;
  background: radial-gradient(circle at 18% 15%, rgba(68, 230, 200, .13), transparent 32%), linear-gradient(135deg, #080921, #071026 52%, #05242a);
}

.section.band {
  background: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head .eyebrow {
  margin: 0 auto 16px;
  color: #0b68c8;
  background: #e9f4ff;
  border-color: transparent;
}

.section.dark .section-head p,
.section.dark .muted {
  color: #aebdd4;
}

.section-head p,
.muted {
  margin-top: 14px;
  color: #5c6c84;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 42px;
}

.card,
.price-card,
.legal-box,
.guide-card,
.faq-item,
.contact-panel {
  border: 1px solid rgba(15, 34, 66, .09);
  border-radius: var(--pyÃ¶ristys);
  background: #fff;
  box-shadow: var(--varjo);
}

.card {
  padding: 28px;
}

.dark .card {
  color: #eef6ff;
  background: rgba(255, 255, 255, .07);
  border-color: var(--raja);
  box-shadow: none;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #071026;
  background: linear-gradient(135deg, var(--minttu), var(--taivas));
  font-weight: 900;
}

.visual-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--varjo);
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before,
.check-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--minttu);
  font-weight: 900;
}

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

.comparison-section {
  background: #fff;
}

.comparison-section .section-head {
  margin-bottom: 56px;
}

.comparison-section .section-head .eyebrow {
  padding: 12px 30px;
  color: #0867e8;
  background: #e8f1ff;
  font-size: 18px;
}

.comparison-section h2 {
  color: #05070d;
  font-size: clamp(38px, 6vw, 72px);
}

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

.comparison-card {
  min-height: 720px;
  padding: clamp(28px, 5vw, 48px);
  border: 2px solid #c5c5c5;
  border-radius: 26px;
  background: #fff;
}

.comparison-card-primary {
  border-color: #2595ff;
}

.comparison-card-muted {
  color: #8b8b8b;
}

.comparison-card h3 {
  margin-bottom: 42px;
  color: #05070d;
  font-size: clamp(34px, 5vw, 56px);
}

.comparison-card-muted h3 {
  color: #8b8b8b;
}

.comparison-stats {
  display: grid;
  gap: 14px;
  margin: 0 0 58px;
}

.comparison-stats div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.comparison-stats dt,
.comparison-stats dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
}

.comparison-stats dd {
  color: #0b66f0;
  text-align: right;
}

.comparison-card-muted .comparison-stats dd {
  color: #8b8b8b;
}

.comparison-benefits {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-benefits li {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(11, 140, 255, .35);
  transform: translateY(-10px);
}

.tag {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #07517f;
  background: #e9fff8;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 18px 0 4px;
  color: #071026;
  font-size: 34px;
  font-weight: 900;
}

.price-card .button {
  margin-top: auto;
}

.steps {
  counter-reset: vaihe;
}

.step {
  position: relative;
  padding: 28px 28px 28px 86px;
}

.step::before {
  counter-increment: vaihe;
  content: counter(vaihe);
  position: absolute;
  left: 28px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #071026;
  background: var(--kulta);
  font-weight: 900;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 74% 24%, rgba(68, 230, 200, .16), transparent 33%), linear-gradient(135deg, #071026, #090b20 58%, #05272e);
}

.page-hero-inner {
  padding: 92px 0 74px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #d6e4f6;
  font-size: 20px;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-card {
  padding: 28px;
}

.guide-card ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.guide-card li + li {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-showcase {
  padding: 72px 0 92px;
  background: #fff;
}

.faq-showcase-inner {
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .9fr);
  align-items: center;
  gap: 56px;
}

.faq-copy .eyebrow {
  color: #0b66f0;
  background: #e8f1ff;
  border-color: transparent;
  font-size: 20px;
}

.faq-copy h1 {
  margin-top: 26px;
  color: #05070d;
  font-size: clamp(42px, 5.8vw, 70px);
}

.faq-lead {
  margin: 20px 0 30px;
  color: #727d8c;
  font-size: clamp(20px, 2.2vw, 30px);
}

.faq-list-soft {
  gap: 14px;
}

.faq-list-soft .faq-item {
  border: 0;
  border-radius: 14px;
  background: #f8f8f8;
  box-shadow: none;
}

.faq-list-soft .faq-item button {
  min-height: 54px;
  padding: 20px 28px;
  color: #05070d;
  background: #f8f8f8;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 500;
}

.faq-list-soft .faq-item button::after {
  content: "+";
  color: #0b66f0;
  font-size: 34px;
  font-weight: 900;
}

.faq-list-soft .faq-item.is-open button::after {
  content: "âˆ’";
}

.faq-list-soft .faq-item p {
  padding: 0 28px 24px;
  color: #53637a;
  font-size: 17px;
}

.faq-visual-panel {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-visual-panel img {
  width: 100%;
  filter: drop-shadow(0 28px 55px rgba(11, 102, 240, .18));
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px 26px;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #071026;
  background: #fff;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--sininen);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "âˆ’";
}

.faq-item p {
  display: none;
  padding: 0 26px 24px;
  color: #53637a;
}

.faq-item.is-open p {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.contact-panel {
  padding: 30px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #34435b;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(15, 34, 66, .14);
  border-radius: 14px;
  padding: 13px 14px;
  color: #071026;
  background: #f8fbff;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.legal-box {
  padding: 34px;
}

.legal-box h2,
.legal-box h3 {
  margin-top: 28px;
}

.legal-box h2:first-child,
.legal-box h3:first-child {
  margin-top: 0;
}

.legal-box p,
.legal-box li {
  color: #53637a;
}

.legal-box ul {
  padding-left: 22px;
}

.support-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 34px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #0b8cff, #071026 58%, #073f45);
  box-shadow: var(--varjo);
}

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

.home-soft-card {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(7, 16, 38, .08);
}

.center-copy {
  text-align: center;
}

.center-copy p {
  max-width: 780px;
  margin: 16px auto 0;
  color: #627088;
}

.center-copy h2,
.home-soft-card h2,
.home-intro-heading h2,
.home-dark-showcase h2 {
  color: #071026;
  font-size: clamp(32px, 5vw, 50px);
}

.home-product-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #eaf4ff;
  box-shadow: var(--varjo);
}

.home-product-card h3 {
  color: #0b66f0;
  font-size: clamp(24px, 3vw, 34px);
}

.home-product-card .button {
  margin-top: 24px;
}

.product-visual {
  max-width: 520px;
  margin: 0 auto;
}

.home-intro-heading {
  background: #fff;
}

.home-intro-heading .eyebrow,
.home-dark-showcase .eyebrow,
.payment-card .eyebrow {
  margin: 0 auto 18px;
  color: #0b66f0;
  background: #e8f1ff;
  border-color: transparent;
}

.home-dark-showcase {
  overflow: hidden;
  color: #eef6ff;
  background: #070524;
}

.home-dark-showcase h2 {
  color: #fff;
}

.home-dark-showcase p {
  color: #8794ad;
}

.media-strip {
  width: min(1300px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.media-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.payment-card {
  align-items: center;
}

.payment-card h2 {
  font-size: clamp(26px, 4vw, 38px);
  text-align: left;
}

.payment-card p {
  margin-top: 18px;
  color: #53637a;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.payment-icons span {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 34px;
  border-radius: 999px;
  color: #0b66f0;
  background: #e8f1ff;
  font-weight: 950;
}

.payment-logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 16px;
  background: #f7f7f8;
}

.payment-logo img {
  width: min(270px, 80%);
}

.poster-strip {
  width: min(1300px, 100%);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 18px;
}

.poster-strip article {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .74)),
    linear-gradient(135deg, #f34b8a, #111a44);
}

.poster-strip article:nth-child(2) {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .74)), linear-gradient(135deg, #d9dde8, #a70d2b);
}

.poster-strip article:nth-child(3) {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .74)), linear-gradient(135deg, #ffd43b, #082c69);
}

.poster-strip article:nth-child(4) {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .74)), linear-gradient(135deg, #87d4ff, #06333e);
}

.poster-strip article:nth-child(5) {
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .74)), linear-gradient(135deg, #58616d, #1c130f);
}

.poster-strip span {
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.content-hero .page-hero-inner {
  max-width: 1180px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.content-main,
.article-content {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--varjo);
}

.content-main.narrow,
.article-content {
  max-width: 940px;
  margin: 0 auto;
}

.content-main h2,
.article-content h2 {
  margin-top: 34px;
  color: #071026;
  font-size: clamp(26px, 3.5vw, 38px);
}

.content-main h2:first-child,
.article-content h2:first-child {
  margin-top: 0;
}

.content-main h3,
.article-content h3 {
  margin-top: 24px;
  color: #0f1b36;
  font-size: 22px;
}

.content-main p,
.article-content p {
  margin-top: 14px;
  color: #53637a;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.content-cards .card {
  box-shadow: none;
  background: #f7fbff;
}

.content-side,
.article-side {
  position: sticky;
  top: 118px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071026, #10264d);
  color: #eef6ff;
  box-shadow: var(--varjo);
}

.content-side h2,
.article-side h2 {
  color: #fff;
  font-size: 24px;
}

.content-side p,
.article-side p {
  margin: 12px 0 20px;
  color: #cbd8ee;
}

.article-side a {
  display: block;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #dce8ff;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.numbered-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.numbered-flow article {
  padding: 24px;
  border-radius: 20px;
  background: #f7fbff;
}

.numbered-flow span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  background: #0b66f0;
  font-weight: 950;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.article-intro {
  font-size: 20px;
  color: #34435b;
}

.article-cta {
  margin-top: 36px;
  padding: 28px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0b66f0, #071026);
}

.article-cta h2,
.article-cta p {
  color: #fff;
}

.article-cta .button {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .content-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .content-side,
  .article-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .content-cards,
  .numbered-flow {
    grid-template-columns: 1fr;
  }

  .content-main,
  .article-content,
  .content-side,
  .article-side {
    padding: 22px;
    border-radius: 18px;
  }
}

.site-footer {
  color: #cbd8ee;
  background: #050a18;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 30px;
  display: grid;
  gap: 34px;
}

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

.footer-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 17px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #aebdd4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--raja);
  color: #8fa2bf;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(31, 30, 45, .99), rgba(8, 13, 32, .99));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav .nav-link,
  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #edf5ff;
    background: rgba(255, 255, 255, .055);
    font-size: 16px;
    font-weight: 850;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link[aria-current="page"],
  .site-nav .nav-dropdown.is-open > .nav-link {
    color: #fff;
    background: rgba(11, 108, 255, .2);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 6px 0 2px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(3, 9, 24, .45);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: grid;
  }

  .dropdown-menu a {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
  }

  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .comparison-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }

  .support-strip {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    gap: 24px;
  }

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

  .faq-showcase-inner {
    grid-template-columns: 1fr;
  }

  .faq-visual-panel {
    position: static;
    max-width: 560px;
    margin: 0 auto;
  }

  .media-strip,
  .poster-strip {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    padding: 0 16px;
  }

  .payment-card h2 {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    border-top-color: rgba(255, 255, 255, .28);
  }

  .nav-wrap {
    width: min(100% - 24px, 1760px);
    min-height: 74px;
    gap: 10px;
  }

  .header-brand {
    gap: 9px;
    font-size: 16px;
    letter-spacing: 2.4px;
  }

  .header-brand img {
    width: 48px;
    height: 48px;
  }

  .header-brand span {
    gap: 7px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    border-radius: 13px;
    font-size: 16px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    padding: 10px;
    border-radius: 18px;
  }

  .site-nav .nav-link,
  .site-nav a {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 15px;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero-inner,
  .page-hero-inner {
    padding-top: 62px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .comparison-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .card,
  .price-card,
  .legal-box,
  .guide-card,
  .contact-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .step {
    padding-left: 72px;
  }

  .step::before {
    left: 22px;
  }

  .footer-bottom,
  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button,
  .cta {
    width: 100%;
  }

  .comparison-section .section-head {
    margin-bottom: 32px;
  }

  .comparison-card h3 {
    margin-bottom: 26px;
  }

  .comparison-stats {
    margin-bottom: 36px;
  }

  .comparison-stats div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .comparison-stats dd {
    text-align: left;
  }

  .comparison-benefits {
    gap: 14px;
  }

  .faq-showcase {
    padding: 48px 0 68px;
  }

  .faq-showcase-inner {
    width: min(100% - 28px, 1280px);
    gap: 34px;
  }

  .faq-copy h1 {
    margin-top: 18px;
  }

  .faq-lead {
    margin-bottom: 24px;
  }

  .faq-list-soft .faq-item button {
    min-height: 62px;
    padding: 17px 18px;
  }

  .faq-list-soft .faq-item p {
    padding: 0 18px 20px;
  }

  .home-soft-card,
  .home-product-card {
    border-radius: 20px;
  }

  .media-strip,
  .poster-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px 8px;
  }

  .media-strip img,
  .poster-strip article {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .poster-strip article {
    min-height: 220px;
  }
}

.offer-hero {
  background: radial-gradient(circle at 72% 18%, rgba(68, 230, 200, .18), transparent 34%), linear-gradient(135deg, #071026, #0b1029 52%, #052b34);
}

.offer-intro {
  background: #fff;
}

.offer-note,
.mobile-note {
  max-width: 980px;
  margin: 0 auto 22px;
  color: #56657a;
  text-align: center;
  font-size: 18px;
}

.mobile-note {
  color: #ff2c2c;
}

.channel-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 30px;
}

.channel-toolbar span {
  padding: 10px 15px;
  border: 1px solid rgba(11, 140, 255, .16);
  border-radius: 999px;
  color: #07517f;
  background: #eef7ff;
  font-weight: 900;
}

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

.channel-card {
  padding: 26px;
  border: 1px solid rgba(15, 34, 66, .09);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: var(--varjo);
}

.channel-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: var(--sininen);
  font-weight: 900;
}

.channel-card p {
  margin-top: 10px;
  color: #617089;
}

.offer-package {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 34, 66, .09);
  border-radius: 28px;
  background: #f8fafc;
  text-align: center;
  box-shadow: var(--varjo);
}

.offer-package-head {
  padding: 32px 24px;
  color: #fff;
  background: linear-gradient(135deg, #20283a, #4f5967);
}

.offer-package-head h3 {
  font-size: 30px;
}

.offer-package-head p {
  margin-top: 8px;
  color: #edf3fb;
  font-weight: 800;
}

.period-list {
  max-width: 760px;
  margin: 34px auto 24px;
  padding: 0 24px;
}

.period-list a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border-bottom: 1px solid rgba(15, 34, 66, .13);
  color: #53637a;
}

.period-list span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #2dd75f;
  border-radius: 50%;
  color: #2bbf55;
  font-size: 13px;
  font-weight: 900;
}

.period-list strong {
  color: #26344c;
  text-align: left;
  text-transform: uppercase;
}

.period-list em {
  color: #0b66f0;
  font-style: normal;
  font-weight: 900;
}

.offer-package > .button {
  margin: 6px auto 22px;
}

.offer-package > .muted {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 34px;
}

.offer-quote {
  margin: 0;
  padding: 40px;
  border-radius: 28px;
  color: #eef6ff;
  background: linear-gradient(135deg, #071026, #10264d);
  box-shadow: var(--varjo);
}

.offer-quote p {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.3;
  font-style: italic;
}

.offer-quote cite {
  display: block;
  margin-top: 24px;
  color: #bdefff;
  font-style: normal;
  font-weight: 900;
}

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

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

  .period-list a {
    grid-template-columns: 28px 1fr;
  }

  .period-list em {
    grid-column: 2;
    text-align: left;
  }

  .offer-quote {
    padding: 28px;
  }
}

@media (max-width: 1180px) {
  .nav-wrap {
    width: min(100% - 32px, 1760px);
    grid-template-columns: auto auto;
    min-height: 96px;
    gap: 12px;
  }

  .header-brand img {
    width: 62px;
    height: 62px;
  }

  .header-brand {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .site-nav {
    justify-self: stretch;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    width: min(100% - 24px, 1760px);
    min-height: 74px;
    gap: 10px;
  }

  .header-brand {
    gap: 9px;
    font-size: 16px;
    letter-spacing: 2.4px;
  }

  .header-brand img {
    width: 48px;
    height: 48px;
  }

  .header-brand span {
    gap: 7px;
  }

  .header-cta {
    min-height: 46px;
    margin-top: 2px;
    border-radius: 13px;
    font-size: 16px;
  }
}

.package-section,
.device-section,
.start-section {
  background: #fff;
}

.pattern-head {
  position: relative;
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.pattern-head::before {
  content: "";
  position: absolute;
  inset: -44px 8% auto;
  height: 154px;
  pointer-events: none;
  opacity: .55;
  background-image: linear-gradient(#b9d7ff 1px, transparent 1px), linear-gradient(90deg, #b9d7ff 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
}

.pattern-head.warm-pattern::before {
  background-image: linear-gradient(#ffd9a3 1px, transparent 1px), linear-gradient(90deg, #ffd9a3 1px, transparent 1px);
}

.pattern-head > * {
  position: relative;
  z-index: 1;
}

.pattern-head .eyebrow {
  margin: 0 auto 18px;
  color: #0b66f0;
  background: #e8f1ff;
  border-color: transparent;
}

.pattern-head h2 {
  color: #05070d;
  font-size: clamp(34px, 4.8vw, 54px);
}

.pattern-head p {
  margin-top: 16px;
  color: #5c6c84;
  font-size: 18px;
}

.connection-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 0 46px;
}

.connection-banner span {
  display: block;
  padding: 16px 22px;
  border-radius: 999px;
  color: #0b66f0;
  background: #e8f1ff;
  font-weight: 900;
  text-align: center;
}

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

.package-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 520px;
  padding: 0 0 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(7, 16, 38, .08);
}

.package-badge {
  justify-self: start;
  margin: 0 0 6px;
  padding: 6px 15px;
  border-radius: 999px;
  color: #fff;
  background: #0b66f0;
  font-size: 14px;
  font-weight: 900;
}

.package-price {
  padding: 0 22px;
  color: #05070d;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.package-price small {
  font-size: 15px;
  font-weight: 900;
}

.package-card h3 {
  padding: 0 22px;
  color: #7f8793;
  font-size: 18px;
}

.package-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  margin: 0 22px;
  border-radius: 9px;
  color: #0b66f0;
  background: #e8f1ff;
  font-weight: 900;
}

.featured-package .package-button {
  color: #fff;
  background: #0b66f0;
}

.package-card ul {
  display: grid;
  gap: 14px;
  margin: 0 22px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(15, 34, 66, .06);
  list-style: none;
  color: #26344c;
  font-weight: 700;
}

.featured-package ul {
  padding: 22px;
  border-radius: 10px;
  background: #e8f1ff;
}

.device-showcase {
  max-width: 820px;
  margin: 0 auto 34px;
}

.device-showcase img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(7, 16, 38, .12);
}

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

.device-info-card {
  min-height: 235px;
  padding: 34px;
  border-radius: 20px;
  background: #e8f1ff;
}

.device-info-card h3 {
  color: #071026;
  font-size: 27px;
}

.device-info-card p {
  margin-top: 24px;
  color: #34435b;
  font-size: 18px;
}

.device-info-card-strong {
  color: #fff;
  background: #0b66f0;
}

.device-info-card-strong h3,
.device-info-card-strong p {
  color: #fff;
}

.start-section .pattern-head {
  margin-bottom: 64px;
}

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

.start-card {
  position: relative;
  padding: 64px 30px 34px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(7, 16, 38, .08);
  text-align: center;
}

.start-card span {
  position: absolute;
  left: 50%;
  top: -34px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: #0b66f0;
  font-size: 30px;
  font-weight: 950;
  transform: translateX(-50%) rotate(-45deg);
}

.start-card span::before {
  content: attr(data-empty);
}

.start-card span {
  line-height: 1;
}

.start-card span {
  text-indent: 0;
}

.start-card span {
  color: transparent;
}

.start-card span::after {
  color: #fff;
  content: attr(data-number);
  transform: rotate(45deg);
}

.start-card:nth-child(1) span::after { content: "1"; }
.start-card:nth-child(2) span::after { content: "2"; }
.start-card:nth-child(3) span::after { content: "3"; }

.start-card h3 {
  color: #071026;
  font-size: 24px;
}

.start-card p {
  margin-top: 18px;
  color: #65748b;
}

@media (max-width: 980px) {
  .connection-banner,
  .package-grid,
  .device-card-grid,
  .start-grid {
    grid-template-columns: 1fr 1fr;
  }

  .connection-banner .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .connection-banner,
  .package-grid,
  .device-card-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

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

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

  .start-grid {
    gap: 54px;
  }
}

/* IPTV Suomi premium home redesign */
.home-page {
  --navy-950: #05081b;
  --navy-900: #080d25;
  --navy-800: #101a36;
  --blue-600: #096dff;
  --blue-500: #0b8cff;
  --blue-100: #eaf4ff;
  --ice: #f6f9fd;
  --ink: #101827;
  --muted-text: #66748a;
  --soft-shadow: 0 22px 70px rgba(6, 16, 38, .12);
  overflow-x: hidden;
  background: var(--ice);
}

.home-page .premium-header {
  background: rgba(10, 13, 31, .98);
  border: 0;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
}

.home-page .premium-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  gap: 22px;
}

.home-page .header-brand {
  font-size: 13px;
  letter-spacing: 2px;
}

.home-page .header-brand img {
  width: 38px;
  height: 38px;
}

.home-page .site-nav {
  gap: clamp(12px, 1.4vw, 22px);
}

.home-page .site-nav .nav-link {
  min-height: auto;
  padding: 8px 0;
  color: #edf5ff;
  background: transparent;
  font-size: 13px;
  font-weight: 850;
}

.home-page .header-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--blue-600);
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(9, 109, 255, .3);
}

.home-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  text-align: center;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 27, .58), rgba(5, 8, 27, .86)),
    linear-gradient(90deg, rgba(5, 8, 27, .92), rgba(8, 13, 37, .56), rgba(5, 8, 27, .92)),
    url("img/iptv-suomi-hero-nordic.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 92px 0 64px;
}

.hero-kicker {
  color: #e6eefc;
  font-size: 14px;
  font-weight: 800;
}

.home-hero h1 {
  color: var(--blue-500);
  font-size: clamp(48px, 8vw, 78px);
  line-height: 1;
  text-shadow: 0 20px 44px rgba(0, 0, 0, .34);
}

.hero-lead {
  max-width: 760px;
  color: #f7fbff;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
}

.home-page .hero-actions {
  justify-content: center;
  margin-top: 10px;
}

.home-page .button {
  min-width: 178px;
  min-height: 48px;
  border-radius: 7px;
  background: var(--blue-600);
  box-shadow: 0 14px 34px rgba(9, 109, 255, .32);
}

.home-page .button.alt {
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(255, 255, 255, .24);
}

.hero-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #88c5ff;
  background: rgba(5, 8, 27, .72);
  font-size: 13px;
  font-weight: 800;
}

.hero-breadcrumb span::before {
  content: "-";
  padding: 0 8px;
  color: #385b91;
}

.home-band {
  padding: clamp(62px, 8vw, 94px) 0;
}

.white-band {
  background: #fff;
}

.offer-band,
.devices-band,
.faq-preview-band {
  background: var(--ice);
}

.compact-top {
  padding-top: 0;
}

.intro-card,
.service-card {
  max-width: 1120px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--blue-600);
  background: #e8f1ff;
  font-size: 13px;
  font-weight: 900;
}

.intro-card .section-pill,
.overview .section-pill,
.dark-copy .section-pill,
.clean-head .section-pill,
.final-cta .section-pill {
  margin-left: auto;
  margin-right: auto;
}

.home-page h2 {
  color: #080b18;
  font-size: clamp(30px, 4.3vw, 48px);
  letter-spacing: 0;
}

.home-page h3 {
  color: #11192a;
  font-size: 21px;
}

.home-page p {
  color: var(--muted-text);
}

.intro-card p,
.service-card p,
.overview > p,
.clean-head p,
.dark-copy p,
.final-cta p {
  max-width: 790px;
  margin: 16px auto 0;
  font-size: 17px;
}

.device-offer {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: #eaf4ff;
  box-shadow: var(--soft-shadow);
}

.device-copy .strong {
  margin-top: 16px;
  color: #17223a;
  font-weight: 900;
}

.device-copy p:not(.strong) {
  margin-top: 12px;
}

.home-checks {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.home-checks li {
  position: relative;
  padding-left: 28px;
  color: #314057;
  font-weight: 700;
}

.home-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 5px rgba(9, 109, 255, .13);
}

.device-visual img,
.payment-support-card img,
.process-section > img,
.devices-section > img,
.faq-preview > img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 54px rgba(6, 16, 38, .12);
}

.overview {
  text-align: center;
}

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

.overview-grid article,
.process-grid article,
.faq-preview-list article {
  padding: 24px;
  border: 1px solid rgba(15, 34, 66, .08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(6, 16, 38, .07);
}

.overview-grid p,
.process-grid p,
.faq-preview-list p {
  margin-top: 10px;
}

.home-dark-section {
  overflow: hidden;
  padding: clamp(72px, 9vw, 108px) 0;
  color: #eef6ff;
  background: radial-gradient(circle at 70% 12%, rgba(9, 109, 255, .28), transparent 30%), #07051f;
}

.movie-dark {
  background: radial-gradient(circle at 18% 10%, rgba(36, 202, 210, .18), transparent 28%), #001f27;
}

.dark-copy {
  text-align: center;
}

.dark-copy h2 {
  color: #fff;
}

.dark-copy p {
  color: #9facbf;
}

.wide-carousel {
  width: min(1320px, 100%);
  margin: 44px auto 0;
  padding: 0 16px;
}

.wide-carousel img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.poster-feel img {
  border-radius: 10px;
}

.payment-support-card,
.process-section,
.faq-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(30px, 4vw, 54px);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.payment-tags,
.device-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.payment-tags span,
.device-list span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #0a55bc;
  background: #e8f1ff;
  font-weight: 900;
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.process-grid article {
  padding: 20px;
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-600);
  font-weight: 950;
}

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

.clean-head {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.devices-section > img {
  max-width: 900px;
  margin: 0 auto;
}

.device-list {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.pricing-section {
  position: relative;
}

.pricing-icons {
  display: block;
  width: min(190px, 42vw);
  height: auto;
  margin: -10px auto 28px;
  border-radius: 26px;
}

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

.home-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 342px;
  padding: 26px;
  border: 1px solid rgba(15, 34, 66, .09);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(6, 16, 38, .09);
}

.home-price-card.best {
  color: #fff;
  background: linear-gradient(180deg, #0d6eff, #071026);
  transform: translateY(-8px);
}

.home-price-card.best h3,
.home-price-card.best p {
  color: #fff;
}

.best-label {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #071026;
  background: #f4c75a;
  font-size: 12px;
  font-weight: 950;
}

.home-price-card .price {
  margin: 18px 0 8px;
  color: #071026;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.home-price-card .price span {
  font-size: 15px;
  font-weight: 850;
}

.home-price-card .button {
  margin-top: auto;
}

.home-page .button.light {
  color: var(--blue-600);
  background: #e8f1ff;
  box-shadow: none;
}

.faq-preview-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.final-cta {
  padding: clamp(74px, 9vw, 112px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 8, 27, .94), rgba(5, 8, 27, .72)),
    url("img/iptv-suomi-hero-nordic.jpg") center/cover no-repeat;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

@media (max-width: 1180px) {
  .home-page .premium-nav {
    grid-template-columns: auto auto;
    min-height: 70px;
  }

  .home-page .site-nav {
    top: calc(100% + 8px);
    justify-self: stretch;
  }

  .home-page .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .device-offer,
  .payment-support-card,
  .process-section,
  .faq-preview {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .home-page .premium-nav {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
    gap: 10px;
  }

  .home-page .header-brand {
    min-width: 0;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .home-page .header-brand img {
    width: 34px;
    height: 34px;
  }

  .home-page .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .home-page .header-cta {
    min-height: 40px;
    border-radius: 8px;
    font-size: 13px;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero-inner {
    padding: 66px 0 46px;
  }

  .hero-breadcrumb {
    font-size: 12px;
  }

  .home-page .button,
  .home-page .button.alt,
  .home-page .button.light {
    width: 100%;
    min-width: 0;
  }

  .intro-card,
  .service-card,
  .device-offer,
  .payment-support-card,
  .process-section,
  .faq-preview {
    padding: 24px;
    border-radius: 18px;
  }

  .overview-grid,
  .home-price-grid {
    grid-template-columns: 1fr;
  }

  .home-price-card.best {
    transform: none;
  }

  .wide-carousel {
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-snap-type: x mandatory;
  }

  .wide-carousel img {
    min-width: 760px;
    scroll-snap-align: start;
  }

  .payment-tags span,
  .device-list span {
    max-width: 100%;
  }
}


/* SEO content routes */
.seo-site .seo-hero{padding:76px 0;background:linear-gradient(135deg,#071026,#0a1633);color:#fff;text-align:center}
.seo-site .seo-hero h1{max-width:980px;margin:0 auto;color:#fff;font-size:clamp(38px,5.5vw,66px)}
.seo-site .seo-hero p{max-width:860px;margin:18px auto 0;color:#d7e5f7;font-size:18px}
.seo-link-row{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:24px}
.seo-link-row a,.toc a{padding:8px 12px;border-radius:999px;color:#0b66f0;background:#e8f1ff;font-weight:900}
.seo-article{max-width:960px;padding:56px 0}
.article-featured{width:100%;height:auto;border-radius:18px;box-shadow:0 22px 70px rgba(7,16,38,.13)}
.article-intro{margin-top:28px;color:#26344c;font-size:20px}
.seo-article section{margin-top:34px}
.seo-article h2{margin-bottom:14px;font-size:clamp(28px,3.6vw,42px)}
.seo-article p{margin-top:12px;color:#53637a}
.seo-article a:not(.button){color:#0b66f0;font-weight:850}
.toc{display:grid;gap:10px;margin:32px 0;padding:24px;border-radius:18px;background:#f1f7ff}
.toc h2{margin:0;color:#071026;font-size:24px}
.toc a{border-radius:10px;background:#fff}
.related-grid,.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.related-card,.blog-card{display:grid;gap:12px;padding:20px;border-radius:16px;background:#fff;box-shadow:0 18px 54px rgba(6,16,38,.08)}
.related-card span,.blog-card p{color:#66748a}
.blog-grid-section{padding:70px 0}
.blog-card img{width:100%;height:auto;border-radius:12px}
.blog-card span,.blog-card small{color:#0b66f0;font-weight:900}
.article-cta{padding:28px;border-radius:18px;color:#fff;background:linear-gradient(135deg,#0b66f0,#071026)}
.article-cta h2,.article-cta p{color:#fff}
@media (max-width: 900px){.related-grid,.blog-grid{grid-template-columns:1fr}.seo-article{padding:42px 0}}

/* Professional subscription cards */
.subscription-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.subscription-section .section-head {
  max-width: 820px;
}

.subscription-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.subscription-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(15, 34, 66, .1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 24px 70px rgba(7, 16, 38, .08);
}

.subscription-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0b66f0, #3fd3ff);
  opacity: .85;
}

.subscription-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #0b66f0;
  background: #e8f1ff;
  font-size: 16px;
  font-weight: 950;
}

.subscription-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #07517f;
  background: #e9fff8;
  font-size: 12px;
  font-weight: 950;
}

.subscription-card h3 {
  color: #071026;
  font-size: clamp(24px, 2.4vw, 30px);
}

.subscription-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 14px;
  color: #071026;
}

.subscription-price strong {
  font-size: clamp(46px, 4.5vw, 62px);
  line-height: .95;
  letter-spacing: 0;
}

.subscription-price span {
  color: #071026;
  font-size: 18px;
  font-weight: 900;
}

.subscription-card p {
  color: #5c6c84;
  font-size: 17px;
}

.subscription-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(15, 34, 66, .08);
  list-style: none;
}

.subscription-card li {
  position: relative;
  padding-left: 28px;
  color: #314057;
  font-weight: 750;
}

.subscription-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0b66f0;
  box-shadow: 0 0 0 5px rgba(11, 102, 240, .12);
}

.subscription-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 12px;
  color: #fff;
  background: #0b66f0;
  box-shadow: 0 16px 34px rgba(11, 102, 240, .26);
  font-size: 17px;
  font-weight: 950;
}

.subscription-button.secondary {
  color: #0b66f0;
  background: #e8f1ff;
  box-shadow: none;
}

.subscription-card-best {
  border-color: rgba(11, 102, 240, .34);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(63, 211, 255, .22), transparent 28%),
    linear-gradient(180deg, #126df1 0%, #071026 100%);
  box-shadow: 0 28px 88px rgba(7, 16, 38, .24);
}

.subscription-card-best::before {
  background: linear-gradient(90deg, #f4c75a, #3fd3ff);
}

.subscription-card-best .subscription-icon {
  color: #071026;
  background: #fff;
}

.subscription-card-best .subscription-tag {
  color: #071026;
  background: rgba(255, 255, 255, .9);
}

.subscription-card-best h3,
.subscription-card-best p,
.subscription-card-best li,
.subscription-card-best .subscription-price,
.subscription-card-best .subscription-price span {
  color: #fff;
}

.subscription-card-best ul {
  border-top-color: rgba(255, 255, 255, .2);
}

.subscription-card-best li::before {
  background: #f4c75a;
  box-shadow: 0 0 0 5px rgba(244, 199, 90, .18);
}

.best-ribbon {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #071026;
  background: #f4c75a;
  font-size: 13px;
  font-weight: 950;
}

.subscription-note {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(15, 34, 66, .08);
  border-radius: 16px;
  color: #53637a;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7, 16, 38, .05);
}

.subscription-note strong {
  color: #071026;
}

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

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

  .subscription-card {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }

  .subscription-button {
    width: 100%;
  }
}

/* Premium FAQ page */
.faq-premium-hero {
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(11, 102, 240, .14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.faq-premium-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.faq-premium-copy h1 {
  color: #071026;
  font-size: clamp(46px, 6vw, 76px);
}

.faq-premium-copy p {
  max-width: 650px;
  margin-top: 18px;
  color: #5d6d83;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
}

.faq-premium-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(7, 16, 38, .12);
}

.faq-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.faq-quick-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #0b66f0;
  background: #e8f1ff;
  font-weight: 900;
}

.faq-premium-section {
  padding: clamp(62px, 8vw, 96px) 0;
  background: #fff;
}

.faq-premium-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-side-panel {
  position: sticky;
  top: 116px;
  padding: 28px;
  border-radius: 20px;
  color: #eef6ff;
  background:
    radial-gradient(circle at 85% 12%, rgba(63, 211, 255, .22), transparent 32%),
    linear-gradient(180deg, #0b66f0, #071026);
  box-shadow: 0 24px 70px rgba(7, 16, 38, .18);
}

.faq-side-panel h2 {
  color: #fff;
  font-size: 26px;
}

.faq-side-panel p {
  margin: 14px 0 22px;
  color: #d7e6ff;
}

.faq-premium-list {
  display: grid;
  gap: 28px;
}

.faq-group {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(15, 34, 66, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(7, 16, 38, .07);
}

.faq-group h2 {
  margin-bottom: 18px;
  color: #071026;
  font-size: clamp(26px, 3vw, 36px);
}

.faq-premium-list .faq-item {
  border: 1px solid rgba(15, 34, 66, .08);
  border-radius: 14px;
  box-shadow: none;
}

.faq-premium-list .faq-item + .faq-item {
  margin-top: 12px;
}

.faq-premium-list .faq-item button {
  min-height: 64px;
  padding: 18px 22px;
  border-radius: 14px;
  color: #071026;
  background: #f7fbff;
  font-size: clamp(18px, 2vw, 22px);
}

.faq-premium-list .faq-item.is-open button {
  background: #e8f1ff;
}

.faq-premium-list .faq-item p {
  padding: 0 22px 22px;
  color: #53637a;
  font-size: 17px;
}

.faq-premium-list .faq-item p a {
  color: #0b66f0;
  font-weight: 900;
}

.faq-final-cta {
  background:
    linear-gradient(90deg, rgba(5, 8, 27, .95), rgba(7, 16, 38, .72)),
    url("img/iptv-suomi-faq-tuki.jpg") center/cover no-repeat;
}

@media (max-width: 980px) {
  .faq-premium-inner,
  .faq-premium-layout {
    grid-template-columns: 1fr;
  }

  .faq-side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-premium-hero {
    padding: 54px 0 62px;
  }

  .faq-premium-copy h1 {
    font-size: 42px;
  }

  .faq-premium-visual img,
  .faq-group,
  .faq-side-panel {
    border-radius: 18px;
  }

  .faq-premium-list .faq-item button {
    align-items: center;
    min-height: 58px;
    padding: 16px 18px;
  }

  .faq-premium-list .faq-item p {
    padding: 0 18px 18px;
  }
}


/* Main page professional refresh */
.main-improved {
  background: #f6f9fd;
  color: #102039;
}

.main-hero,
.main-section,
.main-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.main-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 42px;
  align-items: center;
  padding: 76px 0 54px;
}

.main-hero-copy h1 {
  margin: 18px 0 18px;
  color: #075eea;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}

.main-hero-copy p,
.main-section-head p {
  max-width: 760px;
  color: #627089;
  font-size: clamp(18px, 2vw, 22px);
}

.main-hero-image {
  overflow: hidden;
  border-radius: 24px;
  background: #dcecff;
  box-shadow: 0 24px 70px rgba(8, 30, 70, .18);
}

.main-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.main-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.main-section {
  padding: 72px 0;
}

.main-section.white {
  background: #fff;
}

.main-section.tint {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
}

.main-section.navy {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: #06142f;
}

.main-section.navy .main-section-head h2,
.main-section.navy .main-card h3,
.main-section.navy .main-split h2 {
  color: #fff;
}

.main-section.navy .main-section-head p,
.main-section.navy .main-card p,
.main-section.navy .main-split p {
  color: #c4d3ea;
}

.main-section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.main-section-head h2 {
  margin: 14px 0 12px;
  color: #06142f;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.main-card,
.main-price-card,
.main-blog-card {
  border: 1px solid rgba(11, 108, 255, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 16, 38, .08);
}

.main-card {
  padding: 26px;
}

.main-card h2,
.main-card h3,
.main-price-card h3,
.main-blog-card h2 {
  margin: 0 0 10px;
  color: #06142f;
  line-height: 1.2;
  letter-spacing: 0;
}

.main-card p,
.main-price-card p,
.main-blog-card p {
  margin: 0 0 16px;
  color: #61708a;
}

.main-card a:not(.button),
.main-blog-card a:not(.button) {
  color: #0b6cff;
  font-weight: 800;
}

.main-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 34px;
  align-items: center;
}

.main-split img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(7, 16, 38, .12);
}

.main-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.main-check-list li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #24324a;
}

.main-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0b6cff;
}

.main-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.main-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

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

.main-price-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
}

.main-price-card.featured {
  color: #fff;
  background: linear-gradient(160deg, #1178ff, #06142f);
}

.main-price-card.featured h3,
.main-price-card.featured p {
  color: #fff;
}

.main-price-card .price {
  margin: 12px 0;
  color: #06142f;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.main-price-card .price span {
  font-size: 18px;
}

.main-price-card .button {
  width: 100%;
  margin-top: auto;
}

.best-label {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #06142f;
  background: #f4c75a;
  font-weight: 900;
}

.step {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #0b6cff;
  font-weight: 900;
}

.main-cta {
  margin-block: 72px;
  padding: 46px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #07142e, #0b6cff);
  box-shadow: 0 26px 70px rgba(7, 16, 38, .18);
}

.main-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.main-cta p {
  max-width: 720px;
  color: #d8e8ff;
}

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

.main-blog-card {
  overflow: hidden;
}

.main-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.main-blog-card span,
.main-blog-card h2,
.main-blog-card p,
.main-blog-card small,
.main-blog-card .button {
  margin-left: 22px;
  margin-right: 22px;
}

.main-blog-card span {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #0b6cff;
  font-weight: 900;
}

.main-blog-card small {
  display: block;
  margin-bottom: 18px;
  color: #7b8799;
}

.main-blog-card .button {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .main-hero,
  .main-split,
  .main-card-grid,
  .main-price-grid,
  .main-blog-grid {
    grid-template-columns: 1fr;
  }

  .main-hero {
    padding-top: 46px;
  }

  .main-price-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .main-hero,
  .main-section,
  .main-cta {
    width: min(100% - 28px, 1180px);
  }

  .main-section {
    padding: 50px 0;
  }

  .main-section.tint,
  .main-section.navy {
    width: 100%;
    padding-inline: 14px;
  }

  .main-card,
  .main-price-card,
  .main-cta {
    border-radius: 18px;
    padding: 22px;
  }

  .main-actions,
  .center-actions {
    flex-direction: column;
  }

  .main-actions .button,
  .center-actions .button,
  .main-cta .button {
    width: 100%;
  }
}


/* Extra main page content depth */
.main-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.main-detail-grid article,
.main-timeline article {
  padding: 24px;
  border: 1px solid rgba(11, 108, 255, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 16, 38, .08);
}

.main-detail-grid h3,
.main-timeline h3 {
  margin: 0 0 10px;
  color: #06142f;
  line-height: 1.2;
}

.main-detail-grid p,
.main-timeline p {
  margin: 0;
  color: #61708a;
}

.main-detail-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: #0b6cff;
  font-weight: 900;
}

.main-section.navy .main-detail-grid article,
.main-section.navy .main-timeline article {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.main-section.navy .main-detail-grid h3,
.main-section.navy .main-timeline h3 {
  color: #fff;
}

.main-section.navy .main-detail-grid p,
.main-section.navy .main-timeline p {
  color: #c4d3ea;
}

.main-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.main-highlight-row span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}

.main-highlight-row.light span {
  color: #06142f;
  background: #eaf3ff;
}

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

.main-timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #0b6cff;
  font-weight: 900;
}

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

@media (max-width: 640px) {
  .main-detail-grid,
  .main-timeline {
    grid-template-columns: 1fr;
  }
}

/* Final navigation fixes */
.site-nav {
  flex-wrap: nowrap;
}

.site-nav .nav-link {
  white-space: nowrap;
}

@media (min-width: 1181px) {
  .premium-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    min-width: 0;
  }
}

@media (max-width: 1180px) {
  .premium-nav,
  .home-page .premium-nav,
  .nav-wrap {
    grid-template-columns: auto auto;
    min-height: 70px;
  }

  .site-nav,
  .home-page .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(8, 15, 34, .98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  }

  .site-nav.is-open,
  .home-page .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-link,
  .home-page .site-nav .nav-link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 11px 12px;
    border-radius: 12px;
    color: #edf5ff;
    background: transparent;
    font-size: 15px;
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link[aria-current="page"],
  .home-page .site-nav .nav-link:hover,
  .home-page .site-nav .nav-link[aria-current="page"] {
    color: #fff;
    background: rgba(11, 108, 255, .2);
  }

  .header-cta,
  .home-page .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .home-page .site-nav {
    left: 12px;
    right: 12px;
  }
}
