@charset "UTF-8";

:root {
  --if-orange: #ff4b12;
  --if-orange-dark: #e83d0c;
  --if-orange-soft: #fff0e9;
  --if-orange-pale: #fff7f3;
  --if-green: #18a957;
  --if-blue: #1e6aa8;
  --if-yellow: #ffb000;
  --if-red: #ef3e17;
  --if-text: #090909;
  --if-muted: #565656;
  --if-soft: #777777;
  --if-line: #e8e8e8;
  --if-line-strong: #cfcfcf;
  --if-surface: #ffffff;
  --if-dark: #101211;
  --if-dark-2: #171a19;
  --if-shadow: 0 10px 24px rgba(15, 15, 15, 0.08);
  --if-shadow-strong: 0 18px 40px rgba(15, 15, 15, 0.14);
  --if-shadow-orange: 0 12px 22px rgba(255, 75, 18, 0.22);
  --if-radius: 8px;
  --if-container: 1180px;
  --if-font: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--if-text);
  font-family: var(--if-font);
  font-size: 14px;
  line-height: 1.45;
  color-scheme: light;
}

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

svg {
  width: 1em;
  height: 1em;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

svg use {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:where(a, button, input):focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 75, 18, 0.18);
}

.if-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.if-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 12px;
  border-radius: var(--if-radius);
  background: var(--if-text);
  color: #fff;
  font-weight: 900;
  transition: transform 150ms ease;
}

.if-skip-link:focus-visible {
  transform: translateY(0);
}

.if-container {
  width: min(calc(100% - 60px), var(--if-container));
  margin-inline: auto;
}

.if-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 230, 230, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.if-header.is-scrolled {
  border-color: rgba(226, 226, 226, 0.72);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 18, 17, 0.08);
}

.if-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.if-brand img {
  width: 168px;
  height: auto;
}

.if-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  margin-left: auto;
  color: #070707;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.if-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: color 150ms ease, transform 150ms ease;
}

.if-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--if-orange);
  transition: transform 180ms ease;
}

.if-menu a:hover,
.if-menu a:focus-visible {
  color: var(--if-orange);
  transform: translateY(-1px);
}

.if-menu a:hover::after,
.if-menu a:focus-visible::after {
  transform: scaleX(1);
}

.if-nav-actions,
.if-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.if-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.if-button svg {
  width: 18px;
  height: 18px;
}

.if-button:hover,
.if-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--if-shadow);
}

.if-button-primary {
  background: linear-gradient(180deg, #ff5b18 0%, var(--if-orange) 100%);
  color: #ffffff;
  box-shadow: var(--if-shadow-orange);
}

.if-button-primary:hover,
.if-button-primary:focus-visible {
  background: linear-gradient(180deg, #ff6424 0%, #ef3d0f 100%);
}

.if-button-ghost,
.if-button-secondary {
  border-color: #b7b7b7;
  background: #ffffff;
  color: #111111;
}

.if-button-ghost:hover,
.if-button-secondary:hover {
  border-color: rgba(255, 75, 18, 0.55);
  color: var(--if-orange);
}

.if-button-large {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.if-button-light {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--if-orange-dark);
}

.if-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 75, 18, 0.12), transparent 310px),
    radial-gradient(circle at 20% 78%, rgba(255, 75, 18, 0.05), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #fffefd 100%);
}

.if-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(520px, 0.58fr);
  align-items: start;
  gap: 28px;
}

.if-eyebrow {
  margin: 0 0 13px;
  color: var(--if-orange-dark);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.if-hero h1 {
  max-width: 485px;
  margin: 0;
  color: #050505;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.if-hero h1 span {
  display: block;
  color: var(--if-orange);
}

.if-hero-text {
  max-width: 430px;
  margin: 16px 0 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.48;
}

.if-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
}

.if-trust-bullets span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 700;
}

.if-trust-bullets svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  border-radius: 999px;
  background: var(--if-orange);
  color: #ffffff;
}

.if-hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

.if-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.if-social-proof img {
  width: 147px;
  height: 31px;
  object-fit: contain;
}

.if-social-proof > div {
  display: grid;
  gap: 1px;
}

.if-stars {
  color: var(--if-orange);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.if-social-proof strong,
.if-social-proof small {
  display: block;
  color: #202020;
  font-size: 13px;
  line-height: 1.18;
}

.if-social-proof strong {
  font-weight: 900;
}

.if-social-proof small {
  font-weight: 600;
}

.if-product-stage {
  position: relative;
  min-height: 378px;
  padding: 10px 0 0;
}

.if-laptop {
  position: relative;
  width: min(100%, 650px);
  margin-left: auto;
}

.if-laptop-screen {
  position: relative;
  height: 350px;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  overflow: hidden;
  border: 10px solid #070707;
  border-bottom-width: 13px;
  border-radius: 18px 18px 8px 8px;
  background: #f7f7f7;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
}

.if-laptop-base {
  width: 78%;
  height: 16px;
  margin: -1px auto 0;
  border-radius: 0 0 44px 44px;
  background:
    linear-gradient(90deg, transparent 0 40%, rgba(0, 0, 0, 0.22) 40% 60%, transparent 60% 100%),
    linear-gradient(180deg, #e8e8e8, #a5a5a5);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.16);
}

.if-dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 14px 12px;
  background: #141515;
  color: #e9e9e9;
  font-size: 10px;
  font-weight: 750;
}

.if-dashboard-sidebar img {
  width: 72px;
  margin-bottom: 9px;
  border-radius: 3px;
}

.if-dashboard-sidebar span {
  position: relative;
  min-height: 13px;
  padding-left: 13px;
  white-space: nowrap;
}

.if-dashboard-sidebar span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.if-dashboard-sidebar .is-active {
  color: var(--if-orange);
}

.if-dashboard {
  min-width: 0;
  padding: 16px;
  background: #fbfbfb;
}

.if-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.if-dashboard-top strong {
  font-size: 17px;
  font-weight: 950;
}

.if-dashboard-top span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 35%, #ffd7bb 0 28%, #79422c 29% 45%, #ffffff 46% 100%);
  box-shadow: inset 0 0 0 1px #ddd;
}

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

.if-kpis article,
.if-chart-card,
.if-donut-card,
.if-status-card,
.if-orders-card,
.if-phone article {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.if-kpis article {
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 9px 10px;
}

.if-kpis small,
.if-phone small {
  color: #575757;
  font-size: 9px;
  font-weight: 700;
}

.if-kpis strong,
.if-phone strong {
  color: #111111;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.if-kpis em,
.if-phone em {
  color: #08763a;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
}

.if-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 10px;
  margin-top: 10px;
}

.if-chart-card,
.if-donut-card,
.if-status-card,
.if-orders-card {
  min-height: 116px;
  padding: 10px;
}

.if-chart-card strong,
.if-donut-card strong,
.if-status-card strong,
.if-orders-card strong {
  display: block;
  margin-bottom: 9px;
  color: #171717;
  font-size: 11px;
  font-weight: 950;
}

.if-line-chart {
  position: relative;
  height: 78px;
  border-left: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  background:
    linear-gradient(#eeeeee 1px, transparent 1px) 0 0 / 100% 19px,
    #ffffff;
}

.if-line-chart::before {
  content: "";
  position: absolute;
  inset: 4px 6px 4px 6px;
  background:
    linear-gradient(154deg, transparent 0 8%, var(--if-orange) 9% 10%, transparent 11% 22%, var(--if-orange) 23% 24%, transparent 25% 37%, var(--if-orange) 38% 39%, transparent 40% 52%, var(--if-orange) 53% 54%, transparent 55% 67%, var(--if-orange) 68% 69%, transparent 70% 83%, var(--if-orange) 84% 85%, transparent 86%);
  opacity: 0.75;
}

.if-line-chart i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--if-orange);
  box-shadow: 0 0 0 1px var(--if-orange);
}

.if-chart-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 4px;
  color: #606060;
  font-size: 8px;
}

.if-chart-days b {
  font-weight: 700;
  text-align: center;
}

.if-donut-wrap {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.if-donut {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: conic-gradient(var(--if-blue) 0 50%, var(--if-green) 50% 80%, var(--if-yellow) 80% 90%, var(--if-orange) 90% 100%);
  box-shadow: inset 0 0 0 16px #ffffff;
}

.if-donut-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
}

.if-donut-card li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 6px;
  color: #303030;
  font-weight: 750;
}

.if-donut-card li span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--if-blue);
}

.if-donut-card li:nth-child(2) span {
  background: var(--if-green);
}

.if-donut-card li:nth-child(3) span {
  background: var(--if-yellow);
}

.if-donut-card li:nth-child(4) span {
  background: var(--if-orange);
}

.if-status-card p,
.if-orders-card p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 7px 0 0;
  color: #202020;
  font-size: 10px;
  font-weight: 700;
}

.if-orders-card p {
  grid-template-columns: 40px 1fr auto;
}

.if-orders-card em {
  color: #08763a;
  font-style: normal;
  font-weight: 900;
}

.if-orders-card p:first-of-type em {
  color: var(--if-orange);
}

.if-phone {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 151px;
  min-height: 291px;
  padding: 16px 9px 8px;
  border: 8px solid #090909;
  border-radius: 25px;
  background: #f8f8f8;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.if-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: #090909;
}

.if-phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 2px 0 10px;
  color: #111111;
  font-size: 8px;
}

.if-phone-top b {
  font-size: 10px;
  font-weight: 950;
}

.if-phone-top i {
  justify-self: end;
  width: 8px;
  height: 8px;
  border: 1px solid #111;
  border-radius: 999px;
}

.if-phone article {
  position: relative;
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
  padding: 10px;
}

.if-phone article em {
  position: absolute;
  top: 13px;
  right: 9px;
}

.if-phone nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 5px;
  border-top: 1px solid #e8e8e8;
  color: #696969;
  font-size: 7px;
  font-weight: 750;
  text-align: center;
}

.if-phone nav span:first-child {
  color: var(--if-orange);
}

.if-section {
  padding: 22px 0;
}

.if-section-title {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
}

.if-section-title h2,
.if-why h2,
.if-final-cta h2 {
  margin: 0;
  color: #111111;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.14;
}

.if-section-title p {
  margin: 6px 0 0;
  color: #2f2f2f;
  font-size: 14px;
}

.if-feature-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

.if-feature-grid article {
  min-height: 124px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  padding: 15px 9px 11px;
  border: 1px solid rgba(227, 227, 227, 0.92);
  border-radius: var(--if-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff),
    radial-gradient(circle at 50% 0%, rgba(255, 75, 18, 0.06), transparent 72%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.if-feature-grid article:hover,
.if-feature-grid article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 75, 18, 0.45);
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.08);
}

.if-feature-grid svg {
  width: 36px;
  height: 36px;
  color: var(--if-orange);
  transition: transform 180ms ease;
}

.if-feature-grid article:hover svg {
  transform: translateY(-1px) scale(1.04);
}

.if-feature-grid h3 {
  margin: 3px 0 0;
  color: #111111;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.if-feature-grid p {
  margin: 0;
  color: #262626;
  font-size: 11px;
  line-height: 1.42;
}

.if-segments {
  padding-top: 12px;
}

.if-segment-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.if-segment-grid a {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  overflow: hidden;
  padding: 0 12px 12px;
  border-radius: 7px;
  background: #080808;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.if-segment-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg) center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 220ms ease;
}

.if-segment-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.96) 100%);
}

.if-segment-grid a:hover,
.if-segment-grid a:focus-visible {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.if-segment-grid a:hover::before,
.if-segment-grid a:focus-visible::before {
  transform: scale(1.1);
}

.if-segment-grid svg,
.if-segment-grid strong {
  position: relative;
  z-index: 1;
}

.if-segment-grid svg {
  width: 30px;
  height: 30px;
  color: var(--if-orange);
}

.if-segment-grid strong {
  font-size: 16px;
  font-weight: 950;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.if-plans-why {
  padding: 22px 0 16px;
}

.if-plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.61fr) minmax(320px, 0.39fr);
  gap: 34px;
  align-items: start;
}

.if-plans-column,
.if-why {
  min-width: 0;
}

.if-plans-column .if-section-title {
  max-width: 720px;
  margin-bottom: 14px;
}

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

.if-plan {
  position: relative;
  min-height: 346px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 19px 17px 15px;
  border: 1px solid rgba(226, 226, 226, 0.96);
  border-radius: var(--if-radius);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.if-plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 75, 18, 0.35);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.09);
}

.if-plan.is-featured {
  border-color: rgba(255, 75, 18, 0.58);
  box-shadow: 0 20px 34px rgba(255, 75, 18, 0.14);
}

.if-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 21px;
  display: grid;
  place-items: center;
  border-radius: 7px 7px 0 0;
  background: var(--if-orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.if-plan.is-featured {
  padding-top: 29px;
}

.if-plan-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--if-orange);
}

.if-plan-head svg {
  width: 26px;
  height: 26px;
}

.if-plan h3 {
  margin: 0;
  color: var(--if-orange);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.if-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 2px 0 0;
  color: #111111;
  line-height: 1;
}

.if-price strong {
  font-size: 27px;
  font-weight: 950;
}

.if-price span {
  font-size: 13px;
  font-weight: 850;
}

.if-price-pro {
  display: grid;
  gap: 2px;
  text-align: center;
}

.if-plan-desc {
  min-height: 48px;
  margin: 0;
  color: #202020;
  font-size: 11px;
  line-height: 1.38;
  text-align: center;
}

.if-includes {
  margin-top: 2px;
  color: #141414;
  font-size: 11px;
  font-weight: 950;
  text-align: center;
}

.if-plan ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.if-plan li {
  position: relative;
  padding-left: 17px;
  color: #191919;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.22;
}

.if-plan li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 5px;
  transform: rotate(-45deg);
  border-left: 2px solid var(--if-orange);
  border-bottom: 2px solid var(--if-orange);
}

.if-plan-button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: auto;
  padding-inline: 8px;
  border: 1px solid var(--if-orange);
  border-radius: 5px;
  background: var(--if-orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.if-plan-button:hover,
.if-plan-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--if-shadow-orange);
}

.if-plan-button-outline {
  background: #ffffff;
  color: var(--if-orange);
}

.if-plan-compare {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: var(--if-radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
}

.if-compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #eeeeee;
  background: linear-gradient(90deg, rgba(255, 75, 18, 0.08), transparent);
}

.if-compare-head strong {
  color: #111111;
  font-size: 13px;
  font-weight: 950;
}

.if-compare-head span {
  color: #545454;
  font-size: 11px;
  font-weight: 750;
}

.if-compare-grid {
  display: grid;
  grid-template-columns: minmax(130px, 1.1fr) repeat(3, minmax(72px, 0.8fr));
  align-items: stretch;
}

.if-compare-grid > * {
  min-height: 33px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 11px;
  line-height: 1.2;
}

.if-compare-grid > *:nth-child(4n) {
  border-right: 0;
}

.if-compare-grid > *:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.if-compare-grid span {
  color: #202020;
  font-weight: 900;
}

.if-compare-grid b {
  justify-content: center;
  color: var(--if-orange);
  font-weight: 950;
  text-align: center;
}

.if-compare-grid em {
  justify-content: center;
  color: #252525;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.if-plan-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px solid #eeeeee;
}

.if-plan-perks span {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #151515;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.if-plan-perks svg {
  width: 22px;
  height: 22px;
  color: #111111;
}

.if-why {
  padding-left: 28px;
  border-left: 1px solid #e7e7e7;
}

.if-why h2 {
  margin-bottom: 20px;
  font-size: 25px;
  text-align: left;
}

.if-why h2 span {
  color: var(--if-orange);
}

.if-why-list {
  display: grid;
  gap: 17px;
}

.if-why-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 2px 0;
  transition: transform 180ms ease;
}

.if-why-list article:hover {
  transform: translateX(3px);
}

.if-why-list article > svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #eeeeee;
  border-radius: 999px;
  background: #ffffff;
  color: var(--if-orange);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.if-why-list article:hover > svg {
  transform: scale(1.04);
  box-shadow: 0 12px 22px rgba(255, 75, 18, 0.13);
}

.if-why h3 {
  margin: 0 0 4px;
  color: #121212;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.18;
}

.if-why p {
  margin: 0;
  color: #242424;
  font-size: 12px;
  line-height: 1.38;
}

.if-access {
  padding: 8px 0 12px;
  background: #ffffff;
}

.if-access-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  border: 1px solid #ececec;
  border-radius: var(--if-radius);
  background:
    linear-gradient(90deg, rgba(255, 75, 18, 0.08), transparent 44%),
    #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.if-access-kicker {
  margin: 0 0 4px;
  color: var(--if-orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.if-access h2 {
  margin: 0;
  color: #111111;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.12;
}

.if-access p {
  max-width: 760px;
  margin: 7px 0 0;
  color: #2e2e2e;
  font-size: 12px;
  line-height: 1.42;
}

.if-access-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.if-proof {
  padding: 16px 0 18px;
}

.if-proof .if-section-title {
  margin-bottom: 8px;
}

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

.if-proof-grid article {
  min-height: 103px;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 9px 10px;
  border-right: 1px solid #e8e8e8;
  transition: transform 180ms ease;
}

.if-proof-grid article:hover {
  transform: translateY(-2px);
}

.if-proof-grid article:last-child {
  border-right: 0;
}

.if-proof-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.if-proof-brand span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--if-orange);
  border-radius: 999px;
  background: #121212;
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
}

.if-proof-brand strong {
  color: #151515;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}

.if-proof-grid small {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--if-orange-soft);
  color: var(--if-orange-dark);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.if-proof-grid p {
  margin: 0;
  color: #242424;
  font-size: 11px;
  line-height: 1.34;
}

.if-final-cta {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.18), transparent 190px),
    linear-gradient(90deg, #ff5a14 0%, #ff470d 55%, #f13a08 100%);
  color: #ffffff;
}

.if-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.55;
}

.if-final-cta-inner {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.if-final-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.if-final-icon svg {
  width: 32px;
  height: 32px;
}

.if-final-cta h2 {
  color: #ffffff;
  font-size: 21px;
}

.if-final-cta p {
  max-width: 620px;
  margin: 3px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.if-cta-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.if-cta-bullets span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 850;
}

.if-footer {
  padding: 25px 0 12px;
  background: linear-gradient(180deg, var(--if-dark) 0%, #111413 100%);
  color: #ffffff;
}

.if-footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) minmax(100px, 0.7fr) minmax(130px, 0.88fr) minmax(160px, 0.9fr) minmax(190px, 1fr);
  gap: 28px;
  align-items: start;
}

.if-footer-brand img {
  width: 150px;
  height: auto;
}

.if-footer p,
.if-footer a,
.if-footer span,
.if-footer small,
.if-footer address {
  color: rgba(255, 255, 255, 0.78);
}

.if-footer p {
  max-width: 260px;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
}

.if-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.if-footer nav,
.if-footer address,
.if-newsletter {
  display: grid;
  gap: 5px;
  font-style: normal;
}

.if-footer a,
.if-footer address span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
}

.if-footer a {
  transition: color 150ms ease, transform 150ms ease;
}

.if-footer a:hover,
.if-footer a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.if-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
}

.if-footer-social a {
  width: 24px;
  height: 24px;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
}

.if-newsletter {
  position: relative;
}

.if-newsletter p {
  margin-top: 0;
}

.if-newsletter label {
  position: relative;
  display: block;
  margin-top: 6px;
}

.if-newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.if-newsletter input {
  width: 100%;
  min-height: 38px;
  padding: 0 48px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.if-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.if-newsletter button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--if-orange);
  color: #ffffff;
}

.if-newsletter button svg {
  width: 20px;
  height: 20px;
}

.if-footer-bottom {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  animation: if-fade-up 520ms ease both;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes if-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (min-width: 1220px) {
  body {
    font-size: 15px;
  }

  .if-hero h1 {
    font-size: 44px;
  }

  .if-hero-text {
    font-size: 17px;
  }

  .if-product-stage {
    min-height: 380px;
  }

  .if-laptop-screen {
    height: 350px;
  }
}

@media (max-width: 1100px) {
  .if-container {
    width: min(calc(100% - 56px), 1000px);
  }

  .if-menu {
    gap: 18px;
  }

  .if-nav-actions {
    gap: 8px;
  }

  .if-nav-actions .if-button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .if-hero-grid {
    grid-template-columns: minmax(300px, 0.39fr) minmax(500px, 0.61fr);
    gap: 18px;
  }

  .if-laptop {
    width: min(100%, 585px);
  }

  .if-laptop-screen {
    height: 334px;
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .if-dashboard {
    padding: 12px;
  }

  .if-phone {
    width: 135px;
    min-height: 270px;
  }

  .if-hero h1 {
    font-size: 38px;
  }

  .if-hero-text {
    font-size: 15px;
  }

  .if-trust-bullets {
    gap: 8px;
  }

  .if-trust-bullets span {
    gap: 6px;
    font-size: 10.5px;
  }

  .if-button-large {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .if-segment-grid a {
    min-height: 86px;
    gap: 6px;
    padding: 0 8px 10px;
  }

  .if-segment-grid svg {
    width: 24px;
    height: 24px;
  }

  .if-segment-grid strong {
    font-size: 13px;
  }

  .if-plan-button {
    font-size: 10.5px;
  }

  .if-compare-grid {
    grid-template-columns: minmax(116px, 1.1fr) repeat(3, minmax(64px, 0.8fr));
  }

  .if-compare-grid > * {
    padding-inline: 7px;
    font-size: 10px;
  }

  .if-hero-actions {
    gap: 10px;
  }

  .if-hero-actions .if-button:first-child {
    min-width: 185px;
  }

  .if-hero-actions .if-button:nth-child(2) {
    min-width: 150px;
  }

  .if-why h2 {
    font-size: 22px;
  }
}

@media (max-width: 960px) {
  .if-nav {
    min-height: auto;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .if-menu {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .if-nav-actions {
    margin-left: auto;
  }
}

@media (max-width: 960px) {
  .if-hero {
    padding-top: 28px;
  }

  .if-hero-grid {
    grid-template-columns: 1fr;
  }

  .if-hero h1,
  .if-hero-text {
    max-width: 680px;
  }

  .if-product-stage {
    min-height: 356px;
  }

  .if-laptop {
    margin-inline: auto;
  }

  .if-phone {
    right: 4%;
  }

  .if-plan-grid,
  .if-proof-grid {
    grid-template-columns: 1fr;
  }

  .if-plan-compare {
    overflow-x: auto;
  }

  .if-compare-grid {
    min-width: 520px;
  }

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

  .if-why {
    padding-left: 0;
    border-left: 0;
  }

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

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

  .if-access-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .if-access-actions {
    justify-content: flex-start;
  }

  .if-proof-grid article {
    border-right: 0;
    border-bottom: 1px solid #eeeeee;
  }

  .if-final-cta-inner {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .if-final-cta .if-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .if-container {
    width: min(calc(100% - 32px), 660px);
  }

  .if-brand img {
    width: 148px;
  }

  .if-nav-actions {
    width: 100%;
    justify-content: stretch;
  }

  .if-nav-actions .if-button {
    flex: 1 1 0;
  }

  .if-access-actions {
    flex-wrap: wrap;
  }

  .if-access-actions .if-button {
    flex: 1 1 180px;
  }

  .if-compare-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .if-hero h1 {
    font-size: 36px;
  }

  .if-hero-text {
    font-size: 16px;
  }

  .if-trust-bullets {
    gap: 10px 18px;
  }

  .if-social-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .if-product-stage {
    min-height: 380px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .if-laptop {
    width: 650px;
    max-width: none;
    margin: 0;
    transform: scale(0.76);
    transform-origin: top left;
  }

  .if-laptop-screen {
    height: 350px;
    min-height: 0;
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .if-dashboard-sidebar {
    grid-template-columns: none;
    gap: 11px;
    align-items: start;
    padding: 14px 12px;
    overflow: visible;
  }

  .if-phone {
    position: absolute;
    right: auto;
    left: 52%;
    bottom: 22px;
    width: 132px;
    min-height: 286px;
    margin: 0;
  }

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

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

  .if-plan-perks,
  .if-why-list,
  .if-footer-grid {
    grid-template-columns: 1fr;
  }

  .if-why h2 {
    font-size: 22px;
  }
}

@media (max-width: 460px) {
  .if-container {
    width: min(calc(100% - 22px), 420px);
  }

  .if-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px 14px;
    overflow-x: visible;
    font-size: 13px;
    white-space: normal;
  }

  .if-menu a {
    min-height: 30px;
  }

  .if-button,
  .if-hero-actions .if-button {
    width: 100%;
  }

  .if-hero h1 {
    font-size: 31px;
  }

  .if-section-title h2,
  .if-final-cta h2 {
    font-size: 20px;
  }

  .if-feature-grid,
  .if-segment-grid {
    grid-template-columns: 1fr;
  }

  .if-product-stage {
    min-height: 350px;
  }

  .if-laptop {
    transform: scale(0.56);
  }

  .if-phone {
    left: auto;
    right: 8px;
    bottom: 18px;
    width: 118px;
    min-height: 260px;
    padding-inline: 7px;
    border-width: 6px;
    border-radius: 22px;
  }

  .if-segment-grid a {
    min-height: 112px;
  }

  .if-plan {
    padding-inline: 14px;
  }

  .if-plan-compare {
    overflow-x: visible;
  }

  .if-compare-grid {
    min-width: 0;
    grid-template-columns: minmax(92px, 1.1fr) repeat(3, minmax(48px, 0.72fr));
  }

  .if-compare-grid > * {
    padding: 7px 5px;
    font-size: 9px;
  }

  .if-cta-bullets {
    gap: 5px;
  }

  .if-why-list article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .if-why-list article > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .if-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .if-final-cta .if-button {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 360px) {
  .if-brand img {
    width: 136px;
  }

  .if-laptop {
    transform: scale(0.46);
  }

  .if-product-stage {
    min-height: 320px;
  }

  .if-phone {
    right: 0;
    width: 108px;
    min-height: 242px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
