:root {
  --bg: #0f0a32;
  --bg-2: #0a061f;
  --panel: #171041;
  --panel-2: #1d164d;
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #d7d7e6;
  --soft: #a9aac7;
  --accent: #f9c225;
  --accent-2: #f48c06;
  --green: #25d366;
  --irish: #2fbf71;
  --cyan: #4fd1c5;
  --danger: #ff6b6b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --header-h: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 191, 113, 0.12), transparent 20rem),
    radial-gradient(circle at top left, rgba(249, 194, 37, 0.13), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2) 70%);
  font-family: inherit;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

p,
li {
  color: var(--muted);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

strong {
  color: #fff;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(47, 191, 113, 0.18), rgba(249, 194, 37, 0.14), rgba(244, 140, 6, 0.06)),
    rgba(10, 6, 31, 0.9);
  background-size: 100% 3px, auto;
  background-repeat: no-repeat;
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand > span:not(.brand-mark) {
  display: grid;
  line-height: 1.05;
}

.brand > span:not(.brand-mark)::after {
  content: "IPTV Ireland";
  margin-top: 0.18rem;
  color: var(--irish);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #12091d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(244, 140, 6, 0.28);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.82rem 1.15rem;
  border: 0;
  border-radius: 999px;
  color: #150d21;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(244, 140, 6, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(244, 140, 6, 0.32);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn.whatsapp {
  background: linear-gradient(135deg, var(--green), #8ff0b4);
  color: #061b0e;
}

.btn.small {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}

.btn svg,
.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section.tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section.alt {
  background: rgba(5, 3, 18, 0.44);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.lead {
  max-width: 720px;
  margin-top: 1.1rem;
  color: #ececf8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(1.6rem, 3.5vw, 2.8rem);
}

.ireland-hero {
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(115deg, rgba(15, 10, 50, 0.88), rgba(10, 6, 31, 0.6)),
    radial-gradient(circle at 82% 20%, rgba(249, 194, 37, 0.18), transparent 24rem),
    radial-gradient(circle at 65% 75%, rgba(47, 191, 113, 0.16), transparent 22rem);
}

.ireland-hero::before {
  content: "";
  position: absolute;
  inset: 5% auto auto 52%;
  width: min(38vw, 430px);
  aspect-ratio: 0.72;
  opacity: 0.12;
  border: 2px solid rgba(47, 191, 113, 0.8);
  border-radius: 47% 40% 44% 52% / 26% 36% 46% 58%;
  transform: rotate(-12deg);
  box-shadow: 0 0 70px rgba(47, 191, 113, 0.2);
  pointer-events: none;
  z-index: -1;
}

.ireland-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 191, 113, 0.7), rgba(249, 194, 37, 0.75), rgba(244, 140, 6, 0.55), transparent);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.97fr);
  gap: clamp(2rem, 4.6vw, 3.7rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.9vw, 4.45rem);
}

.local-trust {
  position: relative;
  display: inline-flex;
  max-width: 650px;
  margin: 0.2rem 0 0;
  padding: 0.7rem 0.9rem 0.7rem 1rem;
  border-left: 3px solid var(--irish);
  border-radius: 0 12px 12px 0;
  color: #f5f5fb;
  background: rgba(47, 191, 113, 0.08);
  font-weight: 800;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-btn {
  min-height: 54px;
  padding-inline: 1.35rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-badges li {
  border-color: rgba(249, 194, 37, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.hero-badges li:nth-child(2),
.hero-badges li:nth-child(4) {
  border-color: rgba(47, 191, 113, 0.32);
}

.hero-media {
  position: relative;
  min-height: 360px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.tv-hero-card {
  border-color: rgba(249, 194, 37, 0.22);
  background:
    linear-gradient(145deg, rgba(249, 194, 37, 0.12), rgba(47, 191, 113, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.tv-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 191, 113, 0.18), transparent 28%, rgba(249, 194, 37, 0.13) 52%, rgba(244, 140, 6, 0.14));
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-card img {
  display: block;
  width: 100%;
}

.floating-stat {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(220px, 48%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(10, 6, 31, 0.88);
  box-shadow: var(--shadow);
}

.floating-stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.floating-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual-badge {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 6, 31, 0.82);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.badge-test {
  left: 1rem;
  top: 1rem;
  color: #140d20;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.badge-quality {
  right: 1rem;
  top: 1rem;
}

.badge-firestick {
  left: 1rem;
  bottom: 1rem;
}

.badge-whatsapp {
  right: 1rem;
  bottom: 1rem;
  color: #061b0e;
  background: linear-gradient(135deg, var(--green), #8ff0b4);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.grid.auto {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.stat-strip {
  padding: 1rem 0;
}

.ireland-proof {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 3, 18, 0.18);
}

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

.stat-item,
.card,
.price-card,
.testimonial,
.device-card,
.faq-group,
.article-card,
.toc,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.feature-card,
.content-card,
.premium-testimonial,
.article-card,
.price-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.content-card::before,
.premium-testimonial::before,
.article-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--irish), var(--accent), var(--accent-2));
  opacity: 0.8;
}

.stat-item {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  padding: 1.15rem 1.2rem 1.15rem 1.45rem;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 1.05rem;
  background:
    radial-gradient(circle at 8% 22%, rgba(37, 211, 102, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.034));
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--irish), var(--accent));
}

.stat-item strong {
  display: block;
  margin: 0;
  font-size: clamp(1.62rem, 2vw, 2.05rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.stat-copy {
  min-width: 0;
}

.stat-label {
  display: block;
  margin-top: 0.18rem;
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 900;
  line-height: 1.12;
}

.stat-copy p {
  margin: 0.45rem 0 0;
  display: block;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(249, 194, 37, 0.14);
  color: var(--accent);
}

.icon-box.green {
  background: rgba(37, 211, 102, 0.13);
  color: var(--irish);
}

.icon-box.cyan {
  background: rgba(79, 209, 197, 0.13);
  color: var(--cyan);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.icon-box img {
  width: 26px;
  height: 26px;
  display: block;
}

.stat-item .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), 0 14px 28px rgba(0, 0, 0, 0.22);
}

.stat-item .icon-box svg {
  width: 28px;
  height: 28px;
}

.stat-item .whatsapp-logo-box {
  background: transparent;
  box-shadow: none;
}

.stat-item .whatsapp-logo-box img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 16px rgba(37, 211, 102, 0.28));
}

.card,
.price-card,
.testimonial,
.article-card,
.contact-panel {
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
}

.card h3,
.price-card h3,
.testimonial h3,
.article-card h3 {
  margin: 0.85rem 0 0.55rem;
}

.card p:last-child,
.price-card p:last-child,
.testimonial p:last-child,
.article-card p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
}

.check {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #101015;
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 900;
}

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

.device-card {
  min-height: 132px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.device-card span {
  color: #fff;
  font-weight: 800;
}

.device-card small {
  color: var(--soft);
  font-weight: 800;
}

.device-card svg {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.device-card .android-logo {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

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

.local-value {
  padding-top: clamp(2.4rem, 5vw, 4.5rem);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  border-color: rgba(249, 194, 37, 0.58);
  background:
    linear-gradient(145deg, rgba(249, 194, 37, 0.15), rgba(47, 191, 113, 0.06)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 60px rgba(244, 140, 6, 0.2);
}

.price-card .tag {
  align-self: flex-start;
  margin-bottom: 0.85rem;
}

.price {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.price small {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.plan-note {
  min-height: 3rem;
  color: #f2f2fb;
  font-weight: 750;
}

.pricing-footnote {
  margin: 1.3rem 0 0;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.94rem;
}

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

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 4.2rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #140d20;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 1.2rem;
  font-weight: 950;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(249, 194, 37, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(249, 194, 37, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.trial-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 2rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(47, 191, 113, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(249, 194, 37, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.trial-band .cta-row {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.trial-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.65rem;
}

.trial-points span {
  display: inline-flex;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

.cta-band h2 {
  max-width: 760px;
}

.cta-band p {
  max-width: 680px;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.premium-testimonial p {
  margin-top: 0.75rem;
  color: #f2f2fb;
  font-size: 1.03rem;
  font-weight: 750;
}

.testimonial-name {
  color: var(--soft);
  font-weight: 900;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-meta strong {
  display: block;
}

.testimonial-meta span {
  color: var(--soft);
  font-size: 0.9rem;
}

.blog-meta,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(249, 194, 37, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.page-hero {
  padding: clamp(2.8rem, 7vw, 5.6rem) 0 clamp(2.4rem, 5vw, 3.8rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumbs li {
  color: var(--soft);
}

.breadcrumbs a {
  color: #fff;
  font-weight: 800;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: var(--soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-group {
  padding: clamp(1rem, 2vw, 1.4rem);
}

.faq-group + .faq-group {
  margin-top: 1rem;
}

.faq-group h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question .faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(249, 194, 37, 0.14);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1rem;
}

.toc h2 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

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

.toc a {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.toc a:hover {
  color: #fff;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.article-content h3 {
  margin: 1.6rem 0 0.65rem;
}

.article-content a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-content .cta-band a {
  text-decoration: none;
}

.seo-link-panel {
  margin: 1.6rem 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.seo-link-panel p {
  margin: 0 0 0.7rem;
  color: #fff;
  font-weight: 900;
}

.seo-link-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.seo-link-panel a {
  color: var(--accent);
  font-weight: 900;
}

.note {
  padding: 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  color: #fff;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.9rem;
}

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

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 3, 18, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.85fr 0.9fr;
  gap: 2rem;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-weight: 900;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.92rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: auto;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: block;
}

.whatsapp-float {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.32), 0 8px 20px rgba(0, 0, 0, 0.34);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

  .site-nav a {
    padding-inline: 0.55rem;
  }

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

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

  .trial-band {
    grid-template-columns: 1fr;
  }

  .trial-points {
    max-width: 420px;
  }
}

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

  .nav-wrap {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 6, 31, 0.98);
  }

  .nav-wrap.is-open {
    display: block;
  }

  .site-nav {
    display: grid;
    gap: 0.35rem;
  }

  .site-nav a {
    border-radius: 12px;
    padding: 0.9rem 1rem;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
  }

  .ireland-hero::before {
    inset: 44% auto auto 58%;
    width: min(58vw, 330px);
  }

  .toc {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .hero {
    padding-top: 1.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 13vw, 3.15rem);
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .trust-badges,
  .stat-grid,
  .pricing-grid,
  .device-grid,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    display: grid;
    gap: 0.55rem;
  }

  .stat-grid {
    display: grid;
  }

  .stat-item {
    min-height: auto;
  }

  .ireland-proof {
    transform: none;
    margin-bottom: 0;
    padding-top: 0.75rem;
  }

  .hero-visual-badge {
    font-size: 0.72rem;
    padding: 0.45rem 0.55rem;
  }

  .badge-firestick {
    bottom: 0.65rem;
  }

  .badge-whatsapp {
    bottom: 0.65rem;
  }

  .trial-points {
    grid-template-columns: 1fr;
  }

  .plan-note {
    min-height: 0;
  }

  .floating-stat {
    position: static;
    width: auto;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
  }

  .comparison-table {
    min-width: 640px;
  }

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

  .mobile-sticky-cta {
    display: block;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .whatsapp-float {
    width: 62px;
    height: 62px;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

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