/* ============================================================
   GetReservation.org — Main Stylesheet
   Travel Agency · Phone Booking Service
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:     #0a3d6b;
  --primary-dk:  #062a4e;
  --primary-lt:  #1a5fa8;
  --accent:      #e8820c;
  --accent-lt:   #f59d2a;
  --sky:         #e8f4fd;
  --sky-dk:      #cde8f8;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f0f2f5;
  --gray-200:    #e1e5eb;
  --gray-400:    #9aa5b4;
  --gray-600:    #4a5568;
  --gray-800:    #1a202c;
  --red:         #c0392b;
  --green:       #27ae60;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
}

a { color: var(--primary-lt); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

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

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--gray-600); }

.section-label {
  display: inline-block;
  background: var(--sky-dk);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 70px 0; }
.section-alt { background: var(--gray-50); }
.section-blue { background: var(--primary); }
.section-sky  { background: var(--sky); }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-white     { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--sky); color: var(--primary); transform: translateY(-2px); }
.btn-lg        { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn-call      { background: var(--green); color: var(--white); border-color: var(--green); font-size: 1.1rem; padding: .9rem 2rem; }
.btn-call:hover { background: #219a52; border-color: #219a52; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,174,96,.35); }
.btn-call .icon { font-size: 1.2rem; }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-top {
  background: var(--primary-dk);
  padding: .4rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,.8); }
.header-top a:hover { color: var(--accent-lt); }

.header-main { padding: .8rem 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.logo-text { line-height: 1.1; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; }
.logo-tag  { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

.main-nav { display: flex; align-items: center; gap: .2rem; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.12); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.phone-badge {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.1;
}
.phone-badge .label { font-size: .68rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
.phone-badge .number { font-size: 1.1rem; font-weight: 800; color: var(--accent-lt); letter-spacing: .01em; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 50%, var(--primary-lt) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::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");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero-badge { background: rgba(255,255,255,.12); color: var(--accent-lt); padding: .35rem 1rem; border-radius: 50px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; display: inline-block; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.2); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-lt); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.75); font-size: .83rem; }
.trust-item .dot { width: 6px; height: 6px; background: var(--accent-lt); border-radius: 50%; flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.2rem; text-align: center; }
.call-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.call-box .toll-free { color: rgba(255,255,255,.7); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.call-box .phone-num { font-size: 1.8rem; font-weight: 800; color: var(--accent-lt); letter-spacing: .02em; display: block; margin-bottom: .5rem; }
.call-box .availability { color: rgba(255,255,255,.75); font-size: .8rem; margin-bottom: 1rem; }
.service-list { display: flex; flex-direction: column; gap: .6rem; }
.service-item { display: flex; align-items: center; gap: .7rem; padding: .7rem 1rem; background: var(--gray-50); border-radius: var(--radius-sm); border-left: 3px solid var(--accent); font-size: .9rem; font-weight: 600; color: var(--gray-800); cursor: pointer; transition: var(--transition); }
.service-item:hover { background: var(--sky); transform: translateX(4px); }
.service-item .svc-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky-dk); }
.svc-icon-wrap {
  width: 70px; height: 70px;
  border-radius: var(--radius-md);
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.service-card:hover .svc-icon-wrap { background: var(--primary); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.service-card p  { font-size: .88rem; margin-bottom: 1.2rem; }
.service-card .card-link { font-size: .85rem; font-weight: 700; color: var(--primary-lt); display: inline-flex; align-items: center; gap: .3rem; }
.service-card .card-link:hover { color: var(--accent); gap: .6rem; }

/* ── Info Sections ────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }
.info-visual {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-dk) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.visual-stat { background: var(--white); border-radius: var(--radius-md); padding: 1.2rem 1.5rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1rem; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .82rem; color: var(--gray-600); }

.feature-list { display: flex; flex-direction: column; gap: .8rem; margin: 1.5rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: .8rem; }
.feature-icon { width: 26px; height: 26px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--white); flex-shrink: 0; margin-top: .1rem; }
.feature-text h4 { font-size: .95rem; margin-bottom: .15rem; color: var(--gray-800); }
.feature-text p  { font-size: .84rem; margin-bottom: 0; }

/* ── Steps Section ────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: var(--gray-200); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.step-card h4 { margin-bottom: .5rem; color: var(--primary); }
.step-card p  { font-size: .88rem; }

/* ── Call CTA Band ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
  padding: 50px 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.cta-band h2 { color: var(--white); margin-bottom: .5rem; }
.cta-band p  { color: rgba(255,255,255,.75); margin-bottom: 0; font-size: .95rem; }
.cta-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.cta-phone-num { font-size: 2.2rem; font-weight: 800; color: var(--accent-lt); letter-spacing: .02em; line-height: 1; }
.cta-phone-label { font-size: .75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; }

/* ── Why Us ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.why-card { text-align: center; padding: 1.5rem; }
.why-icon { font-size: 2.4rem; margin-bottom: .8rem; display: block; }
.why-card h4 { color: var(--primary); margin-bottom: .4rem; }
.why-card p  { font-size: .85rem; margin-bottom: 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { padding: 1.1rem 1.4rem; font-weight: 700; color: var(--primary); display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: var(--white); font-size: .95rem; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.faq-a { padding: 0 1.4rem 1.1rem; font-size: .9rem; color: var(--gray-600); border-top: 1px solid var(--gray-200); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary-lt) 100%);
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .6rem; }
.page-hero .breadcrumb { color: rgba(255,255,255,.65); font-size: .85rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb a:hover { color: var(--accent-lt); }
.page-hero .hero-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ── Content Page ─────────────────────────────────────────── */
.content-section { max-width: 860px; margin: 0 auto; }
.content-section h2 { color: var(--primary); margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--sky-dk); }
.content-section h3 { color: var(--primary-lt); margin: 1.8rem 0 .8rem; }
.content-section ul, .content-section ol { margin: .8rem 0 1.2rem 1.5rem; }
.content-section li { margin-bottom: .5rem; color: var(--gray-600); font-size: .95rem; }
.content-section ul li { list-style: disc; }
.content-section ol li { list-style: decimal; }
.content-section strong { color: var(--gray-800); }
.content-section table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.content-section th { background: var(--primary); color: var(--white); padding: .8rem 1rem; text-align: left; font-size: .88rem; }
.content-section td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-200); font-size: .88rem; color: var(--gray-600); }
.content-section tr:nth-child(even) td { background: var(--gray-50); }

.alert-box { border-radius: var(--radius-md); padding: 1.2rem 1.5rem; margin: 1.5rem 0; display: flex; gap: .8rem; align-items: flex-start; }
.alert-box.info  { background: var(--sky); border-left: 4px solid var(--primary); }
.alert-box.warn  { background: #fff8e1; border-left: 4px solid var(--accent); }
.alert-box.error { background: #fdecea; border-left: 4px solid var(--red); }
.alert-box .alert-icon { font-size: 1.2rem; flex-shrink: 0; }
.alert-box p { margin-bottom: 0; font-size: .9rem; }

.policy-date { color: var(--gray-400); font-size: .85rem; margin-bottom: 2rem; }

/* ── Sidebar Layout (service pages) ──────────────────────── */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); margin-bottom: 1.2rem; }
.sidebar-card h4 { color: var(--primary); margin-bottom: 1rem; font-size: 1rem; display: flex; align-items: center; gap: .5rem; }
.sidebar-phone { font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; text-align: center; margin: .8rem 0; }
.sidebar-note  { font-size: .78rem; color: var(--gray-400); text-align: center; margin-bottom: 0; }
.sidebar-links { display: flex; flex-direction: column; gap: .4rem; }
.sidebar-links a { padding: .6rem .9rem; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; color: var(--gray-600); display: flex; align-items: center; gap: .5rem; transition: var(--transition); border: 1px solid transparent; }
.sidebar-links a:hover, .sidebar-links a.active { background: var(--sky); color: var(--primary); border-color: var(--sky-dk); }
.sidebar-links a .link-icon { font-size: 1rem; flex-shrink: 0; }

/* ── Contact Info Strip ───────────────────────────────────── */
.contact-strip { background: var(--sky); border-radius: var(--radius-md); padding: 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 2rem 0; }
.contact-item  { display: flex; align-items: flex-start; gap: .6rem; }
.contact-item .c-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contact-item .c-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); display: block; }
.contact-item .c-val   { font-size: .9rem; font-weight: 600; color: var(--primary); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo-name { font-size: 1.3rem; color: var(--white); }
.footer-brand .logo-tag  { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.55); margin-top: 1rem; line-height: 1.7; }
.footer-phone-block { margin-top: 1.2rem; }
.footer-phone-block .fp-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.footer-phone-block .fp-num   { font-size: 1.3rem; font-weight: 800; color: var(--accent-lt); }
.footer-phone-block .fp-hours { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-col h5 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a  { color: rgba(255,255,255,.55); font-size: .84rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent-lt); padding-left: 4px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer-disclosure {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}
.footer-disclosure strong { color: rgba(255,255,255,.65); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .5rem; }
.footer-meta .copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-legal-links a:hover { color: var(--accent-lt); }

/* ── Highlight / Banner Box ───────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
  margin: 2rem 0;
}
.highlight-box h3 { color: var(--white); margin-bottom: .5rem; }
.highlight-box p  { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
.highlight-box .h-phone { font-size: 2rem; font-weight: 800; color: var(--accent-lt); display: block; margin-bottom: 1rem; }

/* ── Tags / Badges ────────────────────────────────────────── */
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge-green  { background: #d4edda; color: var(--green); }
.badge-blue   { background: var(--sky); color: var(--primary); }
.badge-orange { background: #fff3cd; color: var(--accent); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .info-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero { padding: 50px 0 60px; }
  .main-nav { display: none; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .info-grid { grid-template-columns: 1fr; }
  .info-grid.reverse { direction: ltr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .header-top .right-items { display: none; }
  .contact-strip { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.45rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .header-cta .phone-badge { display: none; }
}

/* ── Utility ──────────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.fw-bold { font-weight: 700; }
.text-accent { color: var(--accent); }
.text-muted  { color: var(--gray-400); font-size: .85rem; }
.separator   { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 1rem auto; }
.separator.left { margin-left: 0; }
