/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0a2342;
  --blue:   #1a5fbb;
  --sky:    #3b9eda;
  --accent: #e84b3c;
  --gold:   #f5a623;
  --green:  #27ae60;
  --light:  #f4f7fb;
  --gray:   #6b7280;
  --border: #dde3ef;
  --white:  #ffffff;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(10,35,66,.10);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: #1c2a3a;
  line-height: 1.6;
}

/* ── Top Bar ── */
.topbar {
  background: var(--navy);
  color: #a8c0dc;
  font-size: .8rem;
  text-align: center;
  padding: .45rem 1rem;
  letter-spacing: .03em;
}
.topbar span { color: var(--gold); font-weight: 600; }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #14376b 60%, #1a5fbb 100%);
  color: var(--white);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.page-header-text { flex: 1; }
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-logo-img {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.page-header .page-icon { font-size: 2rem; display: block; margin-bottom: .5rem; position: relative; }
.page-header h1 { font-size: clamp(1.35rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: .4rem; letter-spacing: -.02em; position: relative; }
.page-header h1 em { color: var(--gold); font-style: normal; }
.page-header p.sub { font-size: .92rem; color: #c8d8ec; max-width: 560px; position: relative; }

/* ── Nav ── */
nav.service-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(10,35,66,.07);
}
.nav-logo {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  font-weight: 900;
  font-size: .95rem;
  color: var(--navy);
  letter-spacing: .04em;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo em { color: var(--blue); font-style: normal; }
.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  padding: .3rem .75rem .3rem 1rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
}
nav.service-nav ul {
  list-style: none;
  display: flex;
  overflow-x: auto;
  gap: 0;
  flex: 1;
}
nav.service-nav ul li a {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1.2rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
nav.service-nav ul li a:hover { color: var(--blue); border-bottom-color: var(--blue); }
nav.service-nav ul li a.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ── Main layout ── */
main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }

/* ── Section ── */
.section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.section-header {
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.section-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-title-block h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.section-title-block p { color: var(--gray); font-size: .9rem; }

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  padding: 1.75rem 2rem;
}
.card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 6px 24px rgba(26,95,187,.14); border-color: var(--sky); }
.card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 100%);
}
.badge-featured {
  position: absolute; top: -1px; right: 16px;
  background: var(--blue); color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-best-value {
  position: absolute; top: -1px; right: 16px;
  background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase; letter-spacing: .06em;
}
.card-provider { font-size: .78rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.card-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.card-price { margin-bottom: .9rem; }
.price-amount { font-size: 1.75rem; font-weight: 900; color: var(--blue); line-height: 1; }
.price-period { font-size: .8rem; color: var(--gray); }
.card-features { list-style: none; margin-bottom: 1rem; flex: 1; }
.card-features li { font-size: .85rem; padding: .28rem 0 .28rem 1.3rem; position: relative; color: #374151; }
.card-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.card-features li.con::before { content: '✗'; color: #e53e3e; }
.card-features li.con { color: var(--gray); }
.card-cta {
  display: block; text-align: center;
  padding: .6rem 1rem; border-radius: 8px;
  font-weight: 700; font-size: .88rem;
  text-decoration: none; transition: all .2s; margin-top: auto;
}
.card-cta.primary { background: var(--blue); color: var(--white); }
.card-cta.primary:hover { background: var(--navy); }
.card-cta.secondary { background: var(--light); color: var(--navy); border: 1.5px solid var(--border); }
.card-cta.secondary:hover { background: var(--border); }

/* ── Affiliate Disclosure ── */
.affiliate-disclosure {
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gray);
  border-radius: 6px;
  padding: .55rem 1rem;
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.affiliate-disclosure strong { color: #4b5563; }

/* ── Notes ── */
.note {
  margin: 0 2rem 1.75rem;
  padding: .9rem 1.1rem;
  border-radius: 8px;
  font-size: .85rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.note.warn { background: #fffbeb; border: 1px solid #f6c90e; color: #7c5f00; }
.note.info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }
.note.tip  { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.note-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Comparison table ── */
.table-wrap { overflow-x: auto; padding: 0 2rem 1.75rem; }
table { width: 100%; border-collapse: collapse; font-size: .87rem; }
thead tr { background: var(--navy); color: var(--white); }
thead th { padding: .75rem 1rem; text-align: left; font-weight: 700; white-space: nowrap; }
tbody tr:nth-child(even) { background: #f8fafc; }
tbody tr:hover { background: #eef4ff; }
tbody td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); }
.winner-row { background: #f0f6ff !important; font-weight: 600; }
.winner-row td:first-child::before { content: '★ '; color: var(--gold); }
.tag { display: inline-block; padding: .15rem .5rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.tag.green  { background: #dcfce7; color: #166534; }
.tag.yellow { background: #fef9c3; color: #854d0e; }
.tag.red    { background: #fee2e2; color: #991b1b; }
.tag.blue   { background: #dbeafe; color: #1e40af; }

/* ── Footer ── */
footer {
  background: var(--navy); color: #8ca4c0;
  text-align: center; padding: 2.5rem 1.5rem; font-size: .85rem;
}
footer strong { color: var(--white); }
footer p { margin-top: .5rem; }
footer .disclaimer { max-width: 700px; margin: 1rem auto 0; font-size: .78rem; color: #607a99; }

/* ── Step Guide (Send Money page) ── */
.steps { padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-number {
  width: 44px; height: 44px;
  background: var(--blue); color: var(--white);
  border-radius: 50%; font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(26,95,187,.3);
}
.step-body { flex: 1; }
.step-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.step-body p { font-size: .9rem; color: #374151; line-height: 1.65; margin-bottom: .5rem; }
.step-body p:last-child { margin-bottom: 0; }
.step-connector { width: 2px; height: 24px; background: var(--border); margin-left: 21px; }
.step-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #eff6ff; border: 1px solid #bfdbfe;
  color: #1d4ed8; border-radius: 6px;
  padding: .25rem .65rem; font-size: .8rem; font-weight: 700;
  margin-top: .4rem;
}
.bank-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.bank-pill {
  background: #f0fdf4; border: 1px solid #86efac;
  color: #166534; border-radius: 999px;
  padding: .2rem .7rem; font-size: .8rem; font-weight: 600;
}
.step-screenshots { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .85rem; }
.step-screenshot {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,35,66,.15);
  border: 1px solid var(--border);
  height: 320px; width: auto; object-fit: contain; background: #000;
}
.step-screenshot-caption { font-size: .75rem; color: var(--gray); text-align: center; margin-top: .3rem; }
.step-screenshot-wrap { display: flex; flex-direction: column; }
.qr-wrap {
  position: relative; display: inline-block;
  border-radius: 14px; overflow: hidden;
  max-width: 260px; width: 100%; margin-top: .75rem;
  box-shadow: 0 4px 16px rgba(10,35,66,.15);
  border: 1px solid var(--border);
}
.qr-wrap::before {
  content: '🔒 Identity Hidden';
  position: absolute; top: 0; left: 0; right: 0; height: 22%;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--gray);
  z-index: 2; letter-spacing: .03em;
}
.qr-img { display: block; width: 100%; height: auto; border-radius: 14px; }

/* ── Agent Contact Form ── */
.agent-form-wrap {
  padding: 1.75rem 2rem;
}
.agent-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.form-group input {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: #1c2a3a;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,187,.12);
}
.form-group input::placeholder { color: #9ca3af; }
.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--navy); }
.form-fine-print {
  margin-top: .75rem;
  font-size: .76rem;
  color: var(--gray);
}

/* ── FAQ ── */
.faq-list { padding: 0 0 .5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: var(--light); }
.faq-chevron {
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-answer {
  display: none;
  padding: 0 2rem 1.1rem;
  font-size: .88rem;
  color: #374151;
  line-height: 1.7;
}
.faq-answer p { margin-bottom: .4rem; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--blue); }

/* ── Tello CTA button (inline in step) ── */
.tello-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  width: auto;
  padding: .55rem 1.2rem;
}

/* ── Amazon Ordering Tool ── */
.order-tool-wrap { padding: 1.75rem 2rem; }

.url-input-row {
  display: flex;
  gap: .75rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
}
.url-input {
  flex: 1;
  padding: .7rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: #1c2a3a;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.url-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,187,.12);
}
.url-input::placeholder { color: #9ca3af; }
.lookup-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: .7rem 1.4rem;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.lookup-btn:hover { background: var(--navy); }
.lookup-btn:disabled { background: #93c5fd; cursor: not-allowed; }

.product-preview {
  display: none;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  gap: 1rem;
  align-items: flex-start;
}
.product-preview.visible { display: flex; }
.product-thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.product-info { flex: 1; min-width: 0; }
.product-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-fields {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.product-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.product-field label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.product-field input {
  width: 110px;
  padding: .45rem .65rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
  font-family: inherit;
  color: #1c2a3a;
  outline: none;
  transition: border-color .2s;
}
.product-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(26,95,187,.1);
}

.cost-breakdown {
  display: none;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.cost-breakdown.visible { display: block; }
.cost-breakdown h4 {
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cost-rows { display: flex; flex-direction: column; gap: .4rem; }
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: #374151;
}
.cost-row.total {
  border-top: 1.5px solid #bfdbfe;
  margin-top: .4rem;
  padding-top: .5rem;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.cost-row .cost-val { font-weight: 700; }
.cost-row.total .cost-val { color: var(--blue); font-size: 1.1rem; }
.delivery-banner {
  margin-top: .85rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 7px;
  padding: .55rem .9rem;
  font-size: .85rem;
  color: #166534;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.order-form-wrap {
  display: none;
  border-top: 1.5px solid var(--border);
  padding-top: 1.25rem;
  margin-top: .25rem;
}
.order-form-wrap.visible { display: block; }
.order-form-wrap h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.order-form { display: flex; flex-direction: column; gap: .85rem; }
.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.order-field { display: flex; flex-direction: column; gap: .35rem; }
.order-field label { font-size: .8rem; font-weight: 700; color: var(--navy); }
.order-field input,
.order-field select,
.order-field textarea {
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: .88rem;
  font-family: inherit;
  color: #1c2a3a;
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,187,.1);
}
.order-field textarea { resize: vertical; min-height: 70px; }
.order-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: .8rem 2rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
  letter-spacing: .01em;
}
.order-submit:hover { background: #1e8449; }
.order-fine-print { font-size: .76rem; color: var(--gray); margin-top: .5rem; }

.lookup-error {
  display: none;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.lookup-error.visible { display: block; }

/* Variant selectors */
.variant-selects {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: .75rem;
}
.variant-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 160px;
}
.variant-field label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.variant-select {
  padding: .45rem .65rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .88rem;
  font-family: inherit;
  color: #1c2a3a;
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.variant-select:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(26,95,187,.1); }

.variant-price-note {
  font-size: .78rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: .4rem .7rem;
  margin-bottom: .6rem;
}

/* Cart variant tags */
.cart-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .35rem;
}
.cart-variant-tag {
  font-size: .76rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  border-radius: 999px;
  padding: .15rem .55rem;
}

/* Manual entry form */
.manual-entry-form {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.25rem;
}
.manual-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .75rem;
  margin-bottom: .5rem;
}
.manual-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.manual-field.full-width { grid-column: 1 / -1; }
.manual-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
}
.field-optional { font-weight: 400; color: var(--gray); font-size: .75rem; }
.manual-field input {
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: .88rem;
  font-family: inherit;
  color: #1c2a3a;
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.manual-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,187,.1);
}

/* Cart item Amazon link */
.cart-item-link {
  font-size: .75rem;
  color: var(--blue);
  text-decoration: none;
  display: inline-block;
  margin-bottom: .3rem;
}
.cart-item-link:hover { text-decoration: underline; }

/* Add to Order button */
.add-item-btn {
  margin-top: .85rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: .6rem 1.4rem;
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s;
}
.add-item-btn:hover { background: #1e8449; }

/* Cart */
.order-cart {
  display: none;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.order-cart.visible { display: block; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.cart-title { font-size: .9rem; font-weight: 800; color: var(--navy); }
.add-another-btn {
  background: none;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 6px;
  padding: .3rem .8rem;
  font-size: .8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
}
.add-another-btn:hover { background: var(--blue); color: var(--white); }
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-title {
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: .3rem;
}
.cart-qty-input {
  width: 52px;
  padding: .2rem .35rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: .82rem;
  font-family: inherit;
  text-align: center;
}
.cart-item-subtotal { font-size: .82rem; font-weight: 700; color: var(--blue); }
.cart-remove-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1rem;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color .15s, background .15s;
}
.cart-remove-btn:hover { color: #dc2626; background: #fee2e2; }

/* ── Flight Request Form ── */
.flight-form { display: flex; flex-direction: column; gap: 1rem; }
.flight-section-label {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
  margin-top: .25rem;
}
.flight-form > .flight-section-label:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.flight-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.flight-form-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.trip-type-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.trip-type-option {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color .2s, background .2s;
  user-select: none;
}
.trip-type-option:hover { border-color: var(--blue); background: #eff6ff; }
.trip-type-option input[type="radio"] { accent-color: var(--blue); width: 15px; height: 15px; }
.trip-type-option:has(input:checked) {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  /* Header */
  .page-header { padding: 1.25rem 1rem; }
  .page-header-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .page-logo-img { height: 60px; }
  .page-header p.sub { font-size: .86rem; }

  /* Nav */
  nav.service-nav ul li a { padding: .75rem .85rem; font-size: .82rem; gap: .3rem; }

  /* Main */
  main { padding: 1.5rem .75rem 3rem; }

  /* Sections */
  .section-header { padding: 1.25rem 1rem 1rem; flex-direction: column; gap: .6rem; }
  .section-icon { width: 44px; height: 44px; font-size: 1.5rem; }
  .section-title-block h2 { font-size: 1.15rem; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; padding: 1rem; }

  /* Tables */
  .table-wrap { padding: 0 .75rem 1.25rem; }
  table { font-size: .8rem; }
  thead th, tbody td { padding: .55rem .65rem; }

  /* Notes */
  .note { margin: 0 .75rem 1.25rem; padding: .75rem .9rem; font-size: .83rem; }

  /* Steps */
  .steps { padding: 1.25rem 1rem; gap: 1rem; }
  .step { gap: .85rem; }
  .step-number { width: 36px; height: 36px; font-size: .95rem; flex-shrink: 0; }
  .step-connector { margin-left: 17px; height: 18px; }
  .step-body h3 { font-size: .97rem; }
  .step-body p { font-size: .86rem; }
  .step-tag { font-size: .76rem; }
  .bank-pill { font-size: .76rem; padding: .18rem .6rem; }

  /* Screenshots — stack vertically, fill width */
  .step-screenshots { flex-direction: column; gap: .6rem; }
  .step-screenshot {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
  }

  /* CTA buttons in steps */
  .step-body .card-cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center;
    padding: .65rem 1rem !important;
    box-sizing: border-box;
  }

  /* Affiliate disclosure */
  .affiliate-disclosure { font-size: .76rem; }

  /* FAQ */
  .faq-question { padding: .9rem 1rem; font-size: .88rem; }
  .faq-answer { padding: 0 1rem .9rem; }

  /* Agent contact form */
  .agent-form-wrap { padding: 1.25rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; align-self: stretch; }

  /* Flight form */
  .flight-form-grid,
  .flight-form-grid.cols-3 { grid-template-columns: 1fr; }
  .trip-type-row { gap: .5rem; }
  .trip-type-option { font-size: .83rem; padding: .45rem .8rem; }

  /* Amazon ordering tool */
  .order-tool-wrap { padding: 1.25rem 1rem; }
  .url-input-row { flex-direction: column; }
  .lookup-btn { width: 100%; padding: .7rem 1rem; }
  .product-preview.visible { flex-direction: column; align-items: center; }
  .product-thumb { width: 100px; height: 100px; }
  .product-fields { flex-direction: column; }
  .product-field input { width: 100%; }
  .manual-entry-grid { grid-template-columns: 1fr; }
  .manual-field.full-width { grid-column: 1; }
  .add-item-btn { width: 100%; }
  .cart-item { gap: .6rem; }
  .cart-item-img { width: 48px; height: 48px; }
  .cart-item-meta { gap: .3rem; font-size: .77rem; }
  .order-form-grid { grid-template-columns: 1fr; }
  .order-submit { width: 100%; text-align: center; align-self: stretch; }

}
