.elementor-12758 .elementor-element.elementor-element-b5d8f0a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5b40800 *//* ==================================================================
   IPTV NORGE PREMIUM — MOBIL INSTALLASJONSSENTER
   (Android telefon/nettbrett + iPhone/iPad)
   Pure CSS3. Design tokens shared with the rest of the site.
   ================================================================== */

/* ---------------------------------------------------------------
   1. RESET & BASE
--------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette */
  --c-primary: #2563EB;
  --c-primary-dark: #1D4ED8;
  --c-bg: #FFFFFF;
  --c-bg-secondary: #F8FAFC;
  --c-heading: #0F172A;
  --c-text: #475569;
  --c-accent: #14B8A6;
  --c-border: #E2E8F0;

  /* Typography */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* Layout */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1280px;
}

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.ipm-body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.ipm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------
   2. LAYOUT HELPERS
--------------------------------------------------------------- */
.ipm-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.ipm-section-head {
  max-width: 700px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.ipm-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  color: var(--c-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ipm-eyebrow--light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.ipm-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--c-heading);
  margin-bottom: 20px;
}

.ipm-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--c-heading);
  margin-bottom: 14px;
}

.ipm-h2--light { color: #fff; }

.ipm-section-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: var(--c-text);
}

.ipm-section-sub--light { color: rgba(255, 255, 255, .8); }

.ipm-lede {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  color: var(--c-text);
  max-width: 58ch;
  margin-bottom: 26px;
}
.ipm-lede strong { color: var(--c-heading); font-weight: 600; }

/* ---------------------------------------------------------------
   3. BUTTONS
--------------------------------------------------------------- */
.ipm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}

.ipm-btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(37, 99, 235, .45), 0 0 0 1px rgba(255, 255, 255, .06) inset;
}
.ipm-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -10px rgba(37, 99, 235, .55), 0 0 0 1px rgba(255, 255, 255, .08) inset;
}
.ipm-btn--primary:active { transform: translateY(-1px) scale(.98); }
.ipm-btn--primary svg { transition: transform .35s var(--ease); }
.ipm-btn--primary:hover svg { transform: translateX(4px); }

.ipm-btn--secondary {
  background: #fff;
  color: var(--c-heading);
  border: 1.5px solid var(--c-border);
}
.ipm-btn--secondary:hover {
  border-color: var(--c-accent);
  background: rgba(20, 184, 166, .06);
  color: var(--c-accent);
  transform: translateY(-3px);
}
.ipm-btn--secondary:active { transform: translateY(-1px) scale(.98); }

.ipm-btn--cta {
  background: linear-gradient(135deg, #fff, #F1F5F9);
  color: var(--c-primary);
  padding: 19px 40px;
  font-size: 17px;
  box-shadow: 0 20px 46px -14px rgba(0, 0, 0, .45);
}
.ipm-btn--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -14px rgba(0, 0, 0, .55);
}
.ipm-btn--cta:active { transform: translateY(-1px) scale(.98); }
.ipm-btn--cta svg { transition: transform .35s var(--ease); }
.ipm-btn--cta:hover svg { transform: translateX(4px); }

.ipm-device-card__cta { width: 100%; margin-top: auto; }

/* ---------------------------------------------------------------
   4. ENTRANCE ANIMATIONS (pure CSS, run once on page load)
--------------------------------------------------------------- */
@keyframes ipmFadeUp {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes ipmFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -12px, 0); }
}

@keyframes ipmPulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: .9;  transform: scale(1.06); }
}

@keyframes ipmGradientDrift {
  0%, 100% { background-position: 0% 0%, 100% 100%; }
  50%      { background-position: 15% 10%, 85% 90%; }
}

.ipm-anim-fade-up {
  opacity: 0;
  animation: ipmFadeUp .8s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

/* ---------------------------------------------------------------
   5. SECTION 1 — HERO
--------------------------------------------------------------- */
.ipm-hero {
  position: relative;
  padding: clamp(90px, 11vw, 130px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-bg-secondary);
}

.ipm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(55% 55% at 85% 10%, rgba(37, 99, 235, .10), transparent 65%),
    radial-gradient(45% 45% at 5% 90%, rgba(20, 184, 166, .10), transparent 70%);
  background-size: 160% 160%;
  animation: ipmGradientDrift 22s ease-in-out infinite;
}

.ipm-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .5;
  z-index: -1;
  animation: ipmFloat 9s ease-in-out infinite;
}
.ipm-shape--1 {
  width: 140px; height: 140px;
  top: 6%; left: 3%;
  background: radial-gradient(circle, rgba(37, 99, 235, .14), transparent 70%);
}
.ipm-shape--2 {
  width: 100px; height: 100px;
  bottom: 8%; right: 6%;
  background: radial-gradient(circle, rgba(20, 184, 166, .16), transparent 70%);
  animation-delay: 3s;
}

.ipm-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}

.ipm-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
}
.ipm-hero__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-heading);
}
.ipm-hero__perk svg { width: 16px; height: 16px; color: var(--c-accent); flex-shrink: 0; }

.ipm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Premium CSS-only smartphone illustration */
.ipm-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipm-illustration {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipm-illustration__glow {
  position: absolute;
  inset: 10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .2), transparent 70%);
  filter: blur(40px);
  animation: ipmPulse 5s ease-in-out infinite;
}

.ipm-illustration__phone {
  position: relative;
  width: 58%;
  aspect-ratio: 9 / 18.5;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 32px;
  box-shadow: 0 34px 70px -18px rgba(15, 23, 42, .28);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: ipmFloat 6s ease-in-out infinite;
}

.ipm-illustration__notch {
  display: block;
  width: 40px;
  height: 6px;
  border-radius: 999px;
  background: var(--c-border);
  margin: 0 auto 6px;
}

.ipm-illustration__bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  opacity: .16;
}
.ipm-illustration__bar--1 { width: 88%; opacity: .9; }
.ipm-illustration__bar--2 { width: 62%; }
.ipm-illustration__bar--3 { width: 74%; }

.ipm-illustration__play {
  margin-top: auto;
  align-self: center;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(37, 99, 235, .5);
}

.ipm-orbit {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: 0 16px 34px -12px rgba(15, 23, 42, .2);
  color: var(--c-primary);
  animation: ipmFloat 7s ease-in-out infinite;
}
.ipm-orbit--1 { top: 6%; left: -2%; animation-delay: .3s; }
.ipm-orbit--2 { bottom: 22%; left: -6%; color: var(--c-accent); animation-delay: 1.6s; }
.ipm-orbit--3 { top: 40%; right: -6%; animation-delay: 2.8s; }

/* ---------------------------------------------------------------
   6. SECTION 2 — CHOOSE YOUR DEVICE
--------------------------------------------------------------- */
.ipm-devices {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg);
}

.ipm-devices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ipm-device-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-secondary);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.ipm-device-card:hover {
  transform: translate3d(0, -8px, 0);
  background: #fff;
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 30px 60px -26px rgba(37, 99, 235, .32);
}

.ipm-device-card__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: 0 14px 28px -14px rgba(15, 23, 42, .2);
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
}
.ipm-device-card__icon svg { width: 60%; height: 60%; }
.ipm-device-card:hover .ipm-device-card__icon { transform: scale(1.06) rotate(-3deg); }

.ipm-device-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.ipm-device-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 24px;
}

.ipm-app-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.ipm-app-list__item { display: block; }

.ipm-app-list__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ipm-app-list__link:hover,
.ipm-app-list__link:focus-visible {
  transform: translateX(6px);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 12px 26px -18px rgba(37, 99, 235, .35);
}

.ipm-app-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.ipm-app-list__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-heading);
}

/* ---------------------------------------------------------------
   7. SECTION 3 — COMPARISON TABLE
--------------------------------------------------------------- */
.ipm-compare {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg-secondary);
}

.ipm-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  -webkit-overflow-scrolling: touch;
}

.ipm-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.ipm-table thead th {
  text-align: left;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-heading);
  background: var(--c-bg-secondary);
  border-bottom: 1px solid var(--c-border);
}

.ipm-table tbody th,
.ipm-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle;
}

.ipm-table tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--c-heading);
}

.ipm-table tbody tr:last-child th,
.ipm-table tbody tr:last-child td { border-bottom: none; }

.ipm-table tbody tr {
  transition: background .3s var(--ease);
}
.ipm-table tbody tr:hover { background: var(--c-bg-secondary); }

.ipm-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}
.ipm-chip--android { background: rgba(20, 184, 166, .12); color: var(--c-accent); }
.ipm-chip--ios { background: rgba(37, 99, 235, .1); color: var(--c-primary); }

.ipm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(20, 184, 166, .12);
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 700;
}

.ipm-dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-bg-secondary);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 700;
}

.ipm-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--c-bg-secondary);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
}

.ipm-callout__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, .1);
  color: var(--c-primary);
}

.ipm-callout p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-text);
}
.ipm-callout strong { color: var(--c-heading); }

/* ---------------------------------------------------------------
   8. SECTION 4 — MINIMUM REQUIREMENTS
--------------------------------------------------------------- */
.ipm-requirements {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg);
}

.ipm-req__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ipm-req-card {
  background: var(--c-bg-secondary);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: ipmFadeUp .7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.ipm-req-card:hover {
  transform: translate3d(0, -6px, 0);
  background: #fff;
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 20px 44px -24px rgba(37, 99, 235, .3);
}

.ipm-req-card__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(20, 184, 166, .12));
  color: var(--c-primary);
  transition: transform .4s var(--ease);
}
.ipm-req-card:hover .ipm-req-card__icon { transform: scale(1.1); }

.ipm-req-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 6px;
  letter-spacing: -.005em;
}

.ipm-req-card__text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--c-text);
}

/* ---------------------------------------------------------------
   9. SECTION 5 — COMMON PROBLEMS
--------------------------------------------------------------- */
.ipm-issues {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg-secondary);
}

.ipm-issues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ipm-issue-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: ipmFadeUp .7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.ipm-issue-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 22px 46px -24px rgba(37, 99, 235, .28);
}

.ipm-issue-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(20, 184, 166, .12));
  color: var(--c-primary);
  margin-bottom: 16px;
  transition: transform .4s var(--ease);
}
.ipm-issue-card:hover .ipm-issue-card__icon { transform: scale(1.08) rotate(-4deg); }

.ipm-issue-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.ipm-issue-card__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.ipm-issue-card__label:not(:first-of-type) { margin-top: 14px; }

.ipm-issue-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}

/* ---------------------------------------------------------------
   10. SECTION 6 — WHY THESE APPS
--------------------------------------------------------------- */
.ipm-why {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg);
}

.ipm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ipm-why-card {
  background: var(--c-bg-secondary);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: ipmFadeUp .7s var(--ease) forwards;
  animation-delay: var(--d, 0s);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.ipm-why-card:hover {
  transform: translate3d(0, -6px, 0);
  background: #fff;
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 22px 46px -22px rgba(37, 99, 235, .28);
}

.ipm-why-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(20, 184, 166, .12));
  color: var(--c-accent);
  margin-bottom: 16px;
  transition: transform .4s var(--ease);
}
.ipm-why-card:hover .ipm-why-card__icon { transform: scale(1.1); }

.ipm-why-card__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.ipm-why-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
}

/* ---------------------------------------------------------------
   11. SECTION 7 — FAQ (native <details>/<summary>, no JS)
--------------------------------------------------------------- */
.ipm-faq {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--c-bg-secondary);
}

.ipm-faq__container { max-width: 860px; }

.ipm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ipm-faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 6px 24px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ipm-faq-item:hover { border-color: rgba(37, 99, 235, .3); }
.ipm-faq-item[open] {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 20px 44px -26px rgba(37, 99, 235, .3);
}

.ipm-faq-item__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ipm-faq-item__q::-webkit-details-marker { display: none; }

.ipm-faq-item__icon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  flex-shrink: 0;
}
.ipm-faq-item__icon::before,
.ipm-faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.ipm-faq-item__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.ipm-faq-item__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.ipm-faq-item[open] .ipm-faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.ipm-faq-item[open] .ipm-faq-item__icon::before { transform: translate(-50%, -50%) rotate(180deg); }

.ipm-faq-item__a {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
  padding: 0 0 20px;
  animation: ipmFadeUp .4s var(--ease) forwards;
}

/* ---------------------------------------------------------------
   12. SECTION 8 — NEXT STEP
--------------------------------------------------------------- */
.ipm-next {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-heading);
  text-align: center;
}

.ipm-next__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(37, 99, 235, .38), transparent 65%),
    radial-gradient(55% 55% at 85% 80%, rgba(20, 184, 166, .3), transparent 65%);
  background-size: 160% 160%;
  animation: ipmGradientDrift 20s ease-in-out infinite;
}

.ipm-next__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
}

.ipm-next__inner .ipm-section-sub { margin-bottom: 34px; }
.ipm-next__inner .ipm-h2 { margin-bottom: 16px; }
.ipm-next__inner strong { color: #fff; font-weight: 700; }

/* ==================================================================
   13. RESPONSIVE — TABLET
   ================================================================== */
@media (max-width: 1180px) {
  .ipm-hero__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .ipm-hero__content { display: flex; flex-direction: column; align-items: center; }
  .ipm-hero__perks { justify-content: center; }
  .ipm-hero__actions { justify-content: center; }
  .ipm-lede { margin-left: auto; margin-right: auto; }

  .ipm-devices__grid { grid-template-columns: 1fr; }
  .ipm-req__grid { grid-template-columns: repeat(3, 1fr); }
  .ipm-issues__grid { grid-template-columns: 1fr; }
  .ipm-why__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================================
   14. RESPONSIVE — MOBILE
   ================================================================== */
@media (max-width: 640px) {
  .ipm-hero { padding-top: 84px; }
  .ipm-hero__actions { flex-direction: column; width: 100%; }
  .ipm-hero__actions .ipm-btn { width: 100%; }
  .ipm-hero__perks { flex-direction: column; align-items: flex-start; }

  .ipm-device-card { padding: 28px 22px; }

  .ipm-req__grid { grid-template-columns: repeat(2, 1fr); }
  .ipm-why__grid { grid-template-columns: 1fr; }

  .ipm-faq-item { padding: 4px 18px; }
  .ipm-faq-item__q { font-size: 15px; padding: 16px 34px 16px 0; }

  .ipm-btn--cta { width: 100%; }
}

/* ==================================================================
   15. ACCESSIBILITY — REDUCED MOTION
   ================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .ipm-anim-fade-up,
  .ipm-req-card,
  .ipm-issue-card,
  .ipm-why-card {
    opacity: 1 !important;
    transform: none !important;
  }
}/* End custom CSS */