/* =========================================================
   Transwire.in — homepage-specific styles
   ========================================================= */

/* ───────── Marquee ticker ───────── */
.ticker {
  background: var(--ink);
  color: white;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-roll 50s linear infinite;
  padding-left: 48px;
}
.ticker-item { display: inline-flex; gap: 10px; align-items: center; }
.ticker-item .flag {
  width: 16px; height: 12px; border-radius: 2px; background: #444; display: inline-block;
}
.ticker-item .ccy { color: white; font-weight: 600; }
.ticker-item .rate { color: #C7C7CC; }
.ticker-item .delta.up { color: #2ED57C; }
.ticker-item .delta.down { color: #FF6B7A; }
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───────── HERO ───────── */
.hero {
  position: relative;
  padding: 30px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(229,32,42,.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(229,32,42,.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 524px;
  gap: 56px;
  align-items: stretch;
}
.hero-copy { padding-top: 8px; display: flex; flex-direction: column; }
.hero h1 {
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-top: 18px;
}
.hero h1 .accent {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
/*.hero h1 .swoop {
  display: inline-block;
  position: relative;
}*/
.hero h1 .swoop::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: 14px;
  /*background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2,10 Q60,-2 120,6 T198,4' stroke='%23E5202A' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;*/
}
.hero-sub {
  margin-top: 16px;
  max-width: 460px;
  font-size: 15.5px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ───────── Hero YouTube thumbnail ───────── */
.hero-media {
  margin-top: 26px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-video {
  position: relative;
  flex: 1 1 320px;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-qr {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line, #ececec);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.hero-qr img {
  width: 96px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.hero-qr-cap {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--ink-400, #555);
}
.hero-video-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A1A1F, #2a2a31);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(10,10,11,0) 38%, rgba(10,10,11,.72) 100%);
  transition: background .2s;
}
.hero-video-overlay:hover { background: linear-gradient(180deg, rgba(10,10,11,.1) 30%, rgba(10,10,11,.78) 100%); }
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(229,32,42,.7);
  transition: transform .2s, background .2s;
}
.hero-video-play svg { width: 22px; height: 22px; margin-left: 2px; }
.hero-video-overlay:hover .hero-video-play { transform: translate(-50%, -50%) scale(1.08); }
.hero-video-meta {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1.2;
}
.hero-video-meta strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.hero-video-meta span { display: block; font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; }
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 50px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .stars {
  display: flex; gap: 2px; color: var(--red); font-size: 16px;
}
.hero-trust .stars + span { font-weight: 600; color: var(--ink); font-size: 14px; }
.hero-trust .label { color: var(--ink-400); font-size: 13.5px; }
.hero-trust .stat strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.hero-trust .stat span { display: block; color: var(--ink-400); font-size: 12.5px; }
.hero-trust .vbar { width: 1px; height: 36px; background: var(--line); }

/* ───────── Calculator + lead form ───────── */
.leadcalc {
  position: relative;
}

/* ══════════════════════════════════════
   CALCULATOR WIDGET
   ====================================== */
.tw-calc-wrap {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 44px rgb(0 0 0 / 20%);
}

.tw-calc-hdr {
    background: #111;
    padding: 14px 16px;
}

.tw-calc-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.tw-rate-status {
    font-size: 10px;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tw-rate-dot {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    animation: twPulse 1.4s infinite;
}

.tw-main-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0;
}

.tw-main-tabs::-webkit-scrollbar {
    display: none;
}

.tw-panel {
    padding: 0 20px 20px 20px;
}

.tw-mt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 6px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    border: none;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    text-align: center;
    flex: 1;
}

.tw-mt.on {
    background: #e41e26;
    color: #fff;
    box-shadow: 0 0 14px rgba(192, 0, 10, 0.5);
}

.tw-mt:hover:not(.on) {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.tw-mt-icon {
    font-size: 18px;
    line-height: 1;
}

.tw-calc-body {
    padding: 16px 0 0px 0;
}

.tw-panel {
    display: none;
    min-height: 680px;
    box-sizing: border-box;
}

.tw-panel.show {
    display: block;
    animation: twFadeIn 0.25s ease-in-out forwards;
}

@keyframes twFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.tw-sub-opts {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 9px;
}

.tw-so {
    flex: 1;
    padding: 7px 6px;
    font-size: 11px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    background: transparent;
    color: #888;
    transition: all 0.15s;
    font-family: 'Inter', sans-serif;
}

.tw-so.on {
    background: #fff;
    color: #e41e26;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.tw-lbl {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.tw-irow {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border: 1.5px solid #d3d1d1;
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 10px;
    transition: border-color 0.15s;
}

.tw-irow:focus-within {
    border-color: #e41e26;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.15);
}

.tw-inum {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    flex: 1;
    background: none;
    border: none;
    outline: none;
    min-width: 0;
    font-family: 'Inter', sans-serif;
}

.tw-ctag, .tw-csel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    height: 28px;
}

.tw-csel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23e41e26' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
    padding-right: 20px;
}

.tw-isel {
    font-size: 13px;
    color: #333;
    background: #f9f9f9;
    border: 1.5px solid #d3d1d1;
    border-radius: 8px;
    padding: 10px 12px;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.20s ease-in-out;
    margin-bottom: 10px;
}

.tw-isel:focus {
    border-color: #e41e26;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.15);
}

.tw-itxt {
    font-size: 13px;
    color: #333;
    background: #f9f9f9;
    border: 1.5px solid #d3d1d1;
    border-radius: 8px;
    padding: 10px 12px;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.20s ease-in-out;
    margin-bottom: 10px;
}

.tw-itxt:focus {
    border-color: #e41e26;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.15);
}

.tw-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 3px;
    align-items: start;
}

.tw-row2.tw-row-swap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 8px;
}

.tw-row2.tw-row-swap > div {
    min-width: 0;
}

.tw-swap-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    z-index: 10;
}

.tw-swap-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid #e41e26;
    border-radius: 50%;
    color: #e41e26;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(228, 30, 38, 0.2);
    padding: 0;
}

.tw-swap-btn:hover {
    background: #e41e26;
    color: #fff;
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 4px 12px rgba(228, 30, 38, 0.4);
}

.tw-row2 .tw-isel,
.tw-row2 .tw-itxt,
.tw-row2 .tw-irow {
    margin-bottom: 0;
    height: 44px;
}

.tw-row2 .tw-irow {
    padding: 0 0 0 12px !important;
}

.tw-swap-btn i {
    font-size: 10px;
    line-height: 1;
}

.tw-row2 .tw-inum {
    font-size: 15px;
}

/* Quick amount preset buttons */
.tw-quick-amts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 2px;
}

.tw-qa-btn {
    font-size: 11px;
    font-weight: 600;
    color: #c0000a;
    background: #fff0f0;
    border: 1px solid #f5c0c0;
    border-radius: 20px;
    padding: 3px 10px;
    cursor: pointer;
    transition: all 0.20s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.tw-qa-btn:hover {
    background: #e41e26;
    color: #fff;
    border-color: #e41e26;
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 4px 10px rgba(228, 30, 38, 0.15);
}

/* ───────── Custom Searchable City Dropdowns ───────── */
.tw-city-wrap {
    position: relative;
    width: 100%;
}
.tw-city-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
}
.tw-city-opt {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s;
    text-align: left;
}
.tw-city-opt:hover {
    background: #f3f4f6;
    color: #e41e26;
}
.tw-city-opt.selected {
    background: #fef2f2;
    color: #e41e26;
    font-weight: 600;
}
.tw-lock-rate-btn {
    display: block;
    width: 100%;
    margin: 14px 0 4px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #e41e26 0%, #b5000a 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(228, 30, 38, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
    animation: twLockPulse 2.5s infinite;
}

.tw-lock-rate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 30, 38, 0.50);
    animation: none;
}

@keyframes twLockPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(228,30,38,0.35); }
    50% { box-shadow: 0 4px 22px rgba(228,30,38,0.60); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes twShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    40%       { transform: translateX(5px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

.tw-finp.tw-invalid {
    border: 2px solid #e41e26 !important;
    background: #fff5f5 !important;
    animation: twShake 0.4s ease;
}

.tw-result-box {
    background: #fff5f5;
    border: 1.5px solid #fcc;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    margin-top: 10px !important;
}

.tw-rb-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.tw-rb-label {
    font-size: 11px;
    color: #888;
}

.tw-rb-amount {
    font-size: 22px;
    font-weight: 700;
    color: #e41e26;
}

.tw-rb-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #888;
    padding: 2px 0;
}

.tw-rb-row span:last-child {
    color: #333;
    font-weight: 500;
}

.tw-rb-divider {
    height: 1px;
    background: #fcc;
    margin: 7px 0;
}

.tw-rb-total {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.tw-rb-total span:last-child {
    color: #e41e26;
}

.tw-deli-tag {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #0F6E56;
    background: #E1F5EE;
    border: 1px solid #9FE1CB;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
}

.tw-dpulse {
    width: 6px;
    height: 6px;
    background: #1D9E75;
    border-radius: 50%;
    animation: twPulse 1.4s infinite;
}

.tw-tcs-note {
    background: #FAEEDA;
    border-radius: 7px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 10px;
    color: #633806;
    border-left: 3px solid #FAC775;
}

.tw-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.tw-pg {
    padding: 7px 4px;
    font-size: 10px;
    font-weight: 600;
    border: 1.5px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    color: #888;
    transition: all 0.12s;
    font-family: 'Inter', sans-serif;
}

.tw-pg.on {
    border-color: #e41e26;
    background: #fff5f5;
    color: #e41e26;
}

.tw-card-types {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.tw-ct-btn {
    flex: 1;
    padding: 7px 10px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    transition: all 0.15s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.tw-ct-btn.on {
    border-color: #e41e26;
    background: #fff5f5;
}

.tw-ct-icon {
    font-size: 14px;
    margin-bottom: 0;
}

.tw-ct-label {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.tw-ct-sub {
    display: none;
}

.tw-ct-btn.on .tw-ct-label {
    color: #e41e26;
}

.tw-reload-section {
    display: none;
}

.tw-reload-section.show {
    display: block;
}

.tw-fetch-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.tw-fetch-row .tw-itxt {
    margin-bottom: 0;
    flex: 1;
}

.tw-fetch-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.tw-fetch-btn:hover {
    background: #e41e26;
}

.tw-fetched-card {
    display: none;
    align-items: center;
    gap: 10px;
    background: #eaf3de;
    border: 1px solid #c0dd97;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.tw-fetched-card.show {
    display: flex;
}

.tw-fc-av {
    width: 32px;
    height: 32px;
    background: #27500A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tw-fc-name {
    font-size: 12px;
    font-weight: 600;
    color: #27500A;
}

.tw-fc-sub {
    font-size: 10px;
    color: #3B6D11;
    margin-top: 1px;
}

.tw-form-gate {
    border-radius: 10px;
    margin-top: 4px;
    animation: twSlideIn 0.3s ease;
}

@keyframes twSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tw-fg-title {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tw-finp {
    width: 100%;
    background: #fff;
    border: 1.5px solid #d3d1d1;
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 13px;
    color: #111;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s;
    margin-bottom: 8px;
    height: 44px;
}

.tw-finp:focus {
    border-color: #e41e26;
}

.tw-otp-btn:hover {
    background: #e41e26;
}

.tw-consent {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 10px;
    color: #888;
    cursor: pointer;
    line-height: 1.5;
    margin: -3px 0 16px 0;
}

.tw-consent input {
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #e41e26;
}

.tw-cta-btn {
    width: 100%;
    background: #e41e26;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.tw-cta-btn:hover {
    background: #a00008;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(192, 0, 10, 0.3);
}

.tw-cta-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.tw-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.tw-ts {
    font-size: 10px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 3px;
}

.tw-tsdot {
    width: 4px;
    height: 4px;
    background: #e41e26;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ───────── Logo marquee ───────── */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.partners-heading {
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-400);
  margin-bottom: 30px;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: logo-roll 40s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink-400);
  opacity: 0.62;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  filter: grayscale(1);
  transition: opacity .2s, color .2s, filter .2s;
}
.lg:hover { opacity: 1; color: var(--ink); filter: grayscale(0); }
.lg-visa   { font-style: italic; font-weight: 800; letter-spacing: 0.01em; }
.lg-swift  { letter-spacing: 0.18em; font-weight: 700; }
.lg-amex   { letter-spacing: 0.12em; font-size: 20px; text-transform: uppercase; }
.lg-paypal { font-style: italic; }
.lg-wise   { font-weight: 800; }
.lg-mc { display: inline-flex; align-items: center; gap: 9px; }
.lg-mc .mc-mark { display: inline-flex; }
.lg-mc .mc-mark i { width: 18px; height: 18px; border-radius: 50%; background: currentColor; display: block; opacity: .9; }
.lg-mc .mc-mark i:last-child { margin-left: -7px; }
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .lg { font-size: 22px; }
  .logo-track { gap: 48px; }
}

/* ───────── Services ───────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-eyebrow { display: inline-flex; margin-bottom: 36px; }
.svc {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }
.svc.svc-feature {
  grid-column: span 2;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  padding: 0;
}
.svc.svc-feature:hover { background: var(--ink-700); }
.svc-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
  color: rgba(255,255,255,.72);
}
.svc.svc-feature .svc-link { color: white; }
.svc-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50);
  color: var(--red);
  border-radius: 14px;
  margin-bottom: 24px;
}
.svc.svc-feature .svc-icon { background: rgba(229,32,42,.18); color: var(--red); }
.svc h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.svc.svc-feature h3 { font-size: 32px; max-width: 460px; }
.svc p {
  color: var(--ink-500);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.svc.svc-feature p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 460px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}
.svc-link svg { transition: transform .2s; }
.svc:hover .svc-link svg { transform: translateX(4px); }
.svc-currencies {
  position: absolute;
  right: 28px; top: 28px;
  display: flex;
  gap: -8px;
}
.svc-currencies .chip {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: white;
  border: 2px solid var(--bg-card);
  font-size: 11px;
  font-weight: 700;
  margin-left: -8px;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.svc.svc-feature .svc-currencies .chip {
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .svc.svc-feature { grid-column: span 1; }
}

/* ───────── Live rate country grid ───────── */
.rates-head { max-width: 760px; }
.rate-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  max-width: 480px;
  margin: 0 auto 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px;
  box-shadow: var(--shadow-sm);
}
.rt-opt {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-400);
  transition: background .18s, color .18s;
}
.rt-opt svg { width: 17px; height: 17px; }
.rt-opt:hover:not(.active) { color: var(--ink); }
.rt-opt.active { background: var(--ink); color: #fff; }
.rt-opt.active svg { color: var(--red); }

.rate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.rate-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.rate-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.rate-flag {
  width: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rate-flag img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.12);
}
.rate-flag-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.02em;
}
.rate-main { flex: 1; min-width: 0; }
.rate-country {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rate-live {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 3px;
}
.rate-live b {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-700);
}
.rate-per { font-family: var(--font-mono); font-size: 10px; color: var(--ink-400); }
.rate-delta { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; }
.rate-delta.up { color: var(--green); }
.rate-delta.down { color: var(--red); }
.rate-right { display: flex; align-items: center; flex-shrink: 0; }
.rate-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-400);
  transition: color .18s;
}
.rate-card:hover .rate-code { color: var(--red); }
.rate-arrow {
  width: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--red);
  font-weight: 700;
  transform: translateX(-4px);
  transition: width .2s, opacity .2s, transform .2s, margin .2s;
}
.rate-card:hover .rate-arrow { width: 16px; opacity: 1; transform: none; margin-left: 7px; }

.rate-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-400);
}
.rate-updated { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; }
.rate-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31,138,91,.5);
  animation: pulse-g 1.6s infinite;
}
.rate-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
}
.rate-viewall:hover { color: var(--red); }
.rate-viewall svg { transition: transform .2s; }
.rate-viewall:hover svg { transform: translateX(3px); }

@media (max-width: 1080px) { .rate-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px)  { .rate-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .rate-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .rate-grid { grid-template-columns: 1fr; } }

/* ───────── Why us / features ───────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: var(--ink); transform: translateY(-2px); }
.feature .ix {
  width: 40px; height: 40px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature.is-red .ix { background: var(--red); }
.feature h3 { font-size: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.005em; }
.feature p { color: var(--ink-500); font-size: 14.5px; }

@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

/* ───────── How it works ───────── */
.howit {
  background: var(--bg);
  padding: clamp(40px, 5vw, 72px) 0;
}
.howit .section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* connector line through the number circles */
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(229,32,42,.15), rgba(229,32,42,.55) 50%, rgba(229,32,42,.15));
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(165deg, #F0353F, var(--red-600));
  color: #fff;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(229,32,42,.55), 0 0 0 6px var(--bg);
  transition: transform .25s, box-shadow .25s;
}
.step-icon {
  width: 46px;
  height: 46px;
  margin: 22px auto 16px;
  border-radius: 13px;
  background: var(--red-50);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s, transform .25s;
}
.step-icon svg { width: 23px; height: 23px; }
.step h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 10px;
}
.step p {
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 260px;
  margin: 0 auto 16px;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
}
.step-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}
.step:hover .step-num {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 28px -8px rgba(229,32,42,.6), 0 0 0 6px var(--bg);
}
.step:hover .step-icon {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ───────── Branches / map ───────── */
.branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.branches-copy h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  margin-top: 16px;
}
.branches-copy > p {
  color: var(--ink-500);
  font-size: 18px;
  margin-top: 16px;
  max-width: 520px;
}
.branches-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  max-width: 460px;
}
.branches-stats .item strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
}
.branches-stats .item .red { color: var(--red); }
.branches-stats .item span { color: var(--ink-500); font-size: 14px; }

.branches-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.bchip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.bchip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(229,32,42,.5);
  animation: pulse-g 1.8s infinite;
}
.bchip-soon { color: var(--ink-400); background: transparent; border-style: dashed; box-shadow: none; }

.map-card {
  position: relative;
  aspect-ratio: 6 / 7;
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(229,32,42,.10), transparent 55%),
    white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.india-path {
  transition: fill .25s;
  filter: drop-shadow(0 10px 24px rgba(229,32,42,.12));
}
.map-card:hover .india-path { fill: #FFF1F2; }
.map-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.map-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2ED57C;
  box-shadow: 0 0 0 0 rgba(46,213,124,.6);
  animation: pulse-green 1.6s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,213,124,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(46,213,124,0); }
}

@media (max-width: 900px) {
  .branches { grid-template-columns: 1fr; gap: 40px; }
  .map-card { max-width: 420px; }
}

/* ───────── Testimonials ───────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote .stars { color: var(--red); font-size: 14px; }
.quote blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
  letter-spacing: -0.005em;
}
.quote-author {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--ink));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.quote-author .meta strong { display: block; font-size: 14px; }
.quote-author .meta span { display: block; font-size: 12.5px; color: var(--ink-400); }

@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }

/* ───────── FAQ ───────── */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 24px;
  color: var(--ink-400);
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; color: var(--red); }
.faq-body {
  padding: 0 4px 22px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

/* ───────── Final CTA ───────── */
.final-cta {
  position: relative;
  background: var(--red);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 96px);
  overflow: hidden;
  margin: 0 var(--gutter) clamp(64px, 8vw, 100px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 720px;
  color: white;
  position: relative;
}
.final-cta p {
  max-width: 540px;
  font-size: 18px;
  margin-top: 18px;
  color: rgba(255,255,255,.85);
  position: relative;
}
.final-cta .ct-row {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
  position: relative;
}
.final-cta .btn-primary { background: white; color: var(--ink); box-shadow: none; }
.final-cta .btn-primary:hover { background: var(--bg); }
.final-cta .btn-ghost { color: white; border-color: rgba(255,255,255,.4); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ───────── Video stories ───────── */
.vstories .section-head { margin-bottom: 40px; }
.vstories-rail-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.vstories-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px var(--gutter) 14px;
  max-width: var(--max);
  margin: 0 auto;
  scrollbar-width: none;
}
.vstories-rail::-webkit-scrollbar { display: none; }

.vstory {
  position: relative;
  flex: 0 0 auto;
  width: 256px;
  aspect-ratio: 9 / 14;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vstory:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vstory-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
}
.vstory-thumb::part(image) { object-fit: cover; }
.vstory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.05) 0%, rgba(10,10,11,0) 36%, rgba(10,10,11,.62) 100%);
  pointer-events: none;
}
.vstory-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(10,10,11,.5);
  transition: transform .2s ease, background .2s;
}
.vstory-play svg { width: 24px; height: 24px; margin-left: 3px; }
.vstory:hover .vstory-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }

.vstory-meta {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  color: #fff;
  pointer-events: none;
}
.vstory-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.vstory-loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  font-size: 12.5px;
  color: rgba(255,255,255,.82);
}
.vstory-loc img {
  width: 18px; height: 13px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.vstory-loc em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.vstories-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.vstory-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, color .18s, transform .15s, background .18s;
}
.vstory-arrow svg { width: 20px; height: 20px; }
.vstory-arrow:hover { border-color: var(--ink); color: var(--red); }
.vstory-arrow:active { transform: scale(.94); }
.vstory-arrow:disabled { opacity: .35; cursor: default; border-color: var(--line); color: var(--ink-400); }

/* video lightbox */
.vlightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vlightbox.open { display: flex; }
.vlightbox-inner {
  position: relative;
  width: min(420px, 92vw);
  aspect-ratio: 9 / 16;
  max-height: 86vh;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vlightbox-inner iframe { width: 100%; height: 100%; border: 0; }
.vlightbox-inner .vlightbox-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}
.vlightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.vlightbox-close:hover { background: rgba(255,255,255,.24); }

@media (max-width: 560px) {
  .vstory { width: 70vw; max-width: 280px; }
  .vstories-nav { justify-content: center; }
}

/* ───── Hero responsive ───── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 470px; gap: 44px; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .leadcalc { max-width: 560px; }
  .hero-video { max-width: 520px; }
}
@media (max-width: 600px) {
  .hero-media { flex-direction: column; align-items: stretch; }
  .hero-qr { width: 100%; justify-content: center; padding: 16px; flex-direction: row; }
  .hero-qr img { width: 48px; }
  .hero-trust { gap: 16px; justify-content: center; text-align: center; flex-direction: column; }
  .hero-trust .vbar { display: none; }
  .hero h1 { font-size: clamp(28px, 9vw, 40px); line-height: 1.1; overflow-wrap: break-word; }
}
@media (max-width: 500px) {
  .branches-stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
