/* =============================================================================
 * Fibear Network Taguig — Design System & Styles
 * Palette: deep navy, electric blue, cyan/turquoise, white, light gray
 * ============================================================================= */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --navy: #0a2540;
  --navy-700: #0d2e50;
  --navy-600: #123a63;
  --blue: #0066ff;
  --blue-600: #0052cc;
  --cyan: #00c2cb;
  --cyan-400: #22d3dd;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #556274;
  --gray-700: #3b4657;
  --ink: #16202e;

  --grad-hero: linear-gradient(135deg, #0a2540 0%, #123a63 55%, #0066ff 130%);
  --grad-accent: linear-gradient(120deg, #0066ff 0%, #00c2cb 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 6px 18px rgba(10, 37, 64, 0.08), 0 2px 6px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 18px 40px rgba(10, 37, 64, 0.14);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1160px;
  --header-h: 72px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base -------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1rem; }

ul { margin: 0 0 1rem; padding-left: 1.15rem; }

/* ---- Accessibility helpers ---------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---- Layout -------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--soft { background: var(--gray-50); }
.section--navy { background: var(--navy); color: #dbe6f5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section-head p { color: var(--gray-600); font-size: 1.05rem; }
.section--navy .section-head p { color: #b9c9e2; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 102, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.section--navy .eyebrow { color: var(--cyan-400); background: rgba(0, 194, 203, 0.14); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--grad-accent); color: #fff; box-shadow: 0 8px 20px rgba(0, 102, 255, 0.28); }
.btn--primary:hover { box-shadow: 0 12px 26px rgba(0, 102, 255, 0.36); }

.btn--solid { background: var(--blue); color: #fff; }
.btn--solid:hover { background: var(--blue-600); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--gray-100); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }

.btn--sm { padding: 0.65rem 1.1rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ---- Header / navigation ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-accent);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand__name b { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
}
.nav__links a:hover { color: var(--navy); background: var(--gray-100); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--blue); background: rgba(0,102,255,0.08); }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: #fff;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%);
    transition: transform 0.3s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { padding: 0.85rem 0.9rem; font-size: 1rem; }
  .nav__cta-mobile { margin-top: 0.5rem; }
}
@media (min-width: 961px) {
  .nav__cta-mobile { display: none; }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  background: var(--grad-hero);
  color: #eaf1fb;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(0,194,203,0.35), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; }
.hero__lead { font-size: 1.15rem; color: #cfe0f7; max-width: 46ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.75rem 0 1.5rem; }
.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-strip li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #eaf1fb;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
}
.trust-strip svg { flex: none; color: var(--cyan-400); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* ---- Cards / grids ------------------------------------------------------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-card .feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-accent);
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(0,102,255,0.25);
}
.feature-card h3 { margin-bottom: 0.35rem; }
.feature-card p { color: var(--gray-600); margin: 0; }

/* ---- Pricing cards ------------------------------------------------------- */
.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius-lg);
}
.plan-card.is-popular {
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(0,102,255,0.18);
}
.plan-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.plan-card__name { font-size: 1.2rem; margin-bottom: 0.25rem; }
.plan-card__price { display: flex; align-items: baseline; gap: 0.25rem; margin: 0.35rem 0; }
.plan-card__price .amount { font-size: 2.3rem; font-weight: 800; color: var(--navy); }
.plan-card__price .peso { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.plan-card__price .per { color: var(--gray-600); font-weight: 600; font-size: 0.95rem; }
.plan-card__speed {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; color: var(--blue);
  background: rgba(0,102,255,0.08);
  padding: 0.4rem 0.7rem; border-radius: var(--radius-pill);
  margin-bottom: 0.85rem; font-size: 0.9rem;
}
.plan-card__blurb { color: var(--gray-600); font-size: 0.95rem; flex: 1; }
.plan-card__actions { display: grid; gap: 0.6rem; margin-top: 1.1rem; }

/* ---- Disclaimer / notes -------------------------------------------------- */
.disclaimer {
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-top: 1.5rem;
}
.note-flag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ---- Promo banner -------------------------------------------------------- */
.promo {
  background: var(--grad-hero);
  color: #eaf1fb;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.promo h2 { color: #fff; }
.promo__prices { display: flex; align-items: baseline; gap: 1rem; margin: 1rem 0; flex-wrap: wrap; }
.promo__old { color: #9db4d6; text-decoration: line-through; font-size: 1.2rem; font-weight: 700; }
.promo__new { color: var(--cyan-400); font-size: 2.4rem; font-weight: 800; }
.promo__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (max-width: 800px) {
  .promo { grid-template-columns: 1fr; }
  .promo__media { order: -1; }
}

/* ---- Split (residential / business) ------------------------------------- */
.split-card { overflow: hidden; padding: 0; }
.split-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.split-card__body { padding: 1.6rem; }
.split-card__body ul { color: var(--gray-700); }
.split-card__body li { margin-bottom: 0.35rem; }

/* ---- Steps --------------------------------------------------------------- */
.steps { counter-reset: step; }
.step-card { position: relative; padding-top: 2.75rem; }
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 1.3rem; left: 1.6rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--grad-accent);
  color: #fff; font-weight: 800;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* ---- Forms --------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.field .req { color: #dc2626; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .error-msg { color: #dc2626; font-size: 0.82rem; min-height: 1em; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #dc2626; }

.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--gray-700); }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; flex: none; }

/* Honeypot — hidden from users, catches bots */
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--info { background: #e0f2fe; border: 1px solid #bae6fd; color: #075985; }
.form-status--error { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.form-status--ok { background: #dcfce7; border: 1px solid #bbf7d0; color: #166534; }

.form-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px dashed var(--gray-400);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

/* ---- FAQ accordion ------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item__q .chev { flex: none; transition: transform 0.25s var(--ease); color: var(--blue); }
.faq-item__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.faq-item__a-inner { padding: 0 1.3rem 1.2rem; color: var(--gray-700); }

/* ---- Contact info blocks ------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-list .ico {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px; display: grid; place-items: center;
  background: rgba(0,102,255,0.08); color: var(--blue);
}
.info-list a { font-weight: 700; }
.info-list .muted { color: var(--gray-600); font-size: 0.9rem; }

/* ---- CTA band ------------------------------------------------------------ */
.cta-band {
  background: var(--grad-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 55ch; margin-inline: auto; }
.cta-band .btn { margin-top: 0.5rem; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #b9c9e2; padding: 3.5rem 0 1.75rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: #cdd9ec; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.9rem; }
.footer-disclaimer { font-size: 0.82rem; color: #8ea4c4; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.85rem; margin-top: 1rem; color: #8ea4c4; }

/* ---- Scroll-reveal animation -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Page hero (inner pages) -------------------------------------------- */
.page-hero { background: var(--grad-hero); color: #eaf1fb; padding: clamp(2.5rem, 6vw, 4rem) 0; text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfe0f7; max-width: 60ch; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb { font-size: 0.85rem; color: #a9c0e2; margin-bottom: 0.75rem; }
.breadcrumb a { color: #cfe0f7; }

/* ---- Prose (legal pages) ------------------------------------------------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2rem; font-size: 1.4rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p, .prose li { color: var(--gray-700); }
.prose .updated { color: var(--gray-600); font-size: 0.9rem; }

.lede { font-size: 1.12rem; color: var(--gray-700); }
.center { text-align: center; }
.mt-2 { margin-top: 1.25rem; }
