/* =========================================================
   FOR VENDORS — styles.css
========================================================= */

.fv-main {
  overflow-x: hidden;
}

/* ================================================================
   HERO
================================================================ */

.fv-hero {
  background: var(--fv-hero-bg);
  padding: 130px 0 60px;
}

.fv-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.fv-hero-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--fv-hero-label-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--body-font-family);
}

.fv-hero-title {
  margin: 0 0 22px;
  color: var(--fv-hero-text);
  font-weight: 600;
}

.fv-hero-title span {
  color: var(--fv-hero-title-accent);
}

.fv-hero-text {
  margin: 0 auto 36px;
  max-width: 600px;
  color: var(--fv-hero-text-muted);
}

.fv-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.vendor-button-design-hero {
  background-color: #111111;
  color: var(--color-secondary);
}

.vendor-button-design-hero:hover {
    background-color: #111111;
}

.fv-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}



.fv-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--fv-hero-border-color);
  margin-top: 10px;
}

.fv-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.fv-hero-stat strong {
  display: block;
  color: var(--color-secondary);
  font-family: var(--display-font-family);
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 6px;
}

.fv-hero-stat span {
  color: var(--fv-hero-text-muted);
  font-size: 0.82rem;
  font-family: var(--body-font-family);
}

.fv-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--fv-hero-divider-bg);
  flex-shrink: 0;
}

/* ── Hub visual ──────────────────────────────── */

.fv-hero-visual {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 960 / 360;
  height: auto;
  margin: 52px auto 0;
}

.fv-hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.fv-hero-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  background: var(--card-bg);
  border-radius: 28px;
  border: 2px solid var(--color-primary);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 0 0 10px rgba(166, 45, 13, 0.07),
    0 0 0 20px rgba(166, 45, 13, 0.035);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  z-index: 2;
  overflow: hidden;
}

.fv-hero-hub img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-hub-icon {
  position: absolute;
  width: 88px;
  height: 88px;
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: 22px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.fv-hub-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* Percentage positions derived from SVG coords — scales at every viewport width */
/* Formula: left = (cx/960*100)% - 44px  |  top = (cy/360*100)% - 44px          */
.fv-hub-icon--1 { left:  calc(7.9167% - 44px);  top: calc(12.2222% - 44px); }
.fv-hub-icon--2 { left:  calc(4.5833% - 44px);  top: calc(50%       - 44px); }
.fv-hub-icon--3 { left:  calc(7.9167% - 44px);  top: calc(87.7778% - 44px); }
.fv-hub-icon--4 { right: calc(7.9167% - 44px);  top: calc(12.2222% - 44px); }
.fv-hub-icon--5 { right: calc(4.5833% - 44px);  top: calc(50%       - 44px); }
.fv-hub-icon--6 { right: calc(7.9167% - 44px);  top: calc(87.7778% - 44px); }

/* Gentle float animation staggered across pairs */
@keyframes fv-icon-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-6px); }
}

.fv-hub-icon--1, .fv-hub-icon--4 { animation: fv-icon-float 3.8s ease-in-out infinite; }
.fv-hub-icon--2, .fv-hub-icon--5 { animation: fv-icon-float 3.8s ease-in-out infinite 0.63s; }
.fv-hub-icon--3, .fv-hub-icon--6 { animation: fv-icon-float 3.8s ease-in-out infinite 1.27s; }


/* SVG lines: switch gradient stops and particles to white so they're
   visible and look like glowing connections on the dark-red background */
.fv-hero .fv-hero-lines stop        { stop-color: #ffffff; }
.fv-hero .fv-hero-lines g path      { stroke: rgba(255, 255, 255, 0.80); }
.fv-hero .fv-hero-lines circle      { fill: #ffffff; }

/* Hub card: swap red ring to a subtle white ring */
.fv-hero .fv-hero-hub {
  border-color: var(--fv-hero-hub-border);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.30),
    0 0 0 10px rgba(255, 255, 255, 0.07),
    0 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Spoke icon cards: lighten border so it reads against the red bg */
.fv-hero .fv-hub-icon {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.25),
    0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   PROBLEM SECTION
================================================================ */

.fv-problem {
  padding: var(--section-y) 0;
}

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

.fv-problem-card {
  padding: 36px;
}

.fv-problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-secondary);
  border: 1px solid #e4d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.fv-problem-card h4 {
  margin: 0 0 12px;
  color: var(--color-text);
}

.fv-problem-card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* ================================================================
   SOLUTION SECTION — Red primary cards
================================================================ */

.fv-solution {
  padding: var(--section-y) 0;
}

.fv-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fv-solution-card {
  background: var(--fv-card-primary-bg);
  border: 1px solid var(--fv-card-primary-border-color);
  border-radius: var(--card-radius);
  padding: 36px;
}

.fv-solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 1.2rem;
}

.fv-solution-card h4 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.fv-solution-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* ================================================================
   STEPS SECTION
================================================================ */

.fv-steps {
  padding: var(--section-y) 0;
}

.fv-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fv-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-radius);
  padding: 40px 36px;
}

.fv-step-number {
  font-family: var(--display-font-family);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 26px;
  opacity: 0.8;
}

.fv-step h4 {
  margin: 0 0 14px;
  color: var(--color-text);
}

.fv-step p {
  margin: 0;
  color: var(--color-text-muted);
}

/* ================================================================
   PRICING SECTION
================================================================ */

.fv-pricing {
  padding: var(--section-y) 0;
}

.fv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fv-pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-radius);
  padding: 44px 40px;
  position: relative;
  box-sizing: border-box;
}

.fv-pricing-card--featured {
  background: var(--fv-card-primary-bg);
  border-color: transparent;
}

.fv-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--body-font-family);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.fv-pricing-badge--amber {
  background: #f5a623;
  color: #4a2400;
}

.fv-pricing-header {
  margin-bottom: 28px;
}

.fv-pricing-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--body-font-family);
  color: var(--color-text-muted);
}

.fv-pricing-card--featured .fv-pricing-tag {
  color: rgba(255, 255, 255, 0.72);
}

.fv-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.fv-pricing-price strong {
  font-family: var(--display-font-family);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--color-text);
}

.fv-pricing-card--featured .fv-pricing-price strong {
  color: #ffffff;
}

.fv-pricing-price span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-family: var(--body-font-family);
}

.fv-pricing-card--featured .fv-pricing-price span {
  color: rgba(255, 255, 255, 0.72);
}

.fv-pricing-desc {
  margin: 0;
  color: var(--color-text-muted);
}

.fv-pricing-card--featured .fv-pricing-desc {
  color: rgba(255, 255, 255, 0.82);
}

.fv-pricing-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fv-pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-family: var(--body-font-family);
  color: var(--color-text);
}

.fv-pricing-card--featured .fv-pricing-list li {
  color: rgba(255, 255, 255, 0.9);
}

.fv-pricing-list li i {
  color: var(--color-primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.fv-pricing-card--featured .fv-pricing-list li i {
  color: rgba(255, 255, 255, 0.85);
}

.fv-pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 22px;
  border-radius: var(--btn-radius);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--body-font-family);
  box-sizing: border-box;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
}

.fv-pricing-cta--primary {
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid transparent;
}

.fv-pricing-cta--primary:hover {
  background: #f0ebe8;
  transform: translateY(-2px);
}

.fv-pricing-original {
  margin: -4px 0 14px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-family: var(--body-font-family);
}

.fv-pricing-original del {
  text-decoration: line-through;
  opacity: 0.65;
}

.fv-pricing-card--featured .fv-pricing-original {
  color: rgba(255, 255, 255, 0.65);
}

.fv-pricing-card--dark {
  background: #1c1210;
  border-color: transparent;
}

.fv-pricing-card--dark .fv-pricing-tag         { color: rgba(255, 255, 255, 0.55); }
.fv-pricing-card--dark .fv-pricing-price strong { color: #ffffff; }
.fv-pricing-card--dark .fv-pricing-price span   { color: rgba(255, 255, 255, 0.6); }
.fv-pricing-card--dark .fv-pricing-original     { color: rgba(255, 255, 255, 0.5); }
.fv-pricing-card--dark .fv-pricing-desc         { color: rgba(255, 255, 255, 0.78); }
.fv-pricing-card--dark .fv-pricing-list li      { color: rgba(255, 255, 255, 0.88); }
.fv-pricing-card--dark .fv-pricing-list li i    { color: #f5a623; }
.fv-pricing-card--dark .fv-pricing-cta--primary {
  background: #ffffff;
  color: #1c1210;
  border-color: transparent;
}
.fv-pricing-card--dark .fv-pricing-cta--primary:hover {
  background: #f0ebe8;
}

.fv-pricing-note {
  text-align: center;
  margin-top: 28px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */

.fv-testimonials {
  padding: var(--section-y) 0;
}

.fv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fv-testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: var(--card-radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.fv-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 0.88rem;
}

.fv-testimonial-quote {
  margin: 0;
  color: var(--color-text);
  line-height: 1.9rem;
  font-style: italic;
  flex: 1;
  padding-bottom: 24px;
}

.fv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border-color);
  margin-top: auto;
}

.fv-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.fv-testimonial-info strong {
  display: block;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--body-font-family);
}

.fv-testimonial-info span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-family: var(--body-font-family);
}

/* ================================================================
   FAQ SECTION — identical layout to homepage FAQ
================================================================ */

.fv-faq {
  padding: var(--section-y) 0;
  position: relative;
}

.fv-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2fr);
  gap: 40px;
  align-items: start;
}

.fv-faq-intro {
  position: sticky;
  top: 120px;
}

.fv-faq-intro h3 {
  margin: 0 0 16px;
  color: var(--color-text);
}

.fv-faq-intro h3 span {
  color: var(--color-primary);
}

.fv-faq-intro-text {
  max-width: 360px;
  color: var(--color-text-muted);
}

.fv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-faq-item {
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.fv-faq-item.active {
  border-color: var(--card-border-color);
}

.fv-faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.fv-faq-toggle span:first-child {
  color: #171717;
  font-size: 1rem;
  line-height: 1.7rem;
  font-weight: 600;
  font-family: var(--body-font-family);
}

.fv-faq-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f1ed;
  border: 1px solid #e4d5d5;
  color: var(--color-primary);
  transition: transform 0.3s ease, background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

.fv-faq-icon i {
  font-size: 0.92rem;
}

.fv-faq-item.active .fv-faq-icon {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: rotate(45deg);
}

.fv-faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.fv-faq-item.active .fv-faq-content {
  grid-template-rows: 1fr;
}

.fv-faq-content-inner {
  overflow: hidden;
  padding: 0 24px;
}

.fv-faq-item.active .fv-faq-content-inner {
  padding-bottom: 24px;
}

.fv-faq-content-inner p {
  margin: 0;
  color: #5a5551;
  line-height: 1.85rem;
}

.fv-faq-content-inner p + p {
  margin-top: 14px;
}

/* ================================================================
   PLATFORM SPLIT SECTION
================================================================ */

.fv-platform {
  padding: var(--section-y) 0;
}

.fv-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fv-platform-text .section-label {
  display: inline-block;
  margin-bottom: 18px;
}

.fv-platform-text h2 {
  margin: 0 0 22px;
  color: var(--color-text);
}

.fv-platform-text h2 span {
  color: var(--color-primary);
}

.fv-platform-intro {
  margin: 0 0 36px;
  color: var(--color-text-muted);
}

.fv-platform-list {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fv-platform-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--body-font-family);
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.fv-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--color-secondary);
  border: 1px solid #e4d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.fv-platform-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-platform-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--color-secondary);
  margin-bottom: 18px;
}

.fv-platform-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv-platform-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border-color);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}

.fv-platform-bar > i {
  font-size: 1.3rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.fv-platform-bar > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fv-platform-bar strong {
  font-family: var(--body-font-family);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.fv-platform-bar span {
  font-family: var(--body-font-family);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ================================================================
   SHOWCASE — 3-card image grid
================================================================ */

.fv-showcase {
  padding: var(--section-y) 0;
}

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

.fv-showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fv-showcase-image {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.fv-showcase-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.08) 0%,
    rgba(14, 14, 14, 0.18) 32%,
    rgba(14, 14, 14, 0.72) 100%
  );
}

.fv-showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(188, 144, 128, 0.18), transparent 42%),
              radial-gradient(circle at bottom left, rgba(166, 45, 13, 0.12), transparent 38%);
  pointer-events: none;
}

.fv-showcase-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding: 24px;
  box-sizing: border-box;
}

.fv-showcase-content {
  width: 100%;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.fv-showcase-content h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.fv-showcase-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75rem;
}

.fv-showcase-card:hover .fv-showcase-image {
  transform: translateY(-4px);
}

/* Image paths — replace with real photos */
.fv-showcase-photography {
  background-image: url("/for-vendors/images/vendor-photography.png");
  background-color: #2e2018;
}

.fv-showcase-catering {
  background-image: url("/for-vendors/images/vendor-catering.png");
  background-color: #1e2818;
}

.fv-showcase-makeup {
  background-image: url("/for-vendors/images/vendor-makeup.png");
  background-color: #281e28;
}

.fv-showcase-footer {
  text-align: center;
  margin-top: 28px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-family: var(--body-font-family);
}

.fv-showcase-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ================================================================
   SCROLL REVEAL
================================================================ */

.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fv-problem-grid .fv-problem-card:nth-child(2) { transition-delay: 0.07s; }
.fv-problem-grid .fv-problem-card:nth-child(3) { transition-delay: 0.14s; }
.fv-problem-grid .fv-problem-card:nth-child(4) { transition-delay: 0.21s; }

.fv-solution-grid .fv-solution-card:nth-child(2) { transition-delay: 0.07s; }
.fv-solution-grid .fv-solution-card:nth-child(3) { transition-delay: 0.14s; }
.fv-solution-grid .fv-solution-card:nth-child(4) { transition-delay: 0.21s; }
.fv-solution-grid .fv-solution-card:nth-child(5) { transition-delay: 0.28s; }
.fv-solution-grid .fv-solution-card:nth-child(6) { transition-delay: 0.35s; }

.fv-platform-grid .fv-platform-image { transition-delay: 0.1s; }

.fv-showcase-grid .fv-showcase-card:nth-child(2) { transition-delay: 0.07s; }
.fv-showcase-grid .fv-showcase-card:nth-child(3) { transition-delay: 0.14s; }

.fv-pricing-grid .fv-pricing-card:nth-child(2) { transition-delay: 0.08s; }
.fv-pricing-grid .fv-pricing-card:nth-child(3) { transition-delay: 0.16s; }

.fv-steps-grid .fv-step:nth-child(2) { transition-delay: 0.07s; }
.fv-steps-grid .fv-step:nth-child(3) { transition-delay: 0.14s; }

.fv-testimonials-grid .fv-testimonial-card:nth-child(2) { transition-delay: 0.07s; }
.fv-testimonials-grid .fv-testimonial-card:nth-child(3) { transition-delay: 0.14s; }

.fv-faq-list .fv-faq-item:nth-child(2) { transition-delay: 0.04s; }
.fv-faq-list .fv-faq-item:nth-child(3) { transition-delay: 0.08s; }
.fv-faq-list .fv-faq-item:nth-child(4) { transition-delay: 0.12s; }
.fv-faq-list .fv-faq-item:nth-child(5) { transition-delay: 0.16s; }
.fv-faq-list .fv-faq-item:nth-child(6) { transition-delay: 0.20s; }
.fv-faq-list .fv-faq-item:nth-child(7) { transition-delay: 0.24s; }

/* ================================================================
   RESPONSIVE — 1200px
================================================================ */

@media (max-width: 1200px) {
  .fv-hero {
    padding: 120px 0 56px;
  }

  .fv-hero-stat {
    padding: 0 24px;
  }

  .fv-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
}

/* ================================================================
   RESPONSIVE — 1024px
================================================================ */

@media (max-width: 1024px) {
  .fv-hero {
    padding: 110px 0 60px;
  }

  .fv-hero-inner {
    max-width: 620px;
  }

  .fv-platform-grid {
    gap: 48px;
  }

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

  .fv-showcase-grid .fv-showcase-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .fv-hero-stats {
    margin-top: 40px;
  }

  .fv-solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .fv-pricing-grid .fv-pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .fv-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fv-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fv-faq-intro {
    position: static;
    text-align: center;
  }

  .fv-faq-intro-text {
    max-width: 680px;
    margin: 0 auto;
  }
}

/* ================================================================
   RESPONSIVE — 768px
================================================================ */

@media (max-width: 768px) {
  .fv-hero {
    padding: 100px 0 56px;
  }

  .fv-hero-actions {
    gap: 12px;
  }

  .fv-hero-visual {
    display: none;
  }

  .fv-hero-stats {
    margin-top: 32px;
  }

  .fv-hero-stat {
    padding: 0 18px;
  }

  .fv-hero-stat strong {
    font-size: 1.6rem;
  }

  .fv-problem-grid {
    grid-template-columns: 1fr;
  }

  .fv-platform-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fv-platform-img-wrap {
    aspect-ratio: 16 / 9;
  }

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

  .fv-showcase-grid .fv-showcase-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .fv-showcase-image,
  .fv-showcase-overlay {
    min-height: 320px;
  }

  .fv-problem-card,
  .fv-solution-card,
  .fv-step {
    padding: 28px 24px;
  }

  .fv-solution-grid {
    grid-template-columns: 1fr;
  }

  .fv-steps-grid {
    grid-template-columns: 1fr;
  }

  .fv-step-number {
    font-size: 2.8rem;
    margin-bottom: 18px;
  }

  .fv-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .fv-pricing-grid .fv-pricing-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .fv-pricing-card {
    padding: 36px 28px;
  }

  .fv-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .fv-testimonial-card {
    padding: 28px 24px;
  }

  .fv-faq-layout {
    gap: 24px;
  }

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

  .fv-faq-item {
    border-radius: 18px;
  }

  .fv-faq-toggle {
    padding: 20px 18px;
    gap: 14px;
  }

  .fv-faq-toggle span:first-child {
    font-size: 0.92rem;
    line-height: 1.6rem;
  }

  .fv-faq-icon {
    width: 34px;
    height: 34px;
  }

  .fv-faq-content-inner {
    padding: 0 18px;
  }

  .fv-faq-item.active .fv-faq-content-inner {
    padding-bottom: 20px;
  }

  .fv-faq-content-inner p {
    line-height: 1.7rem;
  }
}

/* ================================================================
   RESPONSIVE — 440px
================================================================ */

/* ── Hero visual — small phone scale-down (icons: 88→52px, hub: 112→68px) ── */
/* Half of 52px = 26px — update calc offsets to match the new icon half-size   */
@media (max-width: 500px) {
  .fv-hero {
    padding: 100px 0 60px;
  }
  .fv-hero-hub {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    padding: 12px;
  }

  .fv-hub-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .fv-hub-icon img {
    width: 34px;
    height: 34px;
  }

  .fv-hub-icon--1 { left:  calc(7.9167% - 26px);  top: calc(12.2222% - 26px); }
  .fv-hub-icon--2 { left:  calc(4.5833% - 26px);  top: calc(50%       - 26px); }
  .fv-hub-icon--3 { left:  calc(7.9167% - 26px);  top: calc(87.7778% - 26px); }
  .fv-hub-icon--4 { right: calc(7.9167% - 26px);  top: calc(12.2222% - 26px); }
  .fv-hub-icon--5 { right: calc(4.5833% - 26px);  top: calc(50%       - 26px); }
  .fv-hub-icon--6 { right: calc(7.9167% - 26px);  top: calc(87.7778% - 26px); }
}

@media (max-width: 440px) {
  .fv-hero-stat {
    padding: 0 14px;
    /* display: none; */
  }

  .fv-hero-stat strong {
    font-size: 1.4rem;
  }

  .fv-hero-stat-divider {
    height: 30px;
  }

  .stat-uk-remove {
    display: none;
  }

  .fv-problem-card,
  .fv-solution-card,
  .fv-step,
  .fv-testimonial-card {
    padding: 24px 20px;
  }

  .fv-pricing-card {
    padding: 32px 22px;
  }

  .fv-pricing-price strong {
    font-size: 2.6rem;
  }

  .fv-faq-item {
    border-radius: 16px;
  }

  .fv-faq-toggle {
    padding: 18px 16px;
  }

  .fv-faq-toggle span:first-child {
    font-size: 0.86rem;
    line-height: 1.5rem;
  }

  .fv-faq-icon {
    width: 30px;
    height: 30px;
  }

  .fv-faq-icon i {
    font-size: 0.8rem;
  }

  .fv-faq-content-inner {
    padding: 0 16px;
  }

  .fv-faq-item.active .fv-faq-content-inner {
    padding-bottom: 18px;
  }

  .fv-faq-content-inner p {
    line-height: 1.6rem;
  }
}
