 /* ════════════════════════════════════
   HERO — hero.blade.php
════════════════════════════════════ */

:root {
  --hr-orange:       #f97f11;
  --hr-orange-mid:   #fc842e;
  --hr-orange-light: #fbac36;
  --hr-espresso:     #1a0f00;
  --hr-cream:        #fff8f2;
  --hr-cream-2:      #fef0e3;
  --hr-text:         #1a0f00;
  --hr-text-2:       #5a3e28;
  --hr-text-muted:   #a8896e;
  --hr-sage:         #52a45e;
  --hr-purple:       #7c5cbf;
  --hr-gradient:     linear-gradient(135deg, var(--hr-orange) 0%, var(--hr-orange-mid) 50%, var(--hr-orange-light) 100%);
  --hr-nav-height:   70px;
  --hr-ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── GLOBAL OVERFLOW FIX ── */
.hr-section, .hr-section * {
  box-sizing: border-box;
}

/* ── SECTION ── */
.hr-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--hr-nav-height);
  background: var(--hr-cream);
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
}

/* ── BACKGROUND ── */
.hr-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.hr-bg-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,127,17,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,127,17,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hr-bg-g1 {
  position: absolute; top: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(249,127,17,0.14) 0%, rgba(251,172,54,0.07) 40%, transparent 70%);
  border-radius: 50%;
  animation: hr-float1 9s ease-in-out infinite;
}

.hr-bg-g2 {
  position: absolute; bottom: -20%; left: -8%;
  width: 540px; height: 540px;
  background: radial-gradient(ellipse at center, rgba(82,164,94,0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: hr-float2 11s ease-in-out infinite;
}

.hr-bg-g3 {
  position: absolute; top: 55%; right: 8%;
  width: 320px; height: 320px;
  background: radial-gradient(ellipse at center, rgba(124,92,191,0.06) 0%, transparent 65%);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: hr-float1 13s ease-in-out infinite reverse;
}

.hr-bg-line {
  position: absolute; top: 7%; left: 50%;
  transform: translateX(-50%);
  width: 860px; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(249,127,17,0.1) 25%, rgba(251,172,54,0.28) 50%, rgba(249,127,17,0.1) 75%, transparent 100%);
  filter: blur(1px);
}

@keyframes hr-float1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-18px,22px) scale(1.04);} }
@keyframes hr-float2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(14px,-16px) scale(1.03);} }

/* ── MAIN GRID ── */
.hr-container {
  position: relative; z-index: 1;
  max-width: 1380px; margin: 0 auto;
  padding: 15px 48px 70px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ══════════════
   LEFT — COPY
══════════════ */
.hr-left { display: flex; flex-direction: column; min-width: 0; }

/* Live pill */
.hr-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,127,17,0.08);
  border: 1px solid rgba(249,127,17,0.22);
  border-radius: 40px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 30px; width: fit-content;
  max-width: 100%;
  animation: hr-up 0.65s var(--hr-ease) 0.05s both;
}

.hr-pill-ring {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(249,127,17,0.14);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hr-pill-dot {
  width: 9px; height: 9px;
  background: var(--hr-orange);
  border-radius: 50%; position: relative;
}

.hr-pill-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(249,127,17,0.35);
  animation: hr-ripple 2s ease-out infinite;
}

@keyframes hr-ripple { 0%{transform:scale(1);opacity:.8;} 100%{transform:scale(2.4);opacity:0;} }

.hr-pill-txt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--hr-orange);
  white-space: nowrap;
}

/* Heading */
.hr-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.1rem, 5vw, 3.85rem);
  font-weight: 700; line-height: 1.1;
  color: var(--hr-espresso);
  margin-bottom: 22px; letter-spacing: -0.8px;
  animation: hr-slidein 0.7s var(--hr-ease) 0.12s both;
  word-break: break-word;
}

.hr-hl { display: block; }

.hr-ha {
  display: block; font-style: italic;
  color: var(--hr-orange);
  position: relative; width: fit-content;
  max-width: 100%;
}

.hr-ha::after {
  content: '';
  position: absolute; bottom: -5px; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: var(--hr-gradient);
  transform: scaleX(0); transform-origin: left;
  animation: hr-underline 0.55s var(--hr-ease) 1s forwards;
}

@keyframes hr-underline { to { transform: scaleX(1); } }

/* Sub */
.hr-sub {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 400; line-height: 1.78;
  color: var(--hr-text-2);
  max-width: 490px; margin-bottom: 38px;
  animation: hr-up 0.7s var(--hr-ease) 0.22s both;
  word-break: break-word;
}
.hr-sub strong { font-weight: 650; color: var(--hr-espresso); }

/* Buttons */
.hr-btns {
  display: flex; align-items: center;
  gap: 13px; flex-wrap: wrap;
  margin-bottom: 44px;
  animation: hr-up 0.7s var(--hr-ease) 0.3s both;
}

.hr-btn-a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--hr-gradient); color: #fff;
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: 12px; letter-spacing: -0.1px;
  box-shadow: 0 5px 22px rgba(249,127,17,0.38), 0 2px 8px rgba(249,127,17,0.18);
  transition: all 0.3s var(--hr-ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}

.hr-btn-a::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
}

.hr-btn-a:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(249,127,17,0.44); color: #fff; }
.hr-btn-a:hover::before { opacity: 1; }

.hr-btn-ico {
  width: 26px; height: 26px; min-width: 26px;
  background: rgba(255,255,255,0.22); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  flex-shrink: 0; transition: transform 0.3s var(--hr-ease);
}
.hr-btn-a:hover .hr-btn-ico { transform: translateX(3px); }

.hr-btn-b {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 22px;
  background: #fff; color: var(--hr-text);
  font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: 12px;
  border: 1.5px solid rgba(249,127,17,0.22);
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
  transition: all 0.3s var(--hr-ease); letter-spacing: -0.1px;
  white-space: nowrap;
}
.hr-btn-b:hover { border-color: var(--hr-orange); color: var(--hr-orange); transform: translateY(-2px); }

/* Trust strip */
.hr-trust {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
  animation: hr-up 0.7s var(--hr-ease) 0.42s both;
}

.hr-trust-item { display: flex; align-items: center; gap: 9px; }

.hr-ti {
  width: 32px; height: 32px; min-width: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.hr-ti-a { background: rgba(249,127,17,0.1); color: var(--hr-orange); }
.hr-ti-b { background: rgba(82,164,94,0.1);  color: var(--hr-sage); }
.hr-ti-c { background: rgba(124,92,191,0.1); color: var(--hr-purple); }

.hr-ti-lbl {
  font-family: 'Sora', sans-serif; font-size: 12px;
  font-weight: 500; color: var(--hr-text-muted); line-height: 1.35;
}
.hr-ti-lbl strong { display: block; font-weight: 700; font-size: 13px; color: var(--hr-text); margin-bottom: 1px; }

.hr-sep { width: 1px; height: 30px; background: rgba(249,127,17,0.14); flex-shrink: 0; }

/* ════════════════════
   RIGHT — DASHBOARD
════════════════════ */
.hr-right {
  position: relative;
  min-width: 0;
  animation: hr-slidein-r 0.8s var(--hr-ease) 0.18s both;
}

/* Floating chips */
.hr-chip {
  position: absolute; background: #fff;
  border-radius: 13px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 10; min-width: 158px;
}

.hr-chip-qb {
  top: -20px; left: -20px;
  border: 1.5px solid rgba(249,127,17,0.2);
  animation: hr-bob 5s ease-in-out infinite;
}

.hr-chip-hotel {
  bottom: -22px; right: -20px;
  border: 1.5px solid rgba(124,92,191,0.2);
  animation: hr-bob 6.5s ease-in-out 1.2s infinite reverse;
}

@keyframes hr-bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }

.hr-chip-ico {
  width: 34px; height: 34px; min-width: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; flex-shrink: 0;
}
.hr-chip-ico-qb    { background: linear-gradient(135deg, var(--hr-orange-light), var(--hr-orange)); }
.hr-chip-ico-hotel { background: linear-gradient(135deg, #a07fe8, var(--hr-purple)); }

.hr-chip-name { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: var(--hr-espresso); margin-bottom: 2px; }
.hr-chip-sub  { font-family: 'Sora', sans-serif; font-size: 10.5px; color: var(--hr-text-muted); }

/* Dashboard card */
.hr-card {
  background: #fff; border-radius: 22px; padding: 22px;
  border: 1px solid rgba(249,127,17,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 10px 36px rgba(0,0,0,0.07), 0 36px 72px rgba(249,127,17,0.07);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hr-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 23px; z-index: -1;
  background: linear-gradient(135deg, rgba(249,127,17,0.28) 0%, transparent 38%, transparent 62%, rgba(251,172,54,0.14) 100%);
}

/* Card header */
.hr-card-hd {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 18px;
  gap: 10px;
}
.hr-card-title {
  font-family: 'Lora', serif; font-size: 15px;
  font-weight: 700; font-style: italic; color: var(--hr-espresso); margin-bottom: 3px;
}
.hr-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; color: var(--hr-text-muted); letter-spacing: 0.3px;
}
.hr-live-tag {
  display: flex; align-items: center; gap: 5px;
  background: rgba(82,164,94,0.1); border-radius: 20px; padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 500;
  color: var(--hr-sage); letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0; white-space: nowrap;
}
.hr-live-dot {
  width: 6px; height: 6px; min-width: 6px; background: var(--hr-sage); border-radius: 50%;
  animation: hr-blink-g 2s ease infinite;
}
@keyframes hr-blink-g { 0%,100%{opacity:1;} 50%{opacity:.35;} }

/* Stats */
.hr-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }

.hr-stat {
  background: var(--hr-cream); border-radius: 12px; padding: 10px 10px 8px;
  border: 1px solid rgba(249,127,17,0.07); cursor: default;
  transition: all 0.28s var(--hr-ease);
  min-width: 0;
  overflow: hidden;
}
.hr-stat:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(249,127,17,0.12); border-color: rgba(249,127,17,0.18); }

.hr-stat-lbl { font-family: 'Sora', sans-serif; font-size: 9.5px; font-weight: 500; color: var(--hr-text-muted); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hr-stat-val {
  font-family: 'Lora', serif; font-size: 19px; font-weight: 700; font-style: italic;
  line-height: 1; margin-bottom: 3px;
  background: var(--hr-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.hr-stat-chg { font-family: 'JetBrains Mono', monospace; font-size: 8px; font-weight: 500; display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.hr-up  { color: var(--hr-sage); }
.hr-hot { color: var(--hr-orange); }

/* Orders */
.hr-sec-lbl {
  font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 600;
  color: var(--hr-text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px;
}

.hr-orders { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.hr-order {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 10px;
  background: var(--hr-cream); border: 1px solid transparent;
  transition: all 0.24s var(--hr-ease);
  min-width: 0; overflow: hidden;
}
.hr-order:hover { border-color: rgba(249,127,17,0.14); background: var(--hr-cream-2); }

.hr-order-id { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--hr-text-muted); width: 30px; min-width: 30px; flex-shrink: 0; }

.hr-order-ico { width: 26px; height: 26px; min-width: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.hr-oi-a { background: rgba(249,127,17,0.12); color: var(--hr-orange); }
.hr-oi-b { background: rgba(82,164,94,0.12);  color: var(--hr-sage); }
.hr-oi-c { background: rgba(124,92,191,0.12); color: var(--hr-purple); }

.hr-order-info { flex: 1; min-width: 0; overflow: hidden; }
.hr-order-name { font-family: 'Sora', sans-serif; font-size: 11.5px; font-weight: 600; color: var(--hr-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr-order-meta { font-family: 'Sora', sans-serif; font-size: 9.5px; color: var(--hr-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hr-order-amt { font-family: 'Lora', serif; font-size: 12.5px; font-weight: 700; font-style: italic; color: var(--hr-espresso); flex-shrink: 0; white-space: nowrap; }

.hr-order-badge {
  flex-shrink: 0; padding: 2px 7px; border-radius: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 7.5px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
.hr-ob-done { background: rgba(82,164,94,0.1);  color: var(--hr-sage); }
.hr-ob-prep { background: rgba(249,127,17,0.1); color: var(--hr-orange); }
.hr-ob-new  { background: rgba(124,92,191,0.1); color: var(--hr-purple); }

/* Mini dark cards */
.hr-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.hr-mini {
  background: var(--hr-espresso); border-radius: 11px;
  padding: 12px 11px 10px; position: relative; overflow: hidden;
  min-width: 0;
}
.hr-mini::before {
  content: ''; position: absolute; top: -24px; right: -24px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(249,127,17,0.28) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hr-mini-b::before { background: radial-gradient(circle, rgba(251,172,54,0.2) 0%, transparent 70%); }

.hr-mini-lbl { font-family: 'Sora', sans-serif; font-size: 9.5px; font-weight: 500; color: rgba(255,255,255,0.45); margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr-mini-val {
  font-family: 'Lora', serif; font-size: 16px; font-weight: 700; font-style: italic;
  background: var(--hr-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 3px; white-space: nowrap;
}
.hr-mini-sub { font-family: 'JetBrains Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.38); letter-spacing: 0.4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ════════════════
   PRODUCTS STRIP
════════════════ */
.hr-strip {
  position: relative; z-index: 2;
  background: #fff;
  border-top: 1px solid rgba(249,127,17,0.1);
  width: 100%;
  overflow: hidden;
}

.hr-strip-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.hr-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  text-decoration: none; color: inherit;
  transition: all 0.28s var(--hr-ease);
  border-right: 1px solid rgba(249,127,17,0.1);
  position: relative; overflow: hidden;
  min-width: 0;
}
.hr-tab:last-child { border-right: none; }

.hr-tab::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; opacity: 0; transition: opacity 0.28s ease;
  border-radius: 3px 3px 0 0;
}
.hr-tab-qb::after { background: var(--hr-gradient); }
.hr-tab-rp::after { background: linear-gradient(90deg, #52a45e, #74c97f); }
.hr-tab-hs::after { background: linear-gradient(90deg, var(--hr-purple), #a07fe8); }

.hr-tab:hover { background: var(--hr-cream); }
.hr-tab:hover::after { opacity: 1; }

.hr-tab-ico {
  width: 42px; height: 42px; min-width: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff; flex-shrink: 0;
  transition: transform 0.3s var(--hr-ease);
}
.hr-tab:hover .hr-tab-ico { transform: scale(1.08) rotate(-4deg); }

.hr-tab-ico-qb { background: linear-gradient(135deg, var(--hr-orange-light), var(--hr-orange)); }
.hr-tab-ico-rp { background: linear-gradient(135deg, #74c97f, #52a45e); }
.hr-tab-ico-hs { background: linear-gradient(135deg, #a07fe8, var(--hr-purple)); }

.hr-tab-info { flex: 1; min-width: 0; overflow: hidden; }
.hr-tab-name { font-family: 'Lora', serif; font-size: 14px; font-weight: 700; font-style: italic; color: var(--hr-espresso); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hr-tab-desc { font-family: 'Sora', sans-serif; font-size: 11px; color: var(--hr-text-muted); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hr-tab-pill {
  font-family: 'JetBrains Mono', monospace; font-size: 8px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px; flex-shrink: 0; white-space: nowrap;
}
.hr-tp-qb { background: rgba(249,127,17,0.1); color: var(--hr-orange); }
.hr-tp-rp { background: rgba(82,164,94,0.1);  color: var(--hr-sage); }
.hr-tp-hs { background: rgba(124,92,191,0.1); color: var(--hr-purple); }

/* ── SCROLL HINT ── */
.hr-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  z-index: 5;
  animation: hr-up 1s var(--hr-ease) 1.3s both;
}
.hr-scroll-lbl { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--hr-text-muted); }
.hr-scroll-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(249,127,17,0.3); border-radius: 11px; display: flex; justify-content: center; padding-top: 5px; }
.hr-scroll-wheel { width: 4px; height: 8px; background: var(--hr-gradient); border-radius: 2px; animation: hr-scroll-roll 2s ease infinite; }
@keyframes hr-scroll-roll { 0%{transform:translateY(0);opacity:1;} 75%{transform:translateY(9px);opacity:0;} 100%{transform:translateY(0);opacity:0;} }

/* ── KEYFRAMES ── */
@keyframes hr-up       { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }
@keyframes hr-slidein  { from{opacity:0;transform:translateX(-22px);} to{opacity:1;transform:translateX(0);} }
@keyframes hr-slidein-r{ from{opacity:0;transform:translateX(28px) scale(.97);} to{opacity:1;transform:translateX(0) scale(1);} }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1200px
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .hr-container { gap: 40px; padding: 70px 32px 60px; }
  .hr-chip-qb, .hr-chip-hotel { display: none; }
  .hr-strip-inner { padding: 0 32px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 980px
══════════════════════════════════════ */
@media (max-width: 980px) {
  .hr-container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 52px 24px 56px;
    text-align: center;
  }

  .hr-pill   { margin: 0 auto 28px; }
  .hr-sub    { margin: 0 auto 36px; max-width: 100%; }

  .hr-ha {
    margin: 0 auto;
  }
  .hr-ha::after {
    left: 0; right: 0;
    transform: scaleX(0);
    transform-origin: left;
    animation: hr-underline 0.55s var(--hr-ease) 1s forwards;
  }

  .hr-btns  { justify-content: center; }
  .hr-trust { justify-content: center; }

  .hr-right {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .hr-chip-qb, .hr-chip-hotel { display: none; }

  /* Products strip — stack vertically */
  .hr-strip-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .hr-tab {
    border-right: none;
    border-bottom: 1px solid rgba(249,127,17,0.1);
    padding: 16px 20px;
  }
  .hr-tab:last-child { border-bottom: none; }
  .hr-tab-pill { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
══════════════════════════════════════ */
@media (max-width: 640px) {
  .hr-container {
    padding: 40px 16px 52px;
    gap: 36px;
  }

  .hr-heading { font-size: 1.95rem; letter-spacing: -0.3px; }

  .hr-sub { font-size: 14px; line-height: 1.7; }

  /* Stack buttons full width */
  .hr-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hr-btn-a, .hr-btn-b { width: 100%; justify-content: center; }

  /* Trust — single column */
  .hr-trust { flex-direction: column; align-items: center; gap: 12px; }
  .hr-sep   { display: none; }

  /* Dashboard card tighter */
  .hr-card { padding: 16px; border-radius: 18px; }

  /* Stats — keep 3 cols but smaller */
  .hr-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .hr-stat  { padding: 9px 8px 7px; }
  .hr-stat-val { font-size: 16px; }
  .hr-stat-lbl { font-size: 8.5px; }
  .hr-stat-chg { font-size: 7.5px; }

  /* Orders — hide ID */
  .hr-order-id { display: none; }
  .hr-order { padding: 7px 8px; gap: 7px; }

  /* Mini cards */
  .hr-minis { gap: 7px; }
  .hr-mini  { padding: 10px 10px 9px; }
  .hr-mini-val { font-size: 15px; }

  /* Strip */
  .hr-strip-inner { padding: 0 16px; }
  .hr-tab { padding: 14px 16px; gap: 12px; }
  .hr-tab-ico { width: 36px; height: 36px; min-width: 36px; font-size: 15px; }
  .hr-tab-name { font-size: 13px; }
  .hr-tab-desc { font-size: 10.5px; }

  /* Hide scroll hint */
  .hr-scroll { display: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 400px
══════════════════════════════════════ */
@media (max-width: 400px) {
  .hr-container { padding: 36px 14px 48px; }
  .hr-heading { font-size: 1.75rem; }

  .hr-pill-txt { font-size: 9px; letter-spacing: 1px; }

  /* Stats — 2 cols, hide 3rd */
  .hr-stats { grid-template-columns: 1fr 1fr; }
  .hr-stats .hr-stat:last-child { display: none; }

  /* Orders hide badge too */
  .hr-order-badge { display: none; }

  .hr-strip-inner { padding: 0 14px; }
}















/* ════════════════════════════════════
   FEATURES — features.blade.php
════════════════════════════════════ */

:root {
  --ft-orange:       #f97f11;
  --ft-orange-mid:   #fc842e;
  --ft-orange-light: #fbac36;
  --ft-espresso:     #1a0f00;
  --ft-espresso-2:   #2b1800;
  --ft-cream:        #fff8f2;
  --ft-cream-2:      #fef0e3;
  --ft-cream-3:      #fde8cc;
  --ft-text:         #1a0f00;
  --ft-text-2:       #5a3e28;
  --ft-text-muted:   #a8896e;
  --ft-sage:         #52a45e;
  --ft-sage-light:   #74c97f;
  --ft-purple:       #7c5cbf;
  --ft-purple-light: #a07fe8;
  --ft-gradient:     linear-gradient(135deg, var(--ft-orange) 0%, var(--ft-orange-mid) 50%, var(--ft-orange-light) 100%);
  --ft-gradient-sage:   linear-gradient(135deg, var(--ft-sage-light) 0%, var(--ft-sage) 100%);
  --ft-gradient-purple: linear-gradient(135deg, var(--ft-purple-light) 0%, var(--ft-purple) 100%);
  --ft-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-section, .ft-section * { box-sizing: border-box; }

/* ── SECTION WRAPPER ── */
.ft-section {
  background: var(--ft-cream);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ════════════════════════════════
   SECTION HEADER
════════════════════════════════ */
.ft-header {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 48px 0;
  text-align: center;
}

.ft-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,127,17,0.08);
  border: 1px solid rgba(249,127,17,0.2);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ft-orange);
}

.ft-header-badge-dot {
  width: 7px; height: 7px;
  background: var(--ft-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.ft-header-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ft-espresso);
  letter-spacing: -0.6px;
  margin-bottom: 18px;
}

.ft-header-title em {
  font-style: italic;
  color: var(--ft-orange);
}

.ft-header-sub {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ft-text-2);
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ── PRODUCT TABS ── */
.ft-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.ft-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(249,127,17,0.18);
  background: #fff;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ft-text-muted);
  transition: all 0.3s var(--ft-ease);
  white-space: nowrap;
  outline: none;
}

.ft-tab-btn .ft-tab-ico {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: all 0.3s var(--ft-ease);
}

.ft-tab-btn:hover { border-color: rgba(249,127,17,0.35); color: var(--ft-text); }

/* Active states */
.ft-tab-btn.ft-active-qb {
  background: var(--ft-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(249,127,17,0.38);
}

.ft-tab-btn.ft-active-rp {
  background: var(--ft-gradient-sage);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(82,164,94,0.38);
}

.ft-tab-btn.ft-active-hs {
  background: var(--ft-gradient-purple);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(124,92,191,0.38);
}

.ft-tab-btn .ft-tab-ico-qb { background: rgba(249,127,17,0.12); color: var(--ft-orange); }
.ft-tab-btn .ft-tab-ico-rp { background: rgba(82,164,94,0.12);  color: var(--ft-sage); }
.ft-tab-btn .ft-tab-ico-hs { background: rgba(124,92,191,0.12); color: var(--ft-purple); }
.ft-tab-btn.ft-active-qb .ft-tab-ico,
.ft-tab-btn.ft-active-rp .ft-tab-ico,
.ft-tab-btn.ft-active-hs .ft-tab-ico { background: rgba(255,255,255,0.22); color: #fff; }

/* ════════════════════════════════
   PANELS
════════════════════════════════ */
.ft-panels { position: relative; }

.ft-panel {
  display: none;
  animation: ft-fadein 0.45s var(--ft-ease) both;
}

.ft-panel.ft-panel-active { display: block; }

@keyframes ft-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   ── QUICKBILL PANEL ──
════════════════════════════════ */
.ft-qb-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

/* Top feature banner */
.ft-qb-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 12px 48px rgba(249,127,17,0.14);
}

.ft-qb-banner-left {
  background: var(--ft-espresso);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}

.ft-qb-banner-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,127,17,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ft-qb-banner-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,172,54,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ft-qb-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,127,17,0.18);
  border: 1px solid rgba(249,127,17,0.3);
  border-radius: 30px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ft-orange-light);
}

.ft-qb-tag-dot {
  width: 7px; height: 7px;
  background: var(--ft-orange);
  border-radius: 50%;
}

.ft-qb-banner-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.ft-qb-banner-title span {
  background: var(--ft-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-qb-banner-desc {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 36px;
  max-width: 380px;
  position: relative; z-index: 1;
}

.ft-qb-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

.ft-qb-stat-item { }

.ft-qb-stat-val {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  background: var(--ft-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ft-qb-stat-lbl {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}

.ft-qb-banner-right {
  background: var(--ft-cream-2);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.ft-qb-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(249,127,17,0.09);
  transition: all 0.28s var(--ft-ease);
}

.ft-qb-feat-item:hover {
  border-color: rgba(249,127,17,0.22);
  transform: translateX(4px);
  box-shadow: 0 4px 18px rgba(249,127,17,0.1);
}

.ft-qb-feat-ico {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 11px;
  background: var(--ft-gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.ft-qb-feat-info { min-width: 0; }

.ft-qb-feat-name {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 3px;
}

.ft-qb-feat-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--ft-text-muted);
  line-height: 1.5;
}

/* QB bottom grid */
.ft-qb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ft-qb-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(249,127,17,0.09);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ft-ease);
}

.ft-qb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ft-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ft-qb-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(249,127,17,0.12); border-color: rgba(249,127,17,0.18); }
.ft-qb-card:hover::before { opacity: 1; }

.ft-qb-card-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(249,127,17,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: var(--ft-orange);
  margin-bottom: 16px;
  transition: all 0.3s var(--ft-ease);
}

.ft-qb-card:hover .ft-qb-card-ico {
  background: var(--ft-gradient);
  color: #fff;
  transform: scale(1.08);
}

.ft-qb-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 8px;
}

.ft-qb-card-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  color: var(--ft-text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════
   ── RESTOPRO PANEL ──
════════════════════════════════ */
.ft-rp-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

/* Hero strip */
.ft-rp-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-bottom: 24px;
}

.ft-rp-main {
  background: linear-gradient(145deg, #0d2e12 0%, #1a4d20 60%, #0a1f0c 100%);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(82,164,94,0.18);
}

.ft-rp-main::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(82,164,94,0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.ft-rp-main::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 20px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(116,201,127,0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.ft-rp-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82,164,94,0.2);
  border: 1px solid rgba(82,164,94,0.35);
  border-radius: 30px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ft-sage-light);
  position: relative; z-index: 1;
}

.ft-rp-tag-dot {
  width: 7px; height: 7px;
  background: var(--ft-sage-light);
  border-radius: 50%;
  animation: ft-blink-g 2.5s ease infinite;
}

@keyframes ft-blink-g { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.ft-rp-main-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.ft-rp-main-title span {
  color: var(--ft-sage-light);
}

.ft-rp-main-desc {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 400px;
  position: relative; z-index: 1;
}

/* KDS preview widget */
.ft-rp-kds {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative; z-index: 1;
}

.ft-rp-kds-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ft-rp-kds-title {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.ft-rp-kds-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ft-sage-light);
  background: rgba(82,164,94,0.18);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.ft-rp-kds-orders {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ft-rp-kds-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
}

.ft-rp-kds-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: rgba(255,255,255,0.35);
  width: 24px;
  flex-shrink: 0;
}

.ft-rp-kds-name {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ft-rp-kds-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: var(--ft-sage-light);
  flex-shrink: 0;
}

.ft-rp-kds-dot {
  width: 7px; height: 7px; min-width: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ft-rp-kds-dot-a { background: var(--ft-orange); }
.ft-rp-kds-dot-b { background: var(--ft-sage-light); }
.ft-rp-kds-dot-c { background: var(--ft-orange-light); }

/* Right side cards */
.ft-rp-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-rp-side-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 24px;
  border: 1px solid rgba(82,164,94,0.1);
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.28s var(--ft-ease);
}

.ft-rp-side-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ft-gradient-sage);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ft-rp-side-card:hover {
  border-color: rgba(82,164,94,0.22);
  box-shadow: 0 8px 28px rgba(82,164,94,0.1);
}

.ft-rp-side-card:hover::before { opacity: 1; }

.ft-rp-side-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(82,164,94,0.1);
  color: var(--ft-sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
  transition: all 0.28s var(--ft-ease);
}

.ft-rp-side-card:hover .ft-rp-side-ico {
  background: var(--ft-gradient-sage);
  color: #fff;
}

.ft-rp-side-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 6px;
}

.ft-rp-side-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--ft-text-muted);
  line-height: 1.6;
}

/* RP bottom features grid */
.ft-rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ft-rp-feat {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(82,164,94,0.08);
  transition: all 0.3s var(--ft-ease);
  position: relative;
  overflow: hidden;
}

.ft-rp-feat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ft-gradient-sage);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 16px 16px;
}

.ft-rp-feat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(82,164,94,0.12); border-color: rgba(82,164,94,0.2); }
.ft-rp-feat:hover::after { opacity: 1; }

.ft-rp-feat-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(82,164,94,0.1);
  color: var(--ft-sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.3s var(--ft-ease);
}

.ft-rp-feat:hover .ft-rp-feat-ico {
  background: var(--ft-gradient-sage);
  color: #fff;
  transform: scale(1.08);
}

.ft-rp-feat-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 8px;
}

.ft-rp-feat-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  color: var(--ft-text-muted);
  line-height: 1.6;
}

.ft-rp-feat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ft-rp-feat-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(82,164,94,0.1);
  color: var(--ft-sage);
}

/* ════════════════════════════════
   ── HOTELSUITE PANEL ──
════════════════════════════════ */
.ft-hs-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

/* Top banner */
.ft-hs-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Right side dark card */
.ft-hs-hero {
  background: linear-gradient(150deg, #1a0f2e 0%, #2d1859 55%, #120a24 100%);
  border-radius: 24px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  order: 2;
  box-shadow: 0 12px 48px rgba(124,92,191,0.2);
}

.ft-hs-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(124,92,191,0.3) 0%, transparent 68%);
  border-radius: 50%;
}

.ft-hs-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(160,127,232,0.15) 0%, transparent 65%);
  border-radius: 50%;
}

.ft-hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(124,92,191,0.22);
  border: 1px solid rgba(124,92,191,0.35);
  border-radius: 30px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ft-purple-light);
  position: relative; z-index: 1;
}

.ft-hs-tag-dot {
  width: 7px; height: 7px;
  background: var(--ft-purple-light);
  border-radius: 50%;
}

.ft-hs-hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.ft-hs-hero-title span {
  color: var(--ft-purple-light);
}

.ft-hs-hero-desc {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  max-width: 400px;
  position: relative; z-index: 1;
}

/* Rooms widget */
.ft-hs-rooms {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative; z-index: 1;
}

.ft-hs-rooms-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.ft-hs-rooms-title {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.ft-hs-rooms-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--ft-purple-light);
  background: rgba(124,92,191,0.2);
  padding: 2px 9px;
  border-radius: 20px;
}

.ft-hs-room-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.ft-hs-room {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: default;
  transition: all 0.2s ease;
}

.ft-hs-room-occ {
  background: rgba(124,92,191,0.35);
  color: var(--ft-purple-light);
}

.ft-hs-room-free {
  background: rgba(255,255,255,0.06);
}

.ft-hs-room-checkout {
  background: rgba(249,127,17,0.2);
  color: var(--ft-orange-light);
}

/* HS left side cards */
.ft-hs-left {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-hs-side-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(124,92,191,0.1);
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.28s var(--ft-ease);
}

.ft-hs-side-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ft-gradient-purple);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ft-hs-side-card:hover {
  border-color: rgba(124,92,191,0.22);
  box-shadow: 0 8px 28px rgba(124,92,191,0.1);
}

.ft-hs-side-card:hover::before { opacity: 1; }

.ft-hs-side-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(124,92,191,0.1);
  color: var(--ft-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
  transition: all 0.28s var(--ft-ease);
}

.ft-hs-side-card:hover .ft-hs-side-ico {
  background: var(--ft-gradient-purple);
  color: #fff;
}

.ft-hs-side-name {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 6px;
}

.ft-hs-side-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--ft-text-muted);
  line-height: 1.6;
}

/* HS bottom grid */
.ft-hs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ft-hs-feat {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid rgba(124,92,191,0.08);
  transition: all 0.3s var(--ft-ease);
  position: relative;
  overflow: hidden;
}

.ft-hs-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ft-gradient-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ft-hs-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,92,191,0.12);
  border-color: rgba(124,92,191,0.2);
}

.ft-hs-feat:hover::before { opacity: 1; }

.ft-hs-feat-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(124,92,191,0.1);
  color: var(--ft-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: all 0.3s var(--ft-ease);
}

.ft-hs-feat:hover .ft-hs-feat-ico {
  background: var(--ft-gradient-purple);
  color: #fff;
  transform: scale(1.08);
}

.ft-hs-feat-name {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ft-espresso);
  margin-bottom: 7px;
}

.ft-hs-feat-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: var(--ft-text-muted);
  line-height: 1.6;
}

.ft-hs-feat-badge {
  display: inline-block;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(124,92,191,0.1);
  color: var(--ft-purple);
}

/* ════════════════════════════════
   BOTTOM CTA BAND
════════════════════════════════ */
.ft-cta-band {
  background: var(--ft-espresso);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.ft-cta-band::before {
  content: '';
  position: absolute;
  top: -100px; left: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,127,17,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ft-cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 10%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124,92,191,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ft-cta-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}

.ft-cta-text { }

.ft-cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ft-cta-title span {
  background: var(--ft-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-cta-sub {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.45);
  max-width: 460px;
  line-height: 1.65;
}

.ft-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ft-cta-btn-a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ft-gradient);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(249,127,17,0.4);
  transition: all 0.3s var(--ft-ease);
  white-space: nowrap;
}

.ft-cta-btn-a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(249,127,17,0.5);
  color: #fff;
}

.ft-cta-btn-b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: all 0.3s var(--ft-ease);
  white-space: nowrap;
}

.ft-cta-btn-b:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* ── ≤ 1200px ── */
@media (max-width: 1200px) {
  .ft-header  { padding: 80px 36px 0; }
  .ft-qb-wrap, .ft-rp-wrap, .ft-hs-wrap { padding: 0 36px 80px; }
  .ft-qb-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-hs-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-cta-band { padding: 52px 36px; }
}

/* ── ≤ 980px ── */
@media (max-width: 980px) {
  .ft-header  { padding: 64px 24px 0; }
  .ft-qb-wrap, .ft-rp-wrap, .ft-hs-wrap { padding: 0 24px 70px; }

  .ft-qb-banner { grid-template-columns: 1fr; }
  .ft-qb-banner-right { padding: 28px 28px; }

  .ft-rp-top { grid-template-columns: 1fr; }
  .ft-rp-side { flex-direction: row; }
  .ft-rp-side-card { flex: 1; }

  .ft-hs-top { grid-template-columns: 1fr; }
  .ft-hs-hero { order: 1; }
  .ft-hs-left { order: 2; flex-direction: row; }
  .ft-hs-side-card { flex: 1; }

  .ft-rp-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-hs-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-qb-grid { grid-template-columns: repeat(2, 1fr); }

  .ft-cta-band { padding: 48px 24px; }
  .ft-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ── ≤ 720px ── */
@media (max-width: 720px) {
  .ft-header-title { font-size: 1.75rem; }
  .ft-header-sub { font-size: 14.5px; }
  .ft-tabs { gap: 8px; }
  .ft-tab-btn { padding: 10px 16px; font-size: 12.5px; gap: 8px; }
  .ft-tab-btn .ft-tab-ico { width: 24px; height: 24px; min-width: 24px; font-size: 11px; }

  .ft-qb-banner-left { padding: 36px 28px; }
  .ft-qb-banner-right { padding: 24px 24px; }
  .ft-rp-main { padding: 36px 28px; }
  .ft-hs-hero { padding: 36px 28px; }

  .ft-rp-side { flex-direction: column; }
  .ft-hs-left { flex-direction: column; }

  .ft-qb-grid { grid-template-columns: 1fr; }
  .ft-rp-grid { grid-template-columns: 1fr; }
  .ft-hs-grid { grid-template-columns: 1fr; }

  .ft-hs-room-grid { grid-template-columns: repeat(5, 1fr); gap: 5px; }

  .ft-cta-btns { width: 100%; flex-direction: column; }
  .ft-cta-btn-a, .ft-cta-btn-b { width: 100%; justify-content: center; }

  .ft-qb-stats { gap: 20px; }
  .ft-qb-stat-val { font-size: 22px; }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .ft-header { padding: 52px 16px 0; }
  .ft-qb-wrap, .ft-rp-wrap, .ft-hs-wrap { padding: 0 16px 56px; }
  .ft-cta-band { padding: 40px 16px; }

  .ft-tabs { gap: 6px; }
  .ft-tab-btn { padding: 9px 14px; font-size: 12px; }
  .ft-tab-btn span.ft-tab-label { display: none; }

  .ft-qb-banner-left { padding: 28px 20px; }
  .ft-qb-banner-right { padding: 20px 18px; gap: 10px; }
  .ft-rp-main { padding: 28px 20px; }
  .ft-hs-hero { padding: 28px 20px; }

  .ft-qb-feat-ico { width: 34px; height: 34px; min-width: 34px; font-size: 14px; }
  .ft-qb-card, .ft-rp-feat, .ft-hs-feat { padding: 20px 18px; }

  .ft-hs-room-grid { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .ft-hs-room { border-radius: 6px; font-size: 8px; }

  .ft-rp-kds-row { padding: 6px 8px; }
  .ft-rp-kds-name { font-size: 10px; }
}












/* ════════════════════════════════════
   ABOUT — about.blade.php
════════════════════════════════════ */

:root {
  --ab-orange:        #f97f11;
  --ab-orange-mid:    #fc842e;
  --ab-orange-light:  #fbac36;
  --ab-espresso:      #1a0f00;
  --ab-espresso-2:    #2b1800;
  --ab-cream:         #fff8f2;
  --ab-cream-2:       #fef0e3;
  --ab-text:          #1a0f00;
  --ab-text-2:        #5a3e28;
  --ab-text-muted:    #a8896e;
  --ab-sage:          #52a45e;
  --ab-purple:        #7c5cbf;
  --ab-gradient:      linear-gradient(135deg, #f97f11 0%, #fc842e 50%, #fbac36 100%);
  --ab-ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-section, .ab-section * { box-sizing: border-box; }

/* ════════════════════════════════
   ABOUT US BLOCK
════════════════════════════════ */
.ab-about {
  background: var(--ab-cream);
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  padding: 100px 0 0;
}

/* ── Container ── */
.ab-about-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT — COPY ── */
.ab-about-left { min-width: 0; }

.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,127,17,0.08);
  border: 1px solid rgba(249,127,17,0.2);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ab-orange);
}

.ab-badge-dot {
  width: 7px; height: 7px;
  background: var(--ab-orange);
  border-radius: 50%;
}

.ab-about-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ab-espresso);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.ab-about-title em {
  font-style: italic;
  color: var(--ab-orange);
  position: relative;
}

.ab-about-title em::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--ab-gradient);
  opacity: 0.55;
}

.ab-about-lead {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--ab-espresso);
  margin-bottom: 16px;
}

.ab-about-body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ab-text-2);
  margin-bottom: 36px;
}

/* Mission / Vision pills */
.ab-mv {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.ab-mv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(249,127,17,0.1);
  transition: all 0.28s var(--ab-ease);
}

.ab-mv-item:hover {
  border-color: rgba(249,127,17,0.28);
  box-shadow: 0 6px 24px rgba(249,127,17,0.1);
  transform: translateX(4px);
}

.ab-mv-ico {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ab-mv-ico-a { background: var(--ab-gradient); color: #fff; }
.ab-mv-ico-b { background: rgba(82,164,94,0.1); color: var(--ab-sage); }
.ab-mv-ico-c { background: rgba(124,92,191,0.1); color: var(--ab-purple); }

.ab-mv-text { min-width: 0; }

.ab-mv-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ab-text-muted);
  margin-bottom: 4px;
}

.ab-mv-value {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ab-espresso);
  line-height: 1.5;
}

/* Team / Founder tag */
.ab-founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ab-founder-avatars {
  display: flex;
  margin-right: 4px;
}

.ab-avatar {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
  margin-left: -10px;
}

.ab-avatar:first-child { margin-left: 0; }
.ab-av-a { background: var(--ab-gradient); }
.ab-av-b { background: linear-gradient(135deg, var(--ab-sage), #3d8a48); }
.ab-av-c { background: linear-gradient(135deg, var(--ab-purple), #5e40a0); }
.ab-av-d {
  background: var(--ab-espresso);
  font-size: 11px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}

.ab-founder-text { }

.ab-founder-main {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ab-espresso);
  margin-bottom: 2px;
}

.ab-founder-sub {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  color: var(--ab-text-muted);
}

/* ── RIGHT — VISUAL BLOCK ── */
.ab-about-right {
  position: relative;
  min-width: 0;
}

/* Big number card */
.ab-visual-main {
  background: var(--ab-espresso);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,15,0,0.22);
}

.ab-visual-main::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,127,17,0.22) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.ab-visual-main::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(251,172,54,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ab-visual-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.ab-visual-headline {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}

.ab-visual-headline span {
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-visual-sub {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 340px;
  position: relative; z-index: 1;
}

/* Stat grid inside dark card */
.ab-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative; z-index: 1;
}

.ab-stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 18px 16px;
  transition: all 0.28s var(--ab-ease);
}

.ab-stat-box:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(249,127,17,0.22);
}

.ab-stat-num {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.ab-stat-lbl {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
}

/* Floating cards on right column */
.ab-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 10;
  min-width: 170px;
}

.ab-float-a {
  top: -18px; right: -16px;
  border: 1.5px solid rgba(249,127,17,0.18);
  animation: ab-bob 5s ease-in-out infinite;
}

.ab-float-b {
  bottom: -18px; left: -16px;
  border: 1.5px solid rgba(82,164,94,0.2);
  animation: ab-bob 6.5s ease-in-out 1s infinite reverse;
}

@keyframes ab-bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

.ab-float-ico {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.ab-float-ico-a { background: var(--ab-gradient); }
.ab-float-ico-b { background: linear-gradient(135deg, #74c97f, var(--ab-sage)); }

.ab-float-info { }

.ab-float-val {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--ab-espresso);
  line-height: 1;
  margin-bottom: 3px;
}

.ab-float-lbl {
  font-family: 'Sora', sans-serif;
  font-size: 10.5px;
  color: var(--ab-text-muted);
}

/* ── TIMELINE STRIP ── */
.ab-timeline {
  max-width: 1380px;
  margin: 64px auto 0;
  padding: 0 48px;
  overflow: hidden;
}

.ab-timeline-head {
  text-align: center;
  margin-bottom: 44px;
}

.ab-timeline-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ab-espresso);
  margin-bottom: 8px;
}

.ab-timeline-sub {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--ab-text-muted);
}

.ab-tl-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.ab-tl-track::-webkit-scrollbar { display: none; }

.ab-tl-track::before {
  content: '';
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(249,127,17,0.18) 10%, rgba(249,127,17,0.28) 50%, rgba(249,127,17,0.18) 90%, transparent 100%);
  z-index: 0;
}

.ab-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  position: relative;
  z-index: 1;
}

.ab-tl-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid rgba(249,127,17,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ab-orange);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: all 0.3s var(--ab-ease);
  box-shadow: 0 4px 14px rgba(249,127,17,0.12);
}

.ab-tl-item:hover .ab-tl-dot {
  background: var(--ab-gradient);
  border-color: transparent;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(249,127,17,0.3);
}

.ab-tl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--ab-orange);
  margin-bottom: 5px;
  text-align: center;
}

.ab-tl-event {
  font-family: 'Sora', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ab-espresso);
  text-align: center;
  line-height: 1.4;
  padding: 0 8px;
}

/* ════════════════════════════════
   WHY CHOOSE US BLOCK
════════════════════════════════ */
.ab-why {
  background: var(--ab-cream);
  padding: 100px 0 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.ab-why-header {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  margin-bottom: 64px;
}

.ab-why-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ab-espresso);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.ab-why-title em { font-style: italic; color: var(--ab-orange); }

.ab-why-sub {
  font-family: 'Sora', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ab-text-2);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Big comparison grid ── */
.ab-why-grid {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Left — large dark hero card */
.ab-why-hero {
  background: var(--ab-espresso);
  border-radius: 24px;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ab-why-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249,127,17,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ab-why-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(251,172,54,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ab-why-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ab-orange);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.ab-why-hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.ab-why-hero-title span {
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-why-hero-body {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 380px;
  position: relative; z-index: 1;
}

/* Comparison checklist */
.ab-compare {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative; z-index: 1;
}

.ab-compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 11px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.24s var(--ab-ease);
}

.ab-compare-row:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(249,127,17,0.2);
}

.ab-compare-ico {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.ab-c-yes { background: rgba(82,164,94,0.22); color: #74c97f; }
.ab-c-no  { background: rgba(255,80,80,0.15); color: #ff6b6b; }

.ab-compare-text {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  flex: 1;
}

.ab-compare-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.ab-cb-us   { background: rgba(249,127,17,0.18); color: var(--ab-orange-light); }
.ab-cb-them { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }

/* Right — reasons stack */
.ab-why-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ab-reason {
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px;
  border: 1px solid rgba(249,127,17,0.09);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s var(--ab-ease);
  position: relative;
  overflow: hidden;
}

.ab-reason::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ab-gradient);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ab-reason:hover {
  border-color: rgba(249,127,17,0.22);
  box-shadow: 0 8px 28px rgba(249,127,17,0.1);
  transform: translateX(4px);
}

.ab-reason:hover::before { opacity: 1; }

.ab-reason-num {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.ab-reason-body { min-width: 0; }

.ab-reason-title {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ab-espresso);
  margin-bottom: 6px;
}

.ab-reason-desc {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  color: var(--ab-text-muted);
  line-height: 1.65;
}

/* ── Proof numbers strip ── */
.ab-proof {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.ab-proof-card {
  background: var(--ab-cream-2);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(249,127,17,0.09);
  text-align: center;
  transition: all 0.3s var(--ab-ease);
  position: relative;
  overflow: hidden;
}

.ab-proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ab-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ab-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(249,127,17,0.12);
  border-color: rgba(249,127,17,0.2);
}

.ab-proof-card:hover::before { opacity: 1; }

.ab-proof-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(249,127,17,0.1);
  color: var(--ab-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  margin: 0 auto 16px;
  transition: all 0.3s var(--ab-ease);
}

.ab-proof-card:hover .ab-proof-ico {
  background: var(--ab-gradient);
  color: #fff;
  transform: scale(1.08);
}

.ab-proof-val {
  font-family: 'Lora', serif;
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.ab-proof-label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ab-espresso);
  margin-bottom: 4px;
}

.ab-proof-sub {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  color: var(--ab-text-muted);
}

/* ── Testimonials strip ── */
.ab-testimonials {
  max-width: 1380px;
  margin: 24px auto 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ab-testi {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(249,127,17,0.09);
  transition: all 0.3s var(--ab-ease);
  position: relative;
}

.ab-testi:hover {
  border-color: rgba(249,127,17,0.2);
  box-shadow: 0 8px 28px rgba(249,127,17,0.09);
  transform: translateY(-3px);
}

.ab-testi-quote {
  font-family: 'Lora', serif;
  font-size: 42px;
  line-height: 1;
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
  opacity: 0.6;
}

.ab-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.ab-testi-stars i {
  font-size: 12px;
  color: var(--ab-orange-light);
}

.ab-testi-text {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ab-text-2);
  margin-bottom: 20px;
  font-style: italic;
}

.ab-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ab-testi-av {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
}

.ab-ta-a { background: var(--ab-gradient); }
.ab-ta-b { background: linear-gradient(135deg, #74c97f, var(--ab-sage)); }
.ab-ta-c { background: linear-gradient(135deg, #a07fe8, var(--ab-purple)); }

.ab-testi-name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ab-espresso);
  margin-bottom: 2px;
}

.ab-testi-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--ab-text-muted);
  letter-spacing: 0.5px;
}

/* ── Bottom CTA ── */
.ab-bottom-cta {
  background: var(--ab-espresso);
  margin-top: 80px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ab-bottom-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(249,127,17,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ab-cta-inner { position: relative; z-index: 1; }

.ab-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,127,17,0.15);
  border: 1px solid rgba(249,127,17,0.28);
  border-radius: 30px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ab-orange-light);
}

.ab-cta-tag-dot {
  width: 7px; height: 7px;
  background: var(--ab-orange);
  border-radius: 50%;
  animation: ab-blink 2s ease infinite;
}

@keyframes ab-blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.ab-cta-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ab-cta-title span {
  background: var(--ab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-cta-sub {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ab-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-cta-btn-a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--ab-gradient);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(249,127,17,0.42);
  transition: all 0.3s var(--ab-ease);
  white-space: nowrap;
}

.ab-cta-btn-a:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(249,127,17,0.5); color: #fff; }

.ab-cta-btn-b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: all 0.3s var(--ab-ease);
  white-space: nowrap;
}

.ab-cta-btn-b:hover { background: rgba(255,255,255,0.13); color: #fff; border-color: rgba(255,255,255,0.3); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

/* ── ≤ 1200px ── */
@media (max-width: 1200px) {
  .ab-about-inner  { padding: 0 36px; gap: 52px; }
  .ab-timeline     { padding: 0 36px; }
  .ab-why-header   { padding: 0 36px; }
  .ab-why-grid     { padding: 0 36px; }
  .ab-proof        { padding: 0 36px; }
  .ab-testimonials { padding: 0 36px; }
  .ab-bottom-cta   { padding: 64px 36px; }
  .ab-proof { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤ 980px ── */
@media (max-width: 980px) {
  .ab-about { padding: 72px 0 0; }
  .ab-why   { padding: 72px 0 0; }

  .ab-about-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 28px; }
  .ab-float-a, .ab-float-b { display: none; }

  .ab-timeline  { padding: 0 28px; margin-top: 52px; }
  .ab-why-header { padding: 0 28px; margin-bottom: 48px; }
  .ab-why-grid  { grid-template-columns: 1fr; padding: 0 28px; }
  .ab-proof     { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .ab-testimonials { grid-template-columns: 1fr; padding: 0 28px; }
  .ab-bottom-cta { padding: 56px 28px; margin-top: 56px; }
}

/* ── ≤ 720px ── */
@media (max-width: 720px) {
  .ab-about-title { font-size: 1.75rem; }
  .ab-about-lead { font-size: 15px; }
  .ab-about-body { font-size: 14px; }

  .ab-visual-main { padding: 36px 28px; }
  .ab-stat-grid { grid-template-columns: 1fr 1fr; }
  .ab-stat-num { font-size: 22px; }

  .ab-why-title { font-size: 1.75rem; }
  .ab-why-sub { font-size: 14px; }
  .ab-why-hero { padding: 36px 28px; }

  .ab-proof { grid-template-columns: repeat(2, 1fr); }
  .ab-proof-val { font-size: 28px; }

  .ab-reason { padding: 20px 20px; gap: 14px; }
  .ab-reason-num { font-size: 26px; min-width: 30px; }

  .ab-cta-title { font-size: 1.65rem; }
  .ab-cta-sub { font-size: 13.5px; }
  .ab-cta-btns { flex-direction: column; align-items: center; }
  .ab-cta-btn-a, .ab-cta-btn-b { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── ≤ 480px ── */
@media (max-width: 480px) {
  .ab-about { padding: 52px 0 0; }
  .ab-why   { padding: 52px 0 0; }

  .ab-about-inner { padding: 0 16px; gap: 36px; }
  .ab-timeline { padding: 0 16px; }
  .ab-why-header { padding: 0 16px; margin-bottom: 36px; }
  .ab-why-grid { padding: 0 16px; }
  .ab-proof { padding: 0 16px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .ab-testimonials { padding: 0 16px; }
  .ab-bottom-cta { padding: 44px 16px; margin-top: 44px; }

  .ab-about-title { font-size: 1.55rem; }
  .ab-why-title { font-size: 1.55rem; }

  .ab-mv-item { padding: 14px 16px; gap: 12px; }
  .ab-mv-ico { width: 36px; height: 36px; min-width: 36px; font-size: 14px; }

  .ab-visual-main { padding: 28px 20px; }
  .ab-stat-grid { gap: 8px; }
  .ab-stat-num { font-size: 20px; }
  .ab-stat-box { padding: 14px 12px; }

  .ab-why-hero { padding: 28px 20px; }
  .ab-compare-row { padding: 10px 12px; }
  .ab-compare-badge { display: none; }

  .ab-reason { padding: 18px 16px; gap: 12px; }
  .ab-reason-num { font-size: 22px; min-width: 26px; }
  .ab-reason-title { font-size: 13.5px; }
  .ab-reason-desc { font-size: 12px; }

  .ab-testi { padding: 22px 20px; }
  .ab-testi-text { font-size: 12.5px; }

  .ab-proof-card { padding: 20px 16px; }
  .ab-proof-val { font-size: 24px; }
  .ab-proof-ico { width: 40px; height: 40px; font-size: 16px; }

  .ab-tl-item { min-width: 90px; }
  .ab-tl-event { font-size: 10.5px; }

  .ab-cta-title { font-size: 1.45rem; }
}















:root {
  --fq-orange:       #f97f11;
  --fq-orange-mid:   #fc842e;
  --fq-orange-light: #fbac36;
  --fq-espresso:     #1a0f00;
  --fq-cream:        #fff8f2;
  --fq-cream-2:      #fef0e3;
  --fq-text:         #1a0f00;
  --fq-text-2:       #5a3e28;
  --fq-text-muted:   #a8896e;
  --fq-sage:         #52a45e;
  --fq-purple:       #7c5cbf;
  --fq-gradient:     linear-gradient(135deg, #f97f11 0%, #fc842e 50%, #fbac36 100%);
  --fq-ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

.fq-section, .fq-section * { box-sizing: border-box; }

/* ── SECTION ── */
.fq-section {
  background: var(--fq-cream);
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.fq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,127,17,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,127,17,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.fq-section::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(249,127,17,0.07) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── INNER ── */
.fq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.fq-header {
  text-align: center;
  margin-bottom: 52px;
}

.fq-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,127,17,0.08);
  border: 1px solid rgba(249,127,17,0.2);
  border-radius: 40px;
  padding: 5px 15px 5px 9px;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fq-orange);
}

.fq-badge-dot {
  width: 6px; height: 6px;
  background: var(--fq-orange);
  border-radius: 50%;
  animation: fq-pulse 2s ease infinite;
}

@keyframes fq-pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.fq-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fq-espresso);
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.fq-title em { font-style: italic; color: var(--fq-orange); }

.fq-sub {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--fq-text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* ── FAQ LIST ── */
.fq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 52px;
}

/* ── SINGLE ITEM ── */
.fq-item {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(249,127,17,0.1);
  overflow: hidden;
  transition: border-color 0.28s var(--fq-ease), box-shadow 0.28s var(--fq-ease);
}

.fq-item:hover {
  border-color: rgba(249,127,17,0.22);
  box-shadow: 0 4px 18px rgba(249,127,17,0.08);
}

.fq-item.fq-open {
  border-color: rgba(249,127,17,0.3);
  box-shadow: 0 6px 26px rgba(249,127,17,0.11);
}

/* Question row */
.fq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.fq-q-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--fq-orange);
  background: rgba(249,127,17,0.09);
  border-radius: 7px;
  padding: 4px 8px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
  transition: all 0.28s var(--fq-ease);
}

.fq-item.fq-open .fq-q-num {
  background: var(--fq-gradient);
  color: #fff;
}

.fq-q-text {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fq-espresso);
  flex: 1;
  line-height: 1.45;
  transition: color 0.26s ease;
}

.fq-item.fq-open .fq-q-text { color: var(--fq-orange); }

.fq-q-arrow {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(249,127,17,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fq-text-muted);
  font-size: 11px;
  flex-shrink: 0;
  transition: all 0.35s var(--fq-ease);
}

.fq-item.fq-open .fq-q-arrow {
  background: rgba(249,127,17,0.12);
  color: var(--fq-orange);
  transform: rotate(180deg);
}

/* Answer */
.fq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--fq-ease), opacity 0.3s ease;
}

.fq-item.fq-open .fq-answer {
  max-height: 280px;
  opacity: 1;
}

.fq-divider {
  height: 1px;
  background: rgba(249,127,17,0.09);
  margin: 0 22px 16px 72px;
}

.fq-answer-inner {
  padding: 0 22px 20px 72px;
}

.fq-a-text {
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--fq-text-2);
}

.fq-a-text strong { color: var(--fq-espresso); font-weight: 650; }

.fq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.fq-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.fq-t-orange { background: rgba(249,127,17,0.1);  color: var(--fq-orange); }
.fq-t-green  { background: rgba(82,164,94,0.1);   color: var(--fq-sage); }
.fq-t-purple { background: rgba(124,92,191,0.1);  color: var(--fq-purple); }

/* ── BOTTOM CTA ── */
.fq-cta {
  background: var(--fq-espresso);
  border-radius: 20px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.fq-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(249,127,17,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.fq-cta-left { position: relative; z-index: 1; }

.fq-cta-title {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.fq-cta-title span {
  background: var(--fq-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fq-cta-sub {
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.fq-cta-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

.fq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 11px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.28s var(--fq-ease);
  white-space: nowrap;
}

.fq-btn-a {
  background: var(--fq-gradient);
  color: #fff;
  box-shadow: 0 5px 20px rgba(249,127,17,0.38);
}
.fq-btn-a:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,127,17,0.48); color: #fff; }

.fq-btn-b {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.13);
}
.fq-btn-b:hover { background: rgba(255,255,255,0.13); color: #fff; }

/* ══════════
   RESPONSIVE
══════════ */
@media (max-width: 768px) {
  .fq-inner   { padding: 0 24px; }
  .fq-section { padding: 72px 0; }
  .fq-header  { margin-bottom: 40px; }

  .fq-q { padding: 17px 18px; gap: 12px; }
  .fq-q-text { font-size: 13.5px; }
  .fq-divider { margin: 0 18px 14px 66px; }
  .fq-answer-inner { padding: 0 18px 18px 66px; }

  .fq-cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .fq-cta-btns { width: 100%; }
  .fq-cta-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .fq-inner   { padding: 0 16px; }
  .fq-section { padding: 56px 0; }
  .fq-title   { font-size: 1.6rem; }

  .fq-q { padding: 15px 15px; gap: 10px; }
  .fq-q-num  { font-size: 9px; min-width: 30px; padding: 3px 6px; }
  .fq-q-text { font-size: 13px; }
  .fq-q-arrow { width: 24px; height: 24px; min-width: 24px; }

  .fq-divider { margin: 0 15px 12px 55px; }
  .fq-answer-inner { padding: 0 15px 16px 55px; }
  .fq-a-text  { font-size: 12.5px; }

  .fq-cta { padding: 22px 18px; }
  .fq-cta-title { font-size: 15px; }
  .fq-cta-btns { flex-direction: column; }
}