/* ============================================================
   bwlinks — Estilos principales
   Paleta: Azul marino profundo + Ámbar dorado + Blanco limpio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy:       #0f2744;
  --navy-light: #1a3a6b;
  --amber:      #e8a020;
  --amber-dark: #c47d10;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-100:   #eef1f6;
  --gray-200:   #d8dde8;
  --gray-400:   #8a96aa;
  --gray-600:   #4a556a;
  --gray-800:   #1e2b3c;
  --success:    #10b981;
  --danger:     #ef4444;
  --warning:    #f59e0b;
  --info:       #3b82f6;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(15,39,68,.12);
  --shadow-lg:  0 12px 48px rgba(15,39,68,.18);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
}

h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.2; }

a { color: var(--navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

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

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .92rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(15,39,68,.3); }
.btn-amber     { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-dark); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,160,32,.35); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--navy); background: var(--gray-100); }
.btn-danger    { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #c53030; transform: translateY(-1px); }
.btn-success   { background: var(--success); color: #fff; border-color: var(--success); }
.btn-sm        { padding: .4rem .9rem; font-size: .82rem; }
.btn-lg        { padding: .85rem 2rem; font-size: 1rem; }
.btn-block     { width: 100%; justify-content: center; }
.btn-whatsapp  { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; transform: translateY(-1px); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.navbar-brand {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem;
  color: #fff; letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--amber); }
.navbar-links { display: flex; align-items: center; gap: 1rem; }
.navbar-links a { color: rgba(255,255,255,.8); font-family: 'Outfit', sans-serif; font-size: .9rem; }
.navbar-links a:hover { color: #fff; }
.navbar-links .btn { padding: .45rem 1.1rem; font-size: .88rem; }

/* ── Alerts / Flash ──────────────────────────────────────── */
.alert {
  padding: .9rem 1.2rem; border-radius: var(--radius-sm); font-size: .9rem;
  display: flex; align-items: center; gap: .6rem;
  border-left: 4px solid transparent; margin-bottom: 1.2rem;
}
.alert-success { background: #d1fae5; color: #065f46; border-color: var(--success); }
.alert-error, .alert-danger { background: #fee2e2; color: #991b1b; border-color: var(--danger); }
.alert-warning { background: #fef3c7; color: #92400e; border-color: var(--warning); }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: var(--info); }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.5rem;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.card-title { font-size: 1.1rem; font-family: 'Outfit', sans-serif; font-weight: 600; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-600); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .65rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff; color: var(--gray-800);
}
.form-control:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(26,58,107,.12); }
.form-control.is-error { border-color: var(--danger); }
.form-hint { font-size: .78rem; color: var(--gray-400); margin-top: .3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Tables ──────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
thead th { background: var(--navy); color: #fff; padding: .7rem 1rem; text-align: left; font-family: 'Outfit', sans-serif; }
tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
tbody tr:hover { background: var(--gray-100); }
tbody td { padding: .7rem 1rem; vertical-align: middle; }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .25rem .65rem; border-radius: 20px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.badge-active    { background: #d1fae5; color: #065f46; }
.badge-pending   { background: #fef3c7; color: #92400e; }
.badge-expired   { background: #fee2e2; color: #991b1b; }
.badge-suspended { background: #e5e7eb; color: #374151; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-rejected  { background: #fee2e2; color: #991b1b; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 520px; margin: 0 auto; padding: 0 1.5rem; }
.page-main { padding: 2rem 0 4rem; }
.section-title { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--navy); }

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

/* ── Dashboard layout ────────────────────────────────────── */
.dash-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}
.dash-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── Links list ──────────────────────────────────────────── */
.link-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1rem; background: var(--gray-100);
  border-radius: var(--radius-sm); cursor: grab;
  transition: background var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.link-item:hover { background: #fff; border-color: var(--gray-200); box-shadow: var(--shadow); }
.link-item.dragging { opacity: .5; }
.link-item .drag-handle { color: var(--gray-400); cursor: grab; font-size: 1.1rem; }
.link-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--navy);
             color: #fff; display: flex; align-items: center; justify-content: center;
             font-size: .95rem; flex-shrink: 0; }
.link-info { flex: 1; min-width: 0; }
.link-info .link-title { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.link-info .link-url   { font-size: .78rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.link-actions { display: flex; gap: .4rem; }
.link-inactive { opacity: .45; }

/* ── Stat cards ──────────────────────────────────────────── */
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 1rem;
}
.stat-icon {
  width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.stat-icon.navy   { background: rgba(15,39,68,.1); color: var(--navy); }
.stat-icon.amber  { background: rgba(232,160,32,.15); color: var(--amber-dark); }
.stat-icon.green  { background: rgba(16,185,129,.12); color: var(--success); }
.stat-icon.red    { background: rgba(239,68,68,.1); color: var(--danger); }
.stat-label { font-size: .78rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stat-value { font-size: 2rem; font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1; color: var(--navy); }

/* ── Profile avatar ──────────────────────────────────────── */
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%; border: 3px solid var(--amber);
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-family: 'Outfit', sans-serif; font-weight: 800; flex-shrink: 0;
}
.profile-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.profile-info h3 { font-size: 1.1rem; }
.profile-info p  { font-size: .82rem; color: var(--gray-400); }
.profile-url { display: flex; align-items: center; gap: .5rem; background: var(--gray-100);
               border-radius: 8px; padding: .5rem .8rem; font-size: .82rem; color: var(--navy-light); }
.profile-url code { font-family: 'Courier New', monospace; font-weight: 600; }

/* ── Tab navigation ──────────────────────────────────────── */
.tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; border-bottom: 2px solid var(--gray-200); }
.tab-btn {
  padding: .6rem 1.2rem; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .88rem; color: var(--gray-400); background: none; border: none;
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--navy); border-color: var(--navy); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15,39,68,.55);
  display: flex; align-items: center; justify-content: center; z-index: 999;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--radius); width: 100%; max-width: 480px;
  margin: 1rem; box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between;
                padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.modal-header h4 { font-size: 1.05rem; }
.modal-body  { padding: 1.5rem; }
.modal-footer{ padding: 1rem 1.5rem; border-top: 1px solid var(--gray-100);
               display: flex; gap: .8rem; justify-content: flex-end; }
.btn-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-400); line-height: 1; }
.btn-close:hover { color: var(--navy); }

/* ── Themes preview ──────────────────────────────────────── */
.theme-picker { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.theme-swatch {
  height: 44px; border-radius: 8px; cursor: pointer; border: 3px solid transparent;
  transition: transform var(--transition), border-color var(--transition);
}
.theme-swatch:hover { transform: scale(1.05); }
.theme-swatch.selected { border-color: var(--amber); }
.theme-ocean  { background: linear-gradient(135deg, #0f2744 50%, #1a7abf); }
.theme-forest { background: linear-gradient(135deg, #134e2a 50%, #22c55e); }
.theme-sunset { background: linear-gradient(135deg, #7c2d12 50%, #fb923c); }
.theme-night  { background: linear-gradient(135deg, #111827 50%, #6366f1); }
.theme-rose   { background: linear-gradient(135deg, #881337 50%, #f472b6); }
.theme-minimal{ background: linear-gradient(135deg, #f9f9f9 50%, #d1d5db); border: 2px solid #e5e7eb; }

/* ── Landing page ────────────────────────────────────────── */
.landing-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,160,32,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(26,58,107,.4) 0%, transparent 50%);
}
.landing-hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,160,32,.15); border: 1px solid rgba(232,160,32,.3);
  color: var(--amber); font-size: .82rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 20px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-title span { color: var(--amber); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Phone mockup */
.phone-mockup {
  width: 260px; margin: 0 auto;
  background: #111; border-radius: 36px; padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone-screen {
  background: #fff; border-radius: 24px; overflow: hidden;
  min-height: 460px; display: flex; flex-direction: column;
}
.phone-header {
  padding: 1.2rem 1rem .8rem;
  background: linear-gradient(135deg, #0f2744, #1a3a6b);
  text-align: center; color: #fff;
}
.phone-avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--amber);
  margin: 0 auto .6rem; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem; font-family: 'Outfit', sans-serif; color: var(--navy);
}
.phone-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem; }
.phone-bio  { font-size: .72rem; opacity: .7; }
.phone-links { padding: .8rem .8rem; display: flex; flex-direction: column; gap: .5rem; background: #f7f9fc; flex: 1; }
.phone-link-btn {
  display: flex; align-items: center; gap: .6rem;
  background: var(--navy); color: #fff; padding: .6rem .9rem;
  border-radius: 10px; font-size: .78rem; font-weight: 600; font-family: 'Outfit', sans-serif;
}
.phone-link-btn .ico { width: 22px; height: 22px; border-radius: 6px;
                       background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .7rem; }

/* Pricing */
.pricing-section { padding: 5rem 0; background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 720px; margin: 0 auto; }
.pricing-card {
  background: #fff; border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: var(--shadow); border: 2px solid var(--gray-200);
  text-align: center; position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--amber); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy);
  padding: .25rem .9rem; border-radius: 20px; font-size: .75rem; font-weight: 800;
  font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.price-amount { font-size: 3.2rem; font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-period { font-size: .85rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.price-features { text-align: left; list-style: none; margin-bottom: 2rem; }
.price-features li { display: flex; align-items: center; gap: .6rem; padding: .4rem 0;
                     font-size: .9rem; color: var(--gray-600); }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 800; }

/* Features section */
.features-section { padding: 5rem 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.feature-card {
  padding: 1.8rem; border-radius: var(--radius); background: var(--off-white);
  border: 2px solid var(--gray-100); transition: border-color var(--transition);
}
.feature-card:hover { border-color: var(--navy); }
.feature-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-card h4 { font-size: 1rem; margin-bottom: .4rem; color: var(--navy); }
.feature-card p  { font-size: .88rem; color: var(--gray-600); line-height: 1.6; }

/* CTA section */
.cta-section { background: var(--navy); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,160,32,.12) 0%, transparent 70%); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: 2rem; margin-bottom: .8rem; }
.cta-section p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

/* Footer */
.footer {
  background: var(--gray-800); color: rgba(255,255,255,.6);
  padding: 2rem 0; text-align: center; font-size: .85rem;
}
.footer a { color: var(--amber); }

/* ── Public profile page ──────────────────────────────────── */
.public-profile { min-height: 100vh; display: flex; flex-direction: column; }

.pub-header {
  padding: 2.5rem 1.5rem 2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pub-avatar {
  width: 88px; height: 88px; border-radius: 50%; border: 4px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.2); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem; font-family: 'Outfit', sans-serif;
  font-weight: 800; margin-bottom: 1rem; backdrop-filter: blur(4px);
}
.pub-name { font-size: 1.5rem; color: #fff; font-family: 'Outfit', sans-serif;
            font-weight: 800; margin-bottom: .3rem; }
.pub-bio  { font-size: .9rem; color: rgba(255,255,255,.75); max-width: 340px; }

.pub-links { padding: 0 1.5rem 3rem; max-width: 480px; margin: 0 auto; width: 100%; }
.pub-link-btn {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.2rem; border-radius: 12px; margin-bottom: .7rem;
  color: #fff; font-weight: 700; font-size: .95rem; font-family: 'Outfit', sans-serif;
  transition: transform .18s ease, box-shadow .18s ease;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
}
.pub-link-btn:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: #fff; }
.pub-link-btn .pub-icon { width: 36px; height: 36px; border-radius: 8px; display: flex;
                          align-items: center; justify-content: center; font-size: .95rem;
                          background: rgba(255,255,255,.2); flex-shrink: 0; }
.pub-link-title { flex: 1; text-align: center; }

.pub-footer { margin-top: auto; text-align: center; padding: 1.5rem; font-size: .78rem; color: rgba(255,255,255,.45); }
.pub-footer a { color: rgba(255,255,255,.6); }

/* Themes */
.theme-ocean  .pub-header, .theme-ocean  { background: linear-gradient(160deg, #0f2744 0%, #1a7abf 100%); }
.theme-forest .pub-header, .theme-forest { background: linear-gradient(160deg, #134e2a 0%, #22c55e 100%); }
.theme-sunset .pub-header, .theme-sunset { background: linear-gradient(160deg, #7c2d12 0%, #fb923c 100%); }
.theme-night  .pub-header, .theme-night  { background: linear-gradient(160deg, #111827 0%, #6366f1 100%); }
.theme-rose   .pub-header, .theme-rose   { background: linear-gradient(160deg, #881337 0%, #f472b6 100%); }
.theme-minimal{ background: #f9f9f9; }
.theme-minimal .pub-name, .theme-minimal .pub-bio { color: #1e2b3c; }
.theme-minimal .pub-link-btn { background: #fff; color: #1e2b3c; border-color: #e5e7eb; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.theme-minimal .pub-footer { color: #8a96aa; }
.theme-minimal .pub-footer a { color: #4a556a; }
.theme-minimal .pub-avatar { color: #1e2b3c; background: rgba(0,0,0,.08); border-color: #e5e7eb; }

/* ── Auth pages ──────────────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center;
             background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
             padding: 2rem 1rem; }
.auth-card { background: #fff; border-radius: 20px; padding: 2.5rem; width: 100%;
             max-width: 440px; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .brand { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); }
.auth-logo .brand span { color: var(--amber); }
.auth-title { font-size: 1.4rem; color: var(--navy); margin-bottom: .4rem; }
.auth-sub   { font-size: .88rem; color: var(--gray-400); margin-bottom: 1.8rem; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--gray-400); font-size: .85rem; }
.text-navy   { color: var(--navy); }
.text-amber  { color: var(--amber); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex-1 { flex: 1; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 1.5rem 0; }

/* ── Section header ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: .6rem; }
.section-header p  { color: var(--gray-400); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .features-grid{ grid-template-columns: 1fr; }
  .dash-grid    { grid-template-columns: 1fr; }
  .grid-2       { grid-template-columns: 1fr; }
  .grid-3       { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .navbar       { padding: 0 1rem; }
  .hero-title   { font-size: 2rem; }
}
