/**
 * Fast Web Studio — branded product landing
 */
.fast-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--white);
  padding: clamp(40px, 7vw, 80px) 0 clamp(48px, 8vw, 88px);
}

.fast-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 222, 0, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(227, 25, 31, 0.16) 0%, transparent 40%);
  pointer-events: none;
}

.fast-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.55;
}

.fast-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.fast-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: 16px;
  text-decoration: none;
}

.fast-hero__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 10px;
  font-size: 13px;
  font-family: ui-monospace, monospace;
  font-weight: 800;
}

.fast-hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 222, 0, 0.28);
  border-radius: var(--radius-full);
  background: rgba(255, 222, 0, 0.08);
}

.fast-hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: var(--leading-tight);
  color: var(--white);
  margin-bottom: 12px;
}

.fast-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.fast-hero__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--leading-relaxed);
  margin-bottom: 22px;
  max-width: 52ch;
}

.fast-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.fast-hero__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 104px;
  backdrop-filter: blur(8px);
}

.fast-hero__stat strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--yellow);
}

.fast-hero__stat span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
}

.fast-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fast-hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.fast-hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ── Device mockup ── */
.fast-hero__visual {
  position: relative;
  min-height: 280px;
}

.fast-mock {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
}

.fast-mock__browser {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.fast-mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fast-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fast-mock__dot--r { background: #e3191f; }
.fast-mock__dot--y { background: var(--yellow); }
.fast-mock__dot--g { background: #10b981; }

.fast-mock__url {
  flex: 1;
  margin-inline-start: 8px;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-family: ui-monospace, monospace;
  padding: 4px 10px;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fast-mock__screen {
  background: linear-gradient(180deg, #f8f8f6 0%, #ecece8 100%);
  padding: 18px 16px 20px;
  min-height: 220px;
}

.fast-mock__bar {
  height: 8px;
  border-radius: 999px;
  background: #1d1d1b;
  width: 42%;
  margin-bottom: 10px;
}

.fast-mock__line {
  height: 5px;
  border-radius: 999px;
  background: #cfcfc8;
  margin-bottom: 7px;
}

.fast-mock__line--short { width: 62%; }
.fast-mock__line--mid { width: 78%; }

.fast-mock__cta {
  display: inline-block;
  width: 88px;
  height: 28px;
  margin: 12px 0 16px;
  border-radius: 8px;
  background: var(--yellow);
  box-shadow: 0 6px 16px rgba(255, 222, 0, 0.28);
}

.fast-mock__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.fast-mock__card {
  height: 64px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e4e4dc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.fast-mock__card:nth-child(2) {
  border-color: var(--yellow);
  box-shadow: 0 6px 14px rgba(255, 222, 0, 0.2);
}

.fast-mock__phone {
  position: absolute;
  inset-inline-end: -8px;
  bottom: -18px;
  width: 108px;
  height: 196px;
  background: #111;
  border: 3px solid #2a2a2a;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 10px 8px 8px;
  z-index: 2;
}

.fast-mock__notch {
  width: 36px;
  height: 5px;
  background: #2a2a2a;
  border-radius: 999px;
  margin: 0 auto 8px;
}

.fast-mock__phone-screen {
  height: calc(100% - 18px);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #f3f3ee 100%);
  padding: 10px 8px;
}

.fast-mock__phone-bar {
  height: 5px;
  width: 70%;
  background: #1d1d1b;
  border-radius: 999px;
  margin-bottom: 8px;
}

.fast-mock__phone-block {
  height: 42px;
  border-radius: 6px;
  background: #ecece6;
  margin-bottom: 6px;
}

.fast-mock__phone-btn {
  height: 16px;
  width: 58%;
  border-radius: 5px;
  background: var(--red);
  margin-top: 10px;
}

.fast-mock__badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  animation: fast-float 4.2s var(--ease-out) infinite;
}

.fast-mock__badge--live {
  top: 18px;
  inset-inline-start: -12px;
  background: var(--yellow);
  color: var(--navy);
}

.fast-mock__badge--price {
  bottom: 36px;
  inset-inline-start: 18px;
  background: var(--white);
  color: var(--navy);
  animation-delay: 1.1s;
}

.fast-mock__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: fast-pulse 1.8s ease-out infinite;
}

@keyframes fast-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes fast-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.fast-trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  border-top: 3px solid var(--yellow);
}

.fast-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fast-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fast-trust-item__icon {
  color: var(--yellow);
  flex-shrink: 0;
}

.fast-trust-item strong {
  display: block;
  font-size: var(--text-sm);
}

.fast-trust-item span {
  font-size: 11px;
  opacity: 0.82;
  line-height: 1.4;
}

.fast-hosting-bar {
  background: #f6f6f4;
  border-block-end: 1px solid var(--gray-200);
  padding: 16px 0;
}

.fast-hosting-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fast-hosting-bar__text strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.fast-hosting-bar__text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.fast-hosting-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.fast-hosting-bar__cta {
  flex-shrink: 0;
  font-size: 13px;
  padding: 10px 18px;
}

.fast-hosting-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.fast-plan-card__features a,
.fast-faq__item a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fast-plan-card__features a:hover,
.fast-faq__item a:hover {
  color: #1e40af;
}

.fast-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fast-trust-item__icon {
  opacity: 0.9;
  flex-shrink: 0;
}

.fast-trust-item strong {
  display: block;
  font-size: var(--text-sm);
}

.fast-trust-item span {
  font-size: 11px;
  opacity: 0.85;
  line-height: 1.4;
}

.fast-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.fast-nav__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.fast-nav__item:hover,
.fast-nav__item.active {
  background: var(--navy);
  color: var(--white);
}

.fast-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fast-for-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
}

.fast-for-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.fast-for-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #111;
  color: var(--yellow);
  margin-bottom: 14px;
}

.fast-for-card h3 {
  font-size: var(--text-base);
  margin-bottom: 8px;
}

.fast-for-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.fast-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.fast-plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.fast-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fast-plan-card--featured {
  border-color: var(--navy);
  box-shadow: 0 12px 36px rgba(29, 29, 27, 0.16);
}

.fast-plan-card__ribbon {
  position: absolute;
  top: 14px;
  inset-inline-start: -30px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 38px;
  transform: rotate(-45deg);
  z-index: 2;
}

html[dir="ltr"] .fast-plan-card__ribbon {
  inset-inline-start: auto;
  left: -30px;
}

.fast-plan-card__preview {
  height: 92px;
  padding: 14px 16px 0;
  background:
    linear-gradient(180deg, #f4f4f1 0%, #eaeae4 100%);
  border-bottom: 1px solid var(--gray-200);
}

.fast-plan-mini {
  height: 78px;
  border-radius: 10px 10px 0 0;
  background: #fff;
  border: 1px solid #ddd;
  border-bottom: 0;
  padding: 10px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}

.fast-plan-mini__row {
  height: 5px;
  border-radius: 999px;
  background: #1d1d1b;
  width: 38%;
  margin-bottom: 7px;
}

.fast-plan-mini__grid {
  display: grid;
  gap: 5px;
}

.fast-plan-mini--landing .fast-plan-mini__grid {
  grid-template-columns: 1fr;
}

.fast-plan-mini--landing .fast-plan-mini__cell {
  height: 28px;
}

.fast-plan-mini--store .fast-plan-mini__grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.fast-plan-mini--store .fast-plan-mini__cell {
  height: 36px;
}

.fast-plan-mini--pro .fast-plan-mini__grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.fast-plan-mini--pro .fast-plan-mini__cell {
  height: 36px;
}

.fast-plan-mini__cell {
  border-radius: 5px;
  background: #eee;
}

.fast-plan-mini__cell.is-accent {
  background: var(--yellow);
}

.fast-plan-card__head {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px 16px;
}

.fast-plan-card--featured .fast-plan-card__head {
  background: #111;
}

.fast-plan-card__head h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.fast-plan-card__head p {
  font-size: 12px;
  opacity: 0.82;
  margin: 0;
}

.fast-plan-card__price {
  padding: 20px 22px 16px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.fast-plan-card__old {
  display: block;
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 15px;
}

.fast-plan-card__current {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.fast-plan-card__save {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(227, 25, 31, 0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.fast-plan-card__period {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.fast-plan-card__features {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
  flex: 1;
}

.fast-plan-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  display: flex;
  gap: 8px;
}

.fast-plan-card__features li::before {
  content: '';
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-top: 3px;
  background-color: #10b981;
  mask: var(--bd-icon-check) no-repeat center / contain;
  -webkit-mask: var(--bd-icon-check) no-repeat center / contain;
}

.fast-plan-card__features a,
.fast-faq__item a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fast-plan-card__features a:hover,
.fast-faq__item a:hover {
  color: var(--red);
}

.fast-plan-card__foot {
  padding: 8px 20px 20px;
  text-align: center;
}

.fast-plan-card__foot .btn {
  width: 100%;
  margin-bottom: 10px;
}

.fast-plan-contact {
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 600;
}

.fast-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.fast-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.fast-compare th,
.fast-compare td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.fast-compare thead th {
  background: #111;
  color: var(--white);
  font-weight: 700;
}

.fast-compare thead th:last-child {
  background: var(--yellow);
  color: var(--navy);
}

.fast-compare tbody th {
  text-align: start;
  font-weight: 600;
  color: var(--navy);
  background: #fafafa;
}

.fast-compare tbody td:last-child {
  background: rgba(255, 222, 0, 0.08);
  font-weight: 600;
}

.fast-compare-yes {
  color: #10b981;
  font-weight: 700;
}

.fast-compare-no {
  color: #9ca3af;
}

html[dir="rtl"] .fast-plan-card__ribbon {
  transform: rotate(45deg);
}

.fast-path {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.fast-path::before {
  content: '';
  position: absolute;
  top: 28px;
  inset-inline: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--navy));
  z-index: 0;
}

html[dir="rtl"] .fast-path::before {
  background: linear-gradient(-90deg, var(--yellow), var(--navy));
}

.fast-path__step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}

.fast-path__num {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 0 6px #fff;
}

.fast-path__step:last-child .fast-path__num {
  background: var(--yellow);
  color: var(--navy);
}

.fast-path__step h3 {
  font-size: var(--text-sm);
  margin-bottom: 8px;
  color: var(--navy);
}

.fast-path__step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

.fast-why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.fast-why-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.fast-why-card__icon {
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--yellow);
}

.fast-why-card h3 {
  font-size: var(--text-base);
  margin-bottom: 8px;
}

.fast-why-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.fast-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.fast-showcase-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  min-height: 148px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.fast-showcase-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.fast-showcase-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 4px;
}

.fast-showcase-card__logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.fast-showcase-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #111;
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
}

.fast-showcase-card__cat {
  font-size: 11px;
  color: var(--text-muted);
}

.fast-showcase-card strong {
  font-size: var(--text-sm);
  color: var(--navy);
}

.fast-showcase-card__link {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  margin-top: auto;
}

.fast-faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 0;
}

.fast-faq__item summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
}

.fast-faq__item summary::-webkit-details-marker {
  display: none;
}

.fast-faq__item[open] {
  border-color: var(--navy);
}

.fast-faq__item p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

.fast-cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
}

.fast-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 222, 0, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(227, 25, 31, 0.14) 0%, transparent 40%);
  pointer-events: none;
}

.fast-cta-banner h2,
.fast-cta-banner p,
.fast-cta-banner__actions {
  position: relative;
  z-index: 1;
}

.fast-cta-banner h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.fast-cta-banner p {
  opacity: 0.9;
  margin-bottom: 22px;
}

.fast-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.fast-cta-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.fast-cta-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--yellow);
  color: var(--yellow);
}

.fast-dev-cta-wrap {
  margin-top: 2rem;
}

.fast-dev-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(29, 29, 27, 0.12);
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: var(--white);
}

.fast-dev-cta__text h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 0 0 0.35rem;
  color: var(--white);
}

.fast-dev-cta__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 42rem;
}

.fast-dev-cta .btn {
  flex-shrink: 0;
}

.fast-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-dropdown);
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
  border-top: 3px solid var(--yellow);
}

.fast-sticky-cta.is-visible {
  transform: translateY(0);
}

.fast-sticky-cta span {
  font-weight: 600;
  font-size: var(--text-sm);
}

@media (max-width: 1100px) {
  .fast-for-grid,
  .fast-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fast-path {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fast-path::before {
    display: none;
  }

  .fast-path__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    text-align: start;
    padding: 10px 0;
    border-inline-start: 3px solid var(--yellow);
    padding-inline-start: 16px;
    margin-inline-start: 12px;
  }

  .fast-path__num {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin: 0;
    box-shadow: none;
  }

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

@media (max-width: 1024px) {
  .fast-hero .container {
    grid-template-columns: 1fr;
  }

  .fast-hero__visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .fast-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .fast-plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .fast-plan-card--featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .fast-trust-bar__inner,
  .fast-for-grid,
  .fast-why-grid,
  .fast-showcase-grid {
    grid-template-columns: 1fr;
  }

  .fast-speed-grid,
  .fast-scope-grid,
  .fast-deliverables-grid,
  .fast-guides-grid {
    grid-template-columns: 1fr;
  }

  .fast-hero__title {
    font-size: var(--text-2xl);
  }

  .fast-mock__phone {
    width: 86px;
    height: 158px;
    inset-inline-end: 0;
  }

  .fast-mock__badge--live {
    inset-inline-start: 0;
  }

  .fast-cta-banner__actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fast-mock__badge,
  .fast-mock__pulse,
  .fast-plan-card,
  .fast-for-card,
  .fast-showcase-card,
  .fast-why-card,
  .fast-guide-card,
  .fast-guide-card__media img {
    animation: none;
    transition: none;
  }
}

/* Hero image */
.fast-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 20px 48px rgba(30, 64, 175, 0.14);
}

/* Speed section */
.fast-speed-visual {
  margin: 0 0 28px;
}

.fast-speed-visual img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-inline: auto;
  border-radius: 20px;
}

.fast-speed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fast-speed-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-top: 3px solid #3b82f6;
  border-radius: var(--radius-md, 12px);
  padding: 20px 18px;
}

.fast-speed-card__icon {
  display: inline-flex;
  color: #1e40af;
  margin-bottom: 10px;
}

.fast-speed-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy, #0f172a);
}

.fast-speed-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Scope hub */
.fast-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fast-scope-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  border-radius: var(--radius-md, 12px);
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.fast-scope-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.fast-scope-card__icon {
  color: #2563eb;
}

.fast-scope-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.fast-scope-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.fast-scope-card__cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e40af;
}

/* Deliverables */
.fast-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fast-deliverable {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff 0%, #eff6ff 100%);
  border: 1px solid #dbeafe;
}

.fast-deliverable__icon {
  display: inline-flex;
  color: #1d4ed8;
  margin-bottom: 8px;
}

.fast-deliverable h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.fast-deliverable p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Guides */
.fast-guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fast-guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  text-decoration: none;
  color: #fff;
  background: #1a1a18;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.fast-guide-card:hover,
.fast-guide-card:focus-visible {
  border-color: transparent;
  box-shadow: none;
}

.fast-guide-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.fast-guide-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 12, 10, 0.08) 18%, rgba(12, 12, 10, 0.9) 100%);
  pointer-events: none;
}

.fast-guide-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 0;
  background: #111;
}

.fast-guide-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.55s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.fast-guide-card:hover .fast-guide-card__media img,
.fast-guide-card:focus-visible .fast-guide-card__media img {
  transform: scale(1.1);
}

.fast-guide-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 20px 22px 22px;
}

.fast-guide-card__body strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.fast-guide-card__body span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}

.fast-guide-card:hover .fast-guide-card__body em,
.fast-guide-card:focus-visible .fast-guide-card__body em {
  color: #fff;
}

/* Showcase thumbs */
.fast-showcase-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.fast-showcase-card__thumb img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .fast-speed-grid,
  .fast-scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .fast-deliverables-grid,
  .fast-guides-grid {
    grid-template-columns: 1fr;
  }

  .fast-guide-card {
    min-height: 240px;
  }

  .fast-guide-card__body {
    padding: 18px 20px 20px;
  }

  .fast-guide-card__media {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .fast-speed-grid,
  .fast-scope-grid {
    grid-template-columns: 1fr;
  }
}
