:root {
  --orange: #FF6600;
  --orange-dark: #D95700;
  --orange-light: #FFF0E6;
  --white: #FFFFFF;
  --bg: #F7F7F7;
  --text: #222222;
  --text-muted: #666666;
  --border: #DDDDDD;
  --success: #16853F;
  --error: #C62828;
  --shadow: 0 10px 30px rgba(34, 34, 34, 0.06);
  --shadow-lg: 0 22px 50px rgba(255, 102, 0, 0.14), 0 8px 20px rgba(34, 34, 34, 0.06);
  --radius: 18px;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Roboto", sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255, 102, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(255, 102, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #fff8f2 0%, var(--bg) 42%, var(--bg) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-dark);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
}

/* —— Header —— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(180deg, #ff751a 0%, var(--orange) 100%);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(217, 87, 0, 0.28);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.45rem;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-logo img {
  display: block;
  width: auto;
  height: 46px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-brand {
  display: none;
}

.nav-backdrop {
  display: none;
}

.site-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
  transition: opacity 0.15s ease;
}

.site-nav a:hover {
  opacity: 0.88;
}

.site-nav a.btn-light {
  color: var(--orange);
  opacity: 1;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.site-nav a.btn-light:hover {
  background: #fff;
  color: var(--orange-dark);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.lang-combo {
  position: relative;
  margin-left: 0.55rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.lang-combo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  line-height: 1;
}

.lang-combo-btn:hover,
.lang-combo.is-open .lang-combo-btn {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.55);
}

.lang-combo-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.95);
  margin-top: 1px;
}

.lang-combo.is-open .lang-combo-caret {
  transform: rotate(180deg);
}

.lang-combo-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 60;
  min-width: 11.5rem;
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.lang-combo-menu[hidden] {
  display: none !important;
}

.lang-combo-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
}

.lang-combo-option:hover {
  background: rgba(255, 102, 0, 0.1);
  opacity: 1 !important;
}

.lang-combo-option.is-active {
  background: rgba(255, 102, 0, 0.14);
  color: var(--orange-dark) !important;
}

.lang-combo-option-code {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.lang-combo-option-name {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.82rem;
}

.lang-combo-option.is-active .lang-combo-option-name {
  color: var(--orange-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-block {
  width: 100%;
}

/* —— Main / Hero —— */
.main {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 1.25rem;
  flex: 1 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.25rem;
  align-items: start;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  animation: riseIn 0.55s ease both;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  animation: riseIn 0.65s 0.08s ease both;
}

.hero > .home-request-band {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero > .home-request-band .home-request-band-inner {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
}

.hero > .home-request-band .section-title {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.hero > .home-request-band .home-request-band-cta .btn {
  width: 100%;
}

.hero-brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
}

.hero-copy h1 {
  margin: 0 0 1rem;
}

.hero-line {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text);
}

.hero-line-accent {
  color: var(--orange);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.hero-points {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-points li {
  background: var(--white);
  border: 1px solid rgba(255, 102, 0, 0.22);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.08);
}

.hero-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-plans {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 42ch;
}

.hero-plans li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-plans strong {
  color: var(--text);
  font-weight: 600;
}

.hero-plans li:last-child strong {
  color: var(--orange-dark);
}

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

/* —— Transfer card —— */
.transfer-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(221, 221, 221, 0.9);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.transfer-card-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 55%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 102, 0, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.transfer-card > *:not(.transfer-card-glow) {
  position: relative;
  z-index: 1;
}

.transfer-card.dragover {
  outline: 2px dashed var(--orange);
  outline-offset: 3px;
  background: linear-gradient(180deg, #fff5ec, #fff);
  box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.08), var(--shadow-lg);
}

.upload-zone {
  border: 1.5px dashed rgba(255, 102, 0, 0.35);
  border-radius: 14px;
  padding: 0.85rem;
  background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}

.upload-zone.is-preparing .upload-actions,
.upload-zone.is-preparing .upload-hint {
  visibility: hidden;
}

.upload-prepare {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(2px);
}

.upload-prepare[hidden] {
  display: none !important;
}

.upload-prepare-spinner {
  width: 2.25rem;
  height: 2.25rem;
  border: 3px solid rgba(255, 102, 0, 0.22);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: mandalo-spin 0.75s linear infinite;
}

.upload-prepare-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

@keyframes mandalo-spin {
  to { transform: rotate(360deg); }
}

.transfer-card.dragover .upload-zone {
  border-color: var(--orange);
  background: var(--orange-light);
}

.upload-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.upload-btn {
  background: var(--orange-light);
  border: none;
  border-radius: 12px;
  padding: 1rem 0.65rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.upload-btn:hover {
  background: #ffe0cc;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 102, 0, 0.12);
}

.upload-btn .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff7a26, var(--orange-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(217, 87, 0, 0.35);
}

.upload-hint {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.upsell-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin: 0.9rem 0 0.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.upsell-row a {
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.upsell-row .bolt {
  filter: grayscale(0);
}

.file-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  max-height: 150px;
  overflow: auto;
}

.file-list-more {
  justify-content: center !important;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem !important;
  border: none !important;
  background: transparent !important;
}

.file-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  animation: riseIn 0.25s ease both;
}

.file-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange-dark);
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-meta {
  flex: 1;
  min-width: 0;
}

.file-meta strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.file-remove {
  border: none;
  background: transparent;
  color: var(--error);
  cursor: pointer;
  font-size: 1.1rem;
}

.form-fields {
  margin-top: 0.35rem;
}

.recipients-block {
  margin-bottom: 0.25rem;
}

.recipients-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.recipients-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.recipients-list {
  display: flex;
  flex-direction: column;
}

.recipient-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.recipient-row .recipient-input {
  flex: 1;
  min-width: 0;
}

.recipient-add,
.recipient-remove {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.recipient-add {
  color: var(--orange);
  border-color: rgba(255, 102, 0, 0.35);
  background: var(--orange-light);
}

.recipient-add:hover:not(:disabled) {
  background: #ffe0cc;
  border-color: var(--orange);
}

.recipient-add:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.recipient-remove {
  color: var(--error);
}

.recipient-remove:hover {
  background: #fdecea;
  border-color: #e8a0a0;
}

.recipients-hint {
  margin: 0.35rem 0 0.15rem;
  font-size: 0.8rem;
}

.field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  transition: border-color 0.15s ease;
}

.field:focus-within {
  border-color: var(--orange);
}

.field input,
.field textarea {
  flex: 1;
  border: none;
  outline: none;
  font: inherit;
  background: transparent;
  color: var(--text);
  resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #999;
}

.field .counter {
  color: var(--text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.transfer-footer {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  /*border-top: 1px solid var(--border);*/
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chip:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.chip-caret {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.expiry-cancel-hint {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.82em;
}

.chip-password[aria-expanded="true"] {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange-dark);
}

.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  cursor: help;
}

.info-tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  background: var(--white);
}

.info-tip-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%);
  width: min(16.5rem, 72vw);
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 20;
}

.info-tip-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #2a2a2a;
}

.info-tip:hover .info-tip-bubble,
.info-tip:focus .info-tip-bubble,
.info-tip:focus-within .info-tip-bubble {
  opacity: 1;
  visibility: visible;
}

.password-hint {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.icon-btn:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.transfer-submit {
  margin-top: 0.85rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a26 0%, var(--orange) 55%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  padding: 0.95rem 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.transfer-submit:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.42);
  transform: translateY(-1px);
}

.transfer-submit:active {
  transform: translateY(1px);
}

.transfer-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.progress {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.75rem;
  display: none;
}

.progress.visible {
  display: block;
}

.progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), #ff944d);
  transition: width 0.2s ease;
}

.options-panel {
  display: none;
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: var(--orange-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 102, 0, 0.15);
}

.options-panel.open {
  display: block;
  animation: riseIn 0.2s ease both;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #e8f5e9;
  color: var(--success);
}

.alert-error {
  background: #fdecea;
  color: var(--error);
}

.alert-info {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
}

.auth-card h1 {
  font-size: 2rem;
  text-align: center;
}

.transfer-done-card {
  max-width: 440px;
  padding: 1.75rem 1.5rem 1.6rem;
  text-align: center;
}

.transfer-done-hero {
  display: flex;
  justify-content: center;
  margin: -0.25rem 0 0.85rem;
}

.transfer-done-hero__img {
  width: min(220px, 68vw);
  height: auto;
  display: block;
  animation: transfer-done-float 3.6s ease-in-out infinite;
  filter: drop-shadow(0 14px 24px rgba(255, 102, 0, 0.22));
}

@keyframes transfer-done-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .transfer-done-hero__img {
    animation: none;
  }
}

.transfer-done-card h1 {
  margin: 0 0 0.4rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.transfer-done-lead {
  text-align: center;
  margin: 0 auto 0.35rem;
  max-width: 32ch;
  line-height: 1.45;
}

.transfer-done-open {
  text-align: center;
  margin: 0.85rem 0 0;
}

.transfer-done-actions {
  text-align: center;
  margin: 1.35rem 0 0;
}

.transfer-done-actions .btn-wide {
  display: inline-flex;
  min-width: min(100%, 260px);
  justify-content: center;
}

.transfer-done-card .link-share-box {
  margin-top: 1.15rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--orange-light);
  border-color: var(--orange);
}

.plan-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.plan-choice label {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem;
  cursor: pointer;
  display: block;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.plan-choice input {
  margin-right: 0.35rem;
}

.plan-choice label:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange-light), var(--white) 40%);
  box-shadow: var(--shadow-lg);
}

.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

.footer-copy a {
  color: var(--text);
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--orange);
}

.footer-heart {
  display: inline-block;
  color: #e53935;
  margin-left: 0.25rem;
  animation: heartbeat 1.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  60% { transform: scale(1); }
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--orange-light);
  color: var(--orange-dark);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text) !important;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-google:hover {
  background: #fafafa;
  border-color: #ccc;
  color: var(--text) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-google-icon {
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.seo-block {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0.5rem;
}

.seo-block > p {
  max-width: 62ch;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.seo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem 2.25rem;
  align-items: start;
  margin-top: 2.5rem;
}

.seo-split > .seo-block {
  margin-top: 0;
  padding-top: 1.5rem;
}

.seo-split-main > p {
  max-width: none;
}

.seo-split-main .seo-grid {
  grid-template-columns: 1fr;
}

.seo-split-faq .faq-list {
  max-width: none;
}

.seo-split-faq .section-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-grid article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 102, 0, 0.14);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
}

.seo-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--orange-dark);
}

.seo-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 720px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0.65rem 0 0.15rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.seo-cta {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .seo-split {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1.75rem;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-block {
    margin-top: 1.75rem;
    padding-inline: 0.25rem;
  }

  .seo-split > .seo-block {
    margin-top: 0;
  }
}


.legal-page {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 2rem;
  box-shadow: var(--shadow);
}

.legal-page h2 {
  margin-top: 1.75rem;
  font-size: 1.35rem;
  color: var(--orange-dark);
}

.legal-page h3 {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: var(--text);
  line-height: 1.65;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-updated {
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-page {
    padding: 1.15rem 1rem 1.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0.55rem 0.85rem;
    min-height: 3.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-logo img {
    height: 34px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(18rem, 86vw);
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: 1.15rem 1.1rem 1.5rem;
    background: linear-gradient(180deg, #ff751a 0%, var(--orange) 55%, var(--orange-dark) 100%);
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.22);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.5rem 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .nav-brand:hover {
    background: transparent;
    opacity: 1;
  }

  .nav-brand img {
    display: block;
    width: auto;
    height: 36px;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
  }

  .site-nav a {
    padding: 0.85rem 0.75rem;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    opacity: 1;
  }

  .site-nav a.btn-light {
    margin-top: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .lang-combo {
    margin: 0.85rem 0 0;
    padding: 0.85rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .lang-combo-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .lang-combo-menu {
    position: static;
    margin-top: 0.4rem;
    min-width: 0;
    width: 100%;
    box-shadow: none;
  }

  .lang-combo-option {
    padding: 0.7rem 0.75rem !important;
    font-size: 0.95rem !important;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(20, 12, 4, 0.45);
  }

  .nav-backdrop[hidden] {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .main {
    width: calc(100% - 0.5rem);
    padding-top: 0.75rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: none;
    gap: 1.15rem;
  }

  .hero-copy,
  .hero-visual,
  .hero > .home-request-band {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-visual {
    width: 100%;
    order: 2;
  }

  .hero > .home-request-band {
    order: 3;
  }

  .hero-copy {
    order: 1;
  }

  .transfer-card {
    width: 100%;
    padding: 1rem 0.85rem 1.1rem;
  }

  .upsell-row,
  .recipients-hint,
  .expiry-cancel-hint,
  .hero-points,
  .info-tip {
    display: none;
  }

  .hero-copy {
    text-align: left;
    padding-inline: 0.75rem;
  }

  .hero-brand {
    display: none;
  }

  .hero-line {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .hero-lead {
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }

  .hero-plans {
    font-size: 0.88rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .upload-actions {
    grid-template-columns: 1fr;
  }

  .upsell-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .main {
    width: calc(100% - 0.35rem);
    padding-top: 0.65rem;
  }

  .hero-points {
    gap: 0.4rem;
  }

  .hero-plans {
    display: none;
  }

  .hero-copy {
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .file-list li,
  .options-panel.open,
  .footer-heart {
    animation: none !important;
  }
}

/* —— Advertising —— */
.ad-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 1.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.ad-hero .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.ad-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
}

.ad-hero .lead {
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.6;
}

.ad-highlights {
  margin: 1rem 0;
  padding-left: 1.15rem;
  color: var(--text);
}

.ad-price-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 102, 0, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.35rem;
  text-align: center;
}

.ad-price-label {
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.ad-price-value {
  margin: 0.2rem 0;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.ad-price-note {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.ad-section-lead {
  max-width: 62ch;
  margin: 0 0 1.25rem;
}

.ad-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.ad-package {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ad-package-featured {
  border-color: rgba(255, 102, 0, 0.45);
  box-shadow: var(--shadow-lg);
}

.ad-package-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

.ad-package h3 {
  margin: 0 1.5rem 0 0;
  font-size: 1.15rem;
}

.ad-package-days {
  margin: 0;
  font-weight: 600;
  color: var(--orange-dark);
}

.ad-package-imp {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ad-package-price {
  margin: 0.15rem 0;
  font-size: 1.35rem;
}

.ad-package-was {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.ad-package .btn {
  margin-top: auto;
  width: 100%;
}

.ad-quote-promo {
  display: block;
  margin-top: 0.35rem;
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.88rem;
}

.ad-quote-promo.is-hidden {
  display: none;
}

.ad-form.card-panel,
.card-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.form-grid label,
.ad-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.ad-form input,
.ad-form select {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.field-hint,
.small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.ad-quote {
  align-self: end;
  padding: 0.85rem 1rem;
  background: var(--orange-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.ad-channels,
.ad-pay {
  margin: 1.1rem 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem 1rem;
}

.ad-channels legend,
.ad-pay legend {
  padding: 0 0.35rem;
  font-weight: 700;
}

.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem !important;
  font-weight: 500 !important;
  margin: 0.35rem 0;
}

.check input {
  width: auto;
}

.bank-box {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 10px;
  border: 1px dashed rgba(255, 102, 0, 0.35);
}

.bank-box code {
  font-size: 0.95rem;
  word-break: break-all;
}

.ad-slot {
  margin: 2rem 0 0.5rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 720px;
}

.ad-slot-label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.ad-slot-link {
  display: block;
  position: relative;
}

.ad-slot-media {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 10px;
  background: #111;
}

.ad-ai-disclosure {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.ad-slot-link-ai .ad-ai-disclosure {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.35rem 0.5rem;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0 0 10px 10px;
  pointer-events: none;
}

.ad-ai-check {
  align-items: flex-start;
}

.ad-ai-check .field-hint {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
}

.admin-ads-head h1 {
  margin-bottom: 0.25rem;
}

.admin-ads-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-ad-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.admin-ad-preview img,
.admin-ad-preview video {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: 10px;
  background: #222;
}

.admin-ad-body h2 {
  font-size: 1.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.admin-ad-actions {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.admin-ad-actions .full {
  grid-column: 1 / -1;
}

.btn-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

@media (max-width: 900px) {
  .ad-hero,
  .admin-ad-card,
  .form-grid,
  .admin-ad-actions {
    grid-template-columns: 1fr;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

/* Growth CTA on download page */
.growth-cta {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--orange-light);
  border-radius: 12px;
  text-align: center;
}

.growth-cta p {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.abuse-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.download-file-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.download-file-link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.download-file-icon {
  flex-shrink: 0;
}

/* Pro schedule in transfer widget */
.field-schedule > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.field-schedule .schedule-picker,
.field-schedule input.flatpickr-input,
.field-schedule .flatpickr-input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
}

.field-schedule .flatpickr-input[readonly],
.field-schedule .schedule-picker[readonly] {
  cursor: pointer;
}

.field-schedule input.flatpickr-input[type="hidden"] + .schedule-picker,
.field-schedule .flatpickr-input.form-control {
  display: block;
}

/* Flatpickr — tema Mandalo */
.flatpickr-calendar {
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--border);
  font-family: inherit;
  width: 318px;
  z-index: 10050;
}

.flatpickr-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  z-index: 10040;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  .flatpickr-calendar.open {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    width: min(318px, calc(100vw - 1.5rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.flatpickr-open {
    overflow: hidden;
  }
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: #fff;
  color: var(--text);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--orange);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.flatpickr-day.today {
  border-color: var(--orange);
}

.flatpickr-day:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: var(--orange-light);
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .numInputWrapper span {
  color: var(--text-muted);
}

.numInputWrapper span:hover {
  background: var(--orange-light);
}

@media (max-width: 480px) {
  .flatpickr-calendar {
    width: min(318px, calc(100vw - 1.5rem));
  }
}

.field-save-contacts .checkbox-label,
.field-link-only .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.field-save-contacts .checkbox-label:hover,
.field-link-only .checkbox-label:hover {
  color: var(--text);
}

.field-save-contacts input[type="checkbox"],
.field-link-only input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.1rem 0 0;
  border: 2px solid #c8c8c8;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.field-save-contacts input[type="checkbox"]::after,
.field-link-only input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: center / 0.7rem no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l3 3 6-6.5' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.field-save-contacts .checkbox-label:hover input[type="checkbox"],
.field-link-only .checkbox-label:hover input[type="checkbox"] {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.field-save-contacts input[type="checkbox"]:focus-visible,
.field-link-only input[type="checkbox"]:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.22);
}

.field-save-contacts input[type="checkbox"]:checked,
.field-link-only input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}

.field-save-contacts input[type="checkbox"]:checked::after,
.field-link-only input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: scale(1);
}

.field-save-contacts input[type="checkbox"]:checked:hover,
.field-link-only input[type="checkbox"]:checked:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.field-link-only .field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
}

.link-share-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
  margin-top: 1rem;
}

.share-link-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.link-share-box .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Abuse report form */
.abuse-card {
  max-width: 520px;
}

.abuse-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Account: two-column layout */
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.account-send {
  margin-top: 0;
}

.account-send-title {
  margin-bottom: 0.35rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.account-send > .muted {
  margin: 0 0 1rem;
}

.account-send-widget {
  max-width: 440px;
}

.account-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.account-side-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.account-plan-line {
  margin: 0;
}

.account-meta .btn {
  margin-top: 0.5rem;
}

.contacts-section,
.account-transfers,
.account-password {
  margin: 0;
  min-width: 0;
  max-width: 100%;
}

.password-change-form {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
}

.password-requirements {
  margin: 0;
  font-size: 0.88rem;
}

.auth-forgot {
  margin: -0.35rem 0 0.85rem;
  text-align: right;
  font-size: 0.9rem;
}

.account-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .account-send-widget {
    max-width: none;
  }
}

/* Account contacts */
.contacts-add-form {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
  margin-bottom: 1.25rem;
}

.btn-link-danger {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}

.btn-icon-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--error);
  cursor: pointer;
  vertical-align: middle;
}

.btn-icon-danger:hover {
  background: rgba(198, 40, 40, 0.1);
}

.btn-icon-danger:focus-visible {
  outline: 2px solid var(--error);
  outline-offset: 2px;
}

.badge-scheduled {
  background: #e3f2fd;
  color: #1565c0;
}

/* Honeypot — hidden from humans, visible to naive bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0.25rem;
}

.seo-landing-body {
  margin: 0.75rem 0 1rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 36rem;
}

/* —— Trust bar —— */
.trust-bar {
  list-style: none;
  margin: 0.85rem 0 0.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  justify-content: center;
  max-width: 520px;
  margin-inline: auto;
}
.trust-bar li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  white-space: nowrap;
}
.trust-bar-more {
  text-align: center;
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
}

/* —— Compare table —— */
.compare-section {
  max-width: 920px;
  margin: 2.5rem auto 1rem;
  padding: 0 1.25rem 2rem;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--orange-light);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.compare-table tbody th {
  font-weight: 600;
  width: 36%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.compare-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
}

/* —— Request page —— */
.request-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}
.request-meta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.btn-text-danger {
  background: none;
  border: 0;
  color: var(--error);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  padding: 0;
  text-decoration: underline;
}
.account-dl-detail {
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
.account-requests {
  margin: 0 0 1.5rem;
}
.trust-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--success);
}
.trust-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 133, 63, 0.15);
}
.trust-status-list {
  margin: 0.75rem 0;
  padding-left: 1.2rem;
}
@media (max-width: 900px) {
  .request-page {
    grid-template-columns: 1fr;
  }
}

/* —— Download branding —— */
.download-card--branded {
  border-color: color-mix(in srgb, var(--download-accent, var(--orange)) 35%, var(--border));
  box-shadow: 0 22px 50px color-mix(in srgb, var(--download-accent, var(--orange)) 18%, transparent), var(--shadow);
}
.download-card--branded .btn-primary {
  background: var(--download-accent, var(--orange));
  border-color: var(--download-accent, var(--orange));
}
.download-card--branded .btn-primary:hover {
  filter: brightness(0.95);
}
.download-brand {
  text-align: center;
  margin: 0 0 1rem;
}
.download-brand-logo {
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
}
.download-brand-name {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--download-accent, var(--text));
}

/* —— Transfer cards (account) —— */
.account-transfers-lead {
  margin: 0 0 1rem;
  max-width: 42ch;
}
.transfer-cards {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}
.transfer-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}
.transfer-item-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
.transfer-item-main {
  min-width: 0;
  flex: 1 1 12rem;
}
.transfer-item-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: var(--font-display, 'Barlow Condensed', sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  word-break: break-word;
}
.transfer-item-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.transfer-item-meta .badge {
  vertical-align: middle;
}
.transfer-item-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}
.btn-danger {
  background: var(--error);
  border-color: var(--error);
  color: #fff;
}
.btn-danger:hover {
  filter: brightness(0.92);
}
.transfer-manage {
  margin-top: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 0.65rem;
}
.transfer-manage > summary {
  cursor: pointer;
  color: var(--orange-dark);
  font-weight: 700;
  list-style: none;
  user-select: none;
}
.transfer-manage > summary::-webkit-details-marker { display: none; }
.transfer-manage > summary::before {
  content: '▸ ';
  display: inline-block;
  transition: transform 0.15s ease;
}
.transfer-manage[open] > summary::before {
  transform: rotate(90deg);
}
.transfer-manage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.transfer-manage-form {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafafa;
  min-width: 0;
}
.transfer-manage-form h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.transfer-manage-form .form-group {
  margin: 0;
}
.transfer-manage-form input,
.transfer-manage-form textarea,
.transfer-manage-form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.transfer-manage-danger {
  border-color: rgba(198, 40, 40, 0.25);
  background: #fff7f7;
}

.branding-form {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
}
.brand-color-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.brand-color-row input[type="color"] {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
}
.brand-logo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.brand-logo-preview img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 8px;
  padding: 0.35rem;
}
.account-branding {
  margin: 0 0 1.5rem;
}

/* —— Home request CTA —— */
.hero-actions {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}
.hero-action {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 102, 0, 0.35);
  color: var(--orange-dark);
  background: #fff;
}
.hero-action.is-active,
.hero-action:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.hero-request-cta {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-inline: auto;
  line-height: 1.45;
}
.hero-request-cta a {
  font-weight: 700;
  white-space: nowrap;
}
.home-request-band {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
}
.home-request-band-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff7f0, #fff);
  border: 1px solid rgba(255, 102, 0, 0.22);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.home-request-band .section-title {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
}
.home-request-band p {
  margin: 0.35rem 0;
}
.home-request-band-cta {
  margin: 0;
}
@media (max-width: 800px) {
  .home-request-band-inner {
    grid-template-columns: 1fr;
  }
}

/* —— Trust status detail —— */
.trust-status-badge.is-degraded { color: #b36b00; }
.trust-status-badge.is-degraded .trust-dot { background: #e6a23c; box-shadow: 0 0 0 4px rgba(230, 162, 60, 0.2); }
.trust-status-badge.is-down { color: var(--error); }
.trust-status-badge.is-down .trust-dot { background: var(--error); box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.15); }
.trust-status-meta,
.trust-uptime {
  margin: 0.35rem 0;
}
.trust-components {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.trust-components li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.trust-components .is-ok .trust-comp-status { color: var(--success); font-weight: 700; }
.trust-components .is-degraded .trust-comp-status { color: #b36b00; font-weight: 700; }
.trust-components .is-down .trust-comp-status { color: var(--error); font-weight: 700; }
.trust-incidents-title {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
}
.trust-incidents {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}
