/* Corridor landing pages — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #0A0E1A;
  color: #E8E0D5;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0E1A; }
::-webkit-scrollbar-thumb { background: #FFB200; border-radius: 3px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
a { color: #FFB200; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,178,0,0.1);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: #FFB200; letter-spacing: -0.03em; text-decoration: none;
}
.nav-logo span { color: #FFFFFF; }
.nav-links { display: flex; gap: 2rem; font-size: 0.875rem; color: rgba(232,224,213,0.6); }
.nav-links a { color: inherit; transition: color 0.2s; }
.nav-links a:hover { color: #E8E0D5; text-decoration: none; }
@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; font-size: 0.8rem; }
}

/* Layout */
.container { max-width: 860px; margin: 0 auto; padding: 8rem 2rem 5rem; }
@media (max-width: 640px) { .container { padding: 6rem 1.25rem 3rem; } }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem; color: rgba(232,224,213,0.4); margin-bottom: 1.5rem;
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: rgba(232,224,213,0.5); }
.breadcrumb a:hover { color: #FFB200; text-decoration: none; }
.breadcrumb-sep { opacity: 0.4; }

/* Hero */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; color: #FFB200;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem; padding: 0.35rem 0.875rem;
  border: 1px solid rgba(255,178,0,0.3); border-radius: 2rem;
}
.page-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.page-subtitle { color: rgba(232,224,213,0.6); font-size: 1.05rem; max-width: 560px; margin-bottom: 2.5rem; }

/* Calculator card */
.calc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,178,0,0.12);
  border-radius: 16px; padding: 2rem;
  margin-bottom: 2rem;
}
.calc-title { font-size: 1.15rem; margin-bottom: 1.5rem; color: #FFB200; }
.calc-input-row {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-end; flex-wrap: wrap;
}
.input-group { flex: 1; min-width: 160px; }
.input-group label { display: block; font-size: 0.8rem; color: rgba(232,224,213,0.5); margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.input-group input {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,178,0,0.2);
  border-radius: 10px; color: #FFFFFF; font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.input-group input:focus { border-color: #FFB200; }
.calc-btn {
  padding: 0.75rem 2rem;
  background: #FFB200; color: #0A0E1A;
  border: none; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: opacity 0.2s; white-space: nowrap;
}
.calc-btn:hover { opacity: 0.88; }
.calc-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Results table */
.results-wrap { display: none; }
.results-wrap.visible { display: block; }
.results-header {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(232,224,213,0.4); margin-bottom: 0.75rem;
}
.result-table { width: 100%; border-collapse: collapse; }
.result-table th {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(232,224,213,0.4); padding: 0.5rem 0.75rem;
  text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.result-table td {
  padding: 0.875rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.95rem; vertical-align: middle;
}
.result-table tr.cheapest-row { background: rgba(255,178,0,0.05); }
.result-table tr.cheapest-row td:first-child { border-left: 2px solid #FFB200; }
.provider-name { font-weight: 600; color: #FFFFFF; }
.provider-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  padding: 0.1rem 0.5rem; border-radius: 2rem; margin-left: 0.5rem;
  background: #FFB200; color: #0A0E1A; vertical-align: middle;
}
.fee-val { color: #FFB200; font-weight: 600; }
.received-val { color: #FFFFFF; font-weight: 600; }
.settle-val { color: rgba(232,224,213,0.6); font-size: 0.875rem; }
.na-val { color: rgba(232,224,213,0.3); font-size: 0.85rem; }

/* Savings callout */
.savings-card {
  background: rgba(255,178,0,0.07); border: 1px solid rgba(255,178,0,0.25);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  margin-top: 1.5rem; display: none;
  font-size: 1.05rem;
}
.savings-card.visible { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.savings-card .savings-icon { font-size: 1.5rem; }
.savings-card .savings-text { color: #E8E0D5; }
.savings-card .savings-amount { color: #FFB200; font-weight: 700; font-size: 1.15rem; }

/* CTA button */
.cta-wrap { margin-top: 2rem; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: #FFB200; color: #0A0E1A;
  border-radius: 10px; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  transition: opacity 0.2s; text-decoration: none;
}
.cta-btn:hover { opacity: 0.88; text-decoration: none; }
.cta-btn svg { flex-shrink: 0; }

/* Trust strip */
.trust-strip {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin: 3rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; color: rgba(232,224,213,0.7); }
.trust-icon { color: #FFB200; font-size: 1.1rem; flex-shrink: 0; }

/* FAQ */
.section-title { font-size: 1.5rem; margin-bottom: 1.5rem; margin-top: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; color: #FFFFFF;
  font-family: 'DM Sans', sans-serif; font-size: 0.975rem; font-weight: 600;
  padding: 1.1rem 1.25rem; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: #FFB200; }
.faq-chevron { flex-shrink: 0; transition: transform 0.2s; color: #FFB200; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 1.25rem 1.1rem;
  color: rgba(232,224,213,0.7); font-size: 0.925rem; line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Related corridors */
.related-section { margin-top: 3rem; }
.related-grid { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.related-card {
  flex: 1; min-width: 180px;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,178,0,0.15);
  border-radius: 12px; transition: border-color 0.2s; text-decoration: none;
  display: block;
}
.related-card:hover { border-color: #FFB200; text-decoration: none; }
.related-card .related-label { font-size: 0.8rem; color: rgba(232,224,213,0.5); margin-bottom: 0.25rem; }
.related-card .related-name { font-family: 'Syne', sans-serif; font-size: 1rem; color: #FFB200; font-weight: 700; }

/* Footer */
.site-footer {
  margin-top: 5rem; padding: 2.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  font-size: 0.85rem; color: rgba(232,224,213,0.4);
}
.footer-brand { font-family: 'Syne', sans-serif; font-size: 1rem; color: #FFB200; font-weight: 800; }
.footer-brand span { color: #E8E0D5; opacity: 0.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.footer-links a { color: rgba(232,224,213,0.5); font-size: 0.8rem; }
.footer-links a:hover { color: #FFB200; text-decoration: none; }
.footer-corridors { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.footer-corridors a { color: rgba(232,224,213,0.4); font-size: 0.8rem; }
.footer-corridors a:hover { color: #FFB200; text-decoration: none; }

/* Spinner */
.spinner { display: none; width: 18px; height: 18px; margin-left: 0.5rem; border: 2px solid rgba(255,178,0,0.3); border-top-color: #FFB200; border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.calc-btn.loading .spinner { display: inline-block; }
.calc-btn.loading .btn-text { opacity: 0.5; }

/* Error state */
.error-msg { color: #ff6b6b; font-size: 0.875rem; margin-top: 0.75rem; display: none; }
.error-msg.visible { display: block; }
