/* SR Global Multiservices — shared site styles */

@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap");

:root {
  --blue: oklch(0.38 0.09 246);
  --blue-dark: oklch(0.28 0.07 246);
  --blue-soft: oklch(0.96 0.018 246);
  --orange: oklch(0.68 0.17 55);
  --orange-hover: oklch(0.62 0.16 55);
  --ink: oklch(0.22 0.03 250);
  --ink-soft: oklch(0.35 0.04 250);
  --muted: oklch(0.46 0.03 250);
  --bg: oklch(0.985 0.006 246);
  --card: oklch(1 0 0);
  --line: oklch(0.88 0.02 246);
  --on-dark: oklch(0.93 0.02 246);
  --shadow-sm: 0 1px 2px oklch(0.22 0.03 250 / 0.05);
  --shadow: 0 8px 28px oklch(0.22 0.03 250 / 0.07);
  --shadow-lg: 0 16px 48px oklch(0.22 0.03 250 / 0.1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-sticky: 50;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: oklch(1 0 0 / 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

nav.wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px 28px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 178px;
  max-height: 38px;
  object-fit: contain;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.links a:hover,
.links a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--orange);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
}

.btn:focus-visible,
.learn-more:focus-visible,
.links a:focus-visible {
  outline: 3px solid oklch(0.68 0.17 55 / 0.55);
  outline-offset: 2px;
}

.btn.primary {
  background: var(--orange);
  color: var(--ink);
}

.btn.primary:hover {
  background: var(--orange-hover);
}

.btn.secondary {
  background: var(--card);
  color: var(--blue);
  border-color: oklch(0.38 0.09 246 / 0.22);
}

.btn.secondary:hover {
  background: var(--blue-soft);
}

/* Hero */

.hero {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.hero .wrap {
  padding: clamp(52px, 8vw, 88px) 0 clamp(48px, 7vw, 72px);
  max-width: 780px;
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 0.1em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  line-height: 1.04;
  margin: 16px 0 18px;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  max-width: 720px;
  margin-inline: auto;
}

.trust div {
  padding: 0;
  background: transparent;
  text-align: center;
}

.trust strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 800;
}

.trust span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Steps */

.steps {
  background: var(--blue-soft);
  border-block: 1px solid var(--line);
}

.steps .quick-list {
  grid-template-columns: repeat(3, 1fr);
}

.quick-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: none;
}

.dot {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--on-dark);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}

/* Sections */

section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 40px);
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-head p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  text-wrap: pretty;
}

/* Services */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 28px;
}

.service {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-block-end: 1px solid oklch(0.38 0.09 246 / 0.1);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  transition: none;
}

.service:hover {
  border-color: oklch(0.38 0.09 246 / 0.1);
  box-shadow: none;
}

.icon {
  grid-row: 1;
  grid-column: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service h3 {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--blue-dark);
}

.service p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 2px solid oklch(0.38 0.09 246 / 0.2);
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out);
}

.learn-more:hover {
  background: var(--blue-soft);
  border-color: oklch(0.38 0.09 246 / 0.35);
}

.service-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.service-actions .learn-more {
  margin-top: 0;
}

.service-actions .btn {
  padding: 9px 16px;
  font-size: 0.9rem;
}

/* Info cards */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  padding: 0 0 20px;
  background: transparent;
  border: none;
  border-block-end: 1px solid oklch(0.38 0.09 246 / 0.1);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* CTA */

.cta {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--blue-dark);
  color: var(--on-dark);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  margin: 0 0 10px;
  color: var(--card);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.cta p {
  max-width: 58ch;
  margin: 0 auto;
  color: var(--on-dark);
  font-size: 1.05rem;
  text-wrap: pretty;
}

/* Footer */

footer {
  padding: 48px 0 32px;
  background: var(--blue-dark);
  color: var(--on-dark);
  text-align: center;
}

footer a {
  color: var(--card);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer a:hover {
  color: var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px 40px;
  margin-bottom: 28px;
  justify-items: center;
}

.footer-col b {
  display: block;
  margin-bottom: 10px;
  color: var(--card);
  font-size: 1.05rem;
}

.footer-col p {
  margin: 6px 0;
  font-weight: 600;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid oklch(1 0 0 / 0.12);
}

.footer-inner b {
  color: var(--card);
}

/* Responsive */

@media (max-width: 900px) {
  nav.wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .links {
    width: 100%;
    justify-content: center;
  }

  .footer-grid,
  .trust,
  .info-grid,
  .steps .quick-list {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    padding-top: 44px;
  }

  .trust {
    gap: 20px;
  }

  .trust div {
    border: none;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1140px);
  }

  .links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    text-align: center;
  }

  .links a {
    padding: 8px 4px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .cta {
    padding: 28px 20px;
  }

  section {
    padding: 48px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
