/* ============================================
   CHS SOLUTIONS — Managed IT Services
   Shared stylesheet
   ============================================ */

:root {
  --bg: #f6f5f1;
  --bg-alt: #ffffff;
  --card: #fbfaf6;
  --ink: #0e1a2b;
  --ink-soft: #2b3a52;
  --muted: #61708a;
  --line: #e3e1d8;
  --line-strong: #c9c5b8;
  --accent: #0a6cf2;
  --accent-deep: #053a8a;
  --accent-glow: #38c2ff;
  --warn: #d97706;
  --ok: #15803d;
  --shadow-soft: 0 10px 30px rgba(14, 26, 43, 0.08);
  --shadow-md: 0 18px 48px rgba(14, 26, 43, 0.14);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 194, 255, 0.08), transparent 38%),
    radial-gradient(circle at 92% 6%, rgba(10, 108, 242, 0.06), transparent 42%),
    #f6f5f1;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; }
a { color: inherit; text-decoration: none; }

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px 56px;
}

/* HEADER + NAV */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(246, 245, 241, 0.92), rgba(246, 245, 241, 0.78));
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(10, 108, 242, 0.35);
  position: relative;
  overflow: hidden;
}
.brand-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 50%);
  pointer-events: none;
}
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: "Fraunces", "Playfair Display", "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-sub {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  align-items: center;
}
.nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  letter-spacing: 0.14em;
  font-size: 11px;
  transition: background 0.15s ease, transform 0.08s ease;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-cta::after { display: none; }

@media (max-width: 820px) {
  .site-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav { flex-wrap: wrap; row-gap: 8px; gap: 16px; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.08s ease, box-shadow 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 26, 43, 0.22);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(10, 108, 242, 0.35);
}

.btn-accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-glow));
  color: #fff;
  box-shadow: 0 8px 22px rgba(10, 108, 242, 0.32);
}
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(10, 108, 242, 0.45);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-soft);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--ink);
  color: var(--ink);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 52px;
  margin-top: 12px;
  padding: 8px 4px 0;
}
@media (max-width: 900px) { .hero { grid-template-columns: minmax(0, 1fr); gap: 28px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(21, 128, 61, 0.05); }
}

.hero h1 {
  font-family: "Fraunces", "Playfair Display", "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 18px 0 14px;
  font-weight: 500;
}
.hero h1 .sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.28em;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.hero-lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 14px;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 22px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-num {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-meta-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

.hero-aside { display: flex; flex-direction: column; gap: 16px; }

.status-panel {
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: linear-gradient(155deg, #0e1a2b 0%, #0a1424 60%, #050d1c 100%);
  border: 1px solid #1c2c44;
  box-shadow: 0 24px 60px rgba(8, 18, 36, 0.45);
  color: #d6def0;
  position: relative;
  overflow: hidden;
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}
.status-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 194, 255, 0.18), transparent 65%);
  pointer-events: none;
}
.status-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
  position: relative;
}
.status-title {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8aa0c4;
  font-weight: 600;
}
.status-time { font-size: 11px; color: #5a6f93; }

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
  position: relative;
  border-bottom: 1px dashed rgba(255,255,255,0.04);
}
.status-row:last-of-type { border-bottom: none; }
.status-label { color: #98aac8; }
.status-val { display: flex; align-items: center; gap: 8px; color: #e8eef9; font-weight: 500; }
.dot-ok { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.dot-warn { width: 7px; height: 7px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 8px var(--warn); }

.status-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  color: #7a8db0;
  position: relative;
}
.status-footer strong { color: var(--accent-glow); font-weight: 600; }

/* SECTIONS */
.section {
  padding: 32px 30px 34px;
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  margin-bottom: 26px;
  position: relative;
}

.section-dark {
  background: linear-gradient(155deg, #0e1a2b, #050d1c);
  border-color: #1c2c44;
  color: #d6def0;
}
.section-dark .section-title { color: #ffffff; }
.section-dark .section-kicker { color: #7a8db0; }
.section-dark .card-soft {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: #d6def0;
}
.section-dark .card-soft h3 { color: #ffffff; }
.section-dark .card-soft p, .section-dark .muted { color: #98aac8; }

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.section-title {
  font-family: "Fraunces", "Playfair Display", serif;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 500;
  color: var(--ink);
}
.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.section-grid { display: grid; gap: 16px; }
@media (min-width: 760px) {
  .section-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* CARDS */
.card-soft {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 22px 20px 20px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card-soft:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.card-soft .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
}
.card-soft h3 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.card-soft p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }

.muted { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* SERVICE TIER CARDS (replacing pricing) */
.tiers { display: grid; gap: 18px; margin-top: 6px; }
@media (min-width: 980px) { .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 720px) and (max-width: 979px) { .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.tier {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fdfcf8;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tier-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #f5fbff 0%, #fdfcf8 60%);
  box-shadow: 0 0 0 1px rgba(10, 108, 242, 0.3), 0 14px 32px rgba(10, 108, 242, 0.12);
}

.tier-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--accent-deep);
}
.tier-headline {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tier-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 4px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.tier li {
  margin-bottom: 9px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tier-footer { margin-top: auto; }
.btn-tier { width: 100%; padding: 12px 18px; font-size: 13px; }

.ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(10, 108, 242, 0.4);
}

/* QUOTES */
.quote-list { display: grid; gap: 12px; }
.quote {
  padding: 16px 18px 14px;
  border-radius: 12px;
  background: #f7f5ef;
  border-left: 3px solid var(--accent);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
  position: relative;
}
.quote-author {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
}

/* PARTNER LOGOS */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}
.logo-item {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
  opacity: 0.75;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.logo-item:hover { opacity: 1; color: var(--ink); }

/* FOOTER */
.footer {
  margin-top: 36px;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  background: var(--bg-alt);
  border-radius: 20px;
}
.footer h4 {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; font-size: 13px; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
@media (max-width: 760px) {
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer { grid-template-columns: 1fr; }
}

/* FORM */
.form { display: grid; gap: 14px; max-width: 620px; }
.form-row { display: grid; gap: 14px; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(10, 108, 242, 0.12);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ABOUT TIMELINE */
.timeline { position: relative; padding-left: 26px; margin-top: 14px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-glow), transparent);
}
.timeline-item { position: relative; padding-bottom: 22px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2.5px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(10, 108, 242, 0.1);
}
.timeline-year {
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.timeline-event {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 2px 0 4px;
}
.timeline-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* SERVICES PAGE ROWS */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row:first-child { padding-top: 8px; }
@media (max-width: 760px) { .service-row { grid-template-columns: 1fr; gap: 14px; } }

.service-num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  font-weight: 600;
}
.service-title {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.service-features {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.service-feature {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 13.5px;
}
.service-feature strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}
.service-feature span { color: var(--muted); line-height: 1.5; }

/* CTA BANNER */
.cta-banner {
  border-radius: 20px;
  padding: 36px 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 194, 255, 0.18), transparent 50%),
    linear-gradient(135deg, #0e1a2b, #053a8a);
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.cta-banner p { margin: 0; color: #b8c4dc; font-size: 14px; line-height: 1.55; max-width: 38rem; }
.cta-banner .btn-accent { white-space: nowrap; }
@media (max-width: 720px) {
  .cta-banner { grid-template-columns: 1fr; padding: 28px 22px; }
}

/* PAGE INTRO */
.page-intro {
  padding: 36px 0 28px;
  text-align: left;
  max-width: 760px;
}
.page-intro .eyebrow { margin-bottom: 18px; }
.page-intro h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.page-intro h1 .accent { color: var(--accent); font-style: italic; }
.page-intro p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* UTILS */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-18 { margin-top: 18px; }
.mt-24 { margin-top: 24px; }

@media (max-width: 640px) {
  .section { padding: 24px 20px 26px; }
  .page { padding: 12px 14px 40px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > *, .page-intro > *, .section { animation: fadeUp 0.5s ease backwards; }
.hero > *:nth-child(2) { animation-delay: 0.05s; }
.section:nth-of-type(2) { animation-delay: 0.08s; }
