/* ============================================================
   Trademark Consultancy Group — Design System
   Palette + type from Docs/Trademark_Consultancy_Group_Strategy_v4.docx, Section 10
   ============================================================ */

:root {
  --navy: #0A2540;
  --blue: #1F6FEB;
  --gold: #C8A45D;
  --white: #FFFFFF;
  --light-gray: #F4F7FA;
  --dark-gray: #333333;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-label: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  --radius: 10px;
  --shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.14);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(200, 164, 93, 0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { box-shadow: 0 8px 24px rgba(10, 37, 64, 0.35); }

.btn-block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E7EBF0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.brand { flex-shrink: 0; display: flex; align-items: center; }
.brand img { height: 76px; }
.brand .brand-icon { display: none; }
@media (max-width: 600px) {
  /* Full lockup gets too wide to fit next to Pay Online + the menu button
     on phones — switch to the icon-only mark instead of shrinking the
     full lockup into illegibility. Threshold set well above typical phone
     widths (~320-430px) so this reliably triggers on real devices. */
  .brand .brand-full { display: none; }
  .brand .brand-icon { display: block; height: 42px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
.nav-pay-btn { padding: 10px 20px; white-space: nowrap; }

@media (max-width: 480px) {
  .nav-wrap { padding: 8px 14px; gap: 10px; }
  .nav-cta { gap: 8px; }
  .nav-pay-btn { padding: 8px 12px; font-size: 0.68rem; letter-spacing: 0.01em; }
}

@media (max-width: 1024px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px;
    box-shadow: var(--shadow); transform: translateY(-150%); transition: transform 0.2s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    display: block; width: 24px; height: 2px; background: var(--navy); position: relative; transition: 0.2s; }
  .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; }
  .nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
}

/* ---------- Disclaimer bar ---------- */
.disclaimer-bar {
  background: var(--navy);
  color: #C9D6E4;
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.01em;
}
.disclaimer-bar a { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #123258 100%);
  color: var(--white);
  padding: 90px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--white); max-width: 780px; margin-left: auto; margin-right: auto; }
.hero .eyebrow {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-bottom: 14px;
}
.hero p.lead { max-width: 640px; margin: 0 auto 34px; font-size: 1.15rem; color: #DCE4EC; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section ---------- */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .eyebrow {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--blue); font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; display: block;
}
.bg-light { background: var(--light-gray); }
.bg-navy { background: var(--navy); color: #DCE4EC; }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid #E7EBF0;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { color: #5A6675; flex-grow: 1; }

/* ---------- Service / SKU cards ---------- */
.sku-card {
  background: var(--white);
  border: 1px solid #E7EBF0;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.sku-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-lg); position: relative; }
.sku-card.featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 24px;
  background: var(--gold); color: var(--navy); font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.sku-card .sku-code {
  font-family: var(--font-label); font-size: 0.72rem; color: var(--blue);
  letter-spacing: 0.06em; font-weight: 700; margin-bottom: 8px;
}
.sku-card h3 { margin-bottom: 8px; }
.sku-card .desc { color: #5A6675; font-size: 0.92rem; flex-grow: 1; margin-bottom: 18px; }
.sku-card .price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--navy); font-weight: 700; }
.sku-card .price small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: #5A6675; }
.sku-card .turnaround {
  font-size: 0.82rem; color: var(--blue); font-weight: 600; margin: 6px 0 18px;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step .num {
  counter-increment: step; width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-family: var(--font-heading);
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.2rem;
}
.step .num::before { content: counter(step); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #E7EBF0; font-size: 0.92rem; }
th { font-family: var(--font-label); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--navy); background: var(--light-gray); }
td.price-cell { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid #E7EBF0; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { font-size: 1.4rem; color: var(--blue); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: #5A6675; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #B8C4D2; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 0.9rem; }
.footer-grid a { color: #B8C4D2; }
.footer-grid a:hover { color: var(--gold); }
.footer-logo img { height: 58px; margin-bottom: 14px; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 0.78rem;
  color: #8FA0B3; line-height: 1.7;
}
.footer-disclaimer strong { color: #B8C4D2; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 20px; font-size: 0.78rem; color: #7488A0;
}

/* ---------- Misc ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; margin-top: 40px; }
.badge-row .badge { display: flex; align-items: center; gap: 10px; color: #DCE4EC; font-family: var(--font-label); font-size: 0.85rem; font-weight: 600; }
.badge-row .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.pill { display: inline-block; background: rgba(31,111,235,0.1); color: var(--blue); font-family: var(--font-label);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

.note-box {
  background: var(--light-gray); border-left: 4px solid var(--gold); border-radius: 6px;
  padding: 18px 22px; font-size: 0.9rem; color: var(--dark-gray);
}

.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Vector icons ---------- */
.icon-svg { width: 24px; height: 24px; flex-shrink: 0; display: inline-block; }

.icon-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(31, 111, 235, 0.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.icon-badge.gold { background: rgba(200, 164, 93, 0.14); color: var(--gold); }
.icon-badge.navy { background: rgba(10, 37, 64, 0.06); color: var(--navy); }
.icon-badge .icon-svg { width: 26px; height: 26px; }

.sku-card .icon-badge { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
.sku-card .icon-badge .icon-svg { width: 22px; height: 22px; }

.contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.contact-line .icon-svg { width: 18px; height: 18px; margin-top: 2px; color: var(--gold); }
.footer-grid .contact-line .icon-svg { color: var(--gold); }
.card .contact-line .icon-svg { color: var(--blue); }

.badge-row .badge .icon-svg { width: 15px; height: 15px; color: var(--gold); }