/* Saransa Technology Group - static site
   Rebuilt from Wayback-archived content after the original WordPress host was lost.
   Brand navy #003895 sampled from the official Saransa logo mark. */

:root {
  --navy: #003895;
  --navy-deep: #00265f;
  --navy-dark: #001b45;
  --accent: #2f6fe4;
  --accent-soft: #e8effc;
  --ink: #0e1524;
  --body: #3d4658;
  --muted: #6b7488;
  --line: #e3e8f2;
  --surface: #f6f8fc;
  --white: #fff;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --shadow-sm: 0 1px 2px rgba(14, 21, 36, .06), 0 4px 12px rgba(14, 21, 36, .04);
  --shadow-md: 0 4px 10px rgba(14, 21, 36, .06), 0 18px 40px rgba(14, 21, 36, .08);
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.8vw, 2.35rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.13rem;
  color: var(--ink); letter-spacing: -.02em;
}
.brand-sub {
  font-size: .63rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.nav-toggle {
  margin-left: auto; display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; color: var(--ink);
}

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: block; padding: 9px 12px; border-radius: 9px;
  font-size: .93rem; font-weight: 500; color: var(--body);
}
.main-nav a:hover { background: var(--surface); color: var(--navy); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.main-nav .nav-cta {
  background: var(--navy); color: #fff; padding: 10px 18px; margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--navy-deep); color: #fff; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: .97rem;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #eef3fd; color: var(--navy-deep); }
.btn-outline { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-ghost:hover { border-color: var(--navy); }

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 82% -8%, rgba(47, 111, 228, .5), transparent 62%),
    radial-gradient(700px 420px at 8% 108%, rgba(0, 56, 149, .55), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 30%, #000 15%, transparent 78%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { padding: clamp(64px, 8vw, 110px) 0 clamp(60px, 7vw, 96px); max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero-lead {
  font-size: clamp(1.03rem, .96rem + .35vw, 1.2rem);
  color: rgba(255, 255, 255, .86);
  max-width: 62ch; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .22);
  font-size: .76rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  color: #fff; margin-bottom: 22px;
}

.hero-slim .hero-inner { padding: clamp(52px, 6vw, 76px) 0; }

/* ---------- sections ---------- */

.section { padding: clamp(58px, 7vw, 92px) 0; }
.section-surface { background: var(--surface); }
.section-navy { background: var(--navy-deep); color: rgba(255, 255, 255, .84); }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.04rem; margin-bottom: 0; }

/* ---------- grids & cards ---------- */

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfdcf5; }
.card h3 { margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 0; }
.card-plain:hover { transform: none; box-shadow: var(--shadow-sm); }

.card-product { display: flex; flex-direction: column; }
.card-product .checklist { flex: 1 1 auto; }
.card-product .card-action { margin-top: 24px; }
.card-product h3 a { color: var(--navy); }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--navy); margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }

.section-navy .card {
  background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}
.section-navy .card p { color: rgba(255, 255, 255, .78); }
.section-navy .card-icon { background: rgba(255, 255, 255, .12); color: #fff; }

.num-card { counter-increment: step; }
.num-card .card-icon {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}

/* ---------- split / prose ---------- */

.split { display: grid; gap: clamp(30px, 5vw, 62px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split-wide { align-items: start; }

.prose p { color: var(--body); }
.prose > h2 { margin-top: 0; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
  position: relative; padding-left: 34px; color: var(--body); font-size: 1rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003895' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section-navy .checklist li { color: rgba(255, 255, 255, .84); }
.section-navy .checklist li::before { background-color: rgba(255, 255, 255, .16); }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm);
}
.panel-navy {
  background: linear-gradient(150deg, var(--navy), var(--navy-dark));
  border: none; color: rgba(255, 255, 255, .85);
}
.panel-navy h2, .panel-navy h3 { color: #fff; }

/* ---------- feature rows ---------- */

.feature-row {
  display: grid; gap: 20px; align-items: start;
  padding: 30px 0; border-top: 1px solid var(--line);
}
@media (min-width: 760px) { .feature-row { grid-template-columns: 260px 1fr; gap: 40px; } }
.feature-row:first-of-type { border-top: none; padding-top: 0; }
.feature-row h3 { margin-bottom: 0; }
.feature-row p { color: var(--muted); margin-bottom: 0; }

/* ---------- cta band ---------- */

.cta-band {
  background: linear-gradient(140deg, var(--navy), var(--navy-dark));
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 58px); text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 60ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 26px; }

/* ---------- legal / long-form ---------- */

.legal { padding: clamp(46px, 6vw, 74px) 0; }
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.5rem; margin-top: 2.2em; }
.legal-body h3 { font-size: 1.13rem; margin-top: 1.8em; }
.legal-body h2:first-child, .legal-body h3:first-child { margin-top: 0; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 1.2em; }
.legal-body li { margin-bottom: .5em; }
.legal-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: .95rem; }
.legal-body th, .legal-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal-body th { background: var(--surface); font-weight: 600; color: var(--ink); }
.table-scroll { overflow-x: auto; }

.toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px; margin-bottom: 40px;
}
.toc h2 { font-size: 1.05rem; margin-bottom: .8em; }
.toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.toc a { font-size: .95rem; }

/* ---------- contact ---------- */

.contact-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr .95fr; } }

.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .card-icon { margin-bottom: 0; flex: 0 0 auto; width: 44px; height: 44px; }
.contact-item h3 { font-size: 1.02rem; margin-bottom: .2em; }
.contact-item p, .contact-item a { color: var(--muted); font-size: .98rem; margin: 0; }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .87rem; font-weight: 600; color: var(--ink); margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .88rem; color: var(--muted); margin-top: 14px; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-dark); color: rgba(255, 255, 255, .72);
  padding: clamp(48px, 6vw, 72px) 0 0;
  font-size: .95rem;
}
.footer-grid { display: grid; gap: 36px; padding-bottom: 46px; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255, 255, 255, .55); }
.footer-about { margin-top: 18px; max-width: 42ch; color: rgba(255, 255, 255, .66); }
.footer-contact li { line-height: 1.6; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255, 255, 255, .1); color: #fff;
}
.social-links a:hover { background: var(--accent); }
.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0; display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
  font-size: .88rem; color: rgba(255, 255, 255, .58);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* ---------- 404 ---------- */

.notfound { text-align: center; padding: clamp(70px, 12vw, 140px) 0; }
.notfound .code {
  font-family: var(--font-head); font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: .1em;
}

/* ---------- responsive nav ---------- */

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none; padding: 14px 22px 22px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 10px; font-size: 1rem; }
  .main-nav .nav-cta { margin: 10px 0 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ============================================================================
   Layout recovered from the original site's Elementor DOM: a slider hero, then
   an alternating rhythm of full-width image bands and centred icon rows.
   ========================================================================= */

/* ---------- hero slider ---------- */

.slider { position: relative; background: var(--navy-dark); overflow: hidden; }
.slider-track { position: relative; min-height: clamp(420px, 56vh, 580px); }
.slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
  background:
    radial-gradient(900px 500px at 78% 10%, rgba(47, 111, 228, .5), transparent 62%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.slide::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 40%, #000 12%, transparent 76%);
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-inner { position: relative; z-index: 1; max-width: 720px; padding: 56px 0; color: #fff; }
.slide h2 {
  color: #fff; font-size: clamp(1.9rem, 1.2rem + 3vw, 3.1rem);
  margin-bottom: .45em; letter-spacing: -.015em;
}
.slide p { color: rgba(255, 255, 255, .87); font-size: clamp(1rem, .95rem + .3vw, 1.15rem); max-width: 58ch; }
.slide .btn { margin-top: 26px; }

.slider-dots {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.slider-dots button {
  width: 11px; height: 11px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .75); background: transparent;
}
.slider-dots button[aria-selected="true"] { background: #fff; }

/* ---------- image band ---------- */

.band { padding: clamp(56px, 7vw, 92px) 0; }
.band-inner { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) {
  .band-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .band-reverse .band-media { order: 2; }
}
.band-media { display: grid; gap: 18px; }
.band-copy > p { color: var(--muted); max-width: 56ch; }
.band-copy .btn { margin-top: 26px; }

/* Photo slots: the originals were never archived, so these hold the composition
   until the real images are supplied. */
.photo-slot {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 15% 10%, rgba(47, 111, 228, .22), transparent 55%),
    linear-gradient(150deg, #edf1fa, #dce5f6);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.photo-slot::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 56, 149, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 56, 149, .05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.photo-slot img { position: relative; z-index: 1; width: 74px; height: 74px; opacity: .3; }
.photo-slot.tall { aspect-ratio: 3 / 4; }
.photo-slot.wide { aspect-ratio: 3 / 2; }
/* width, not max-width: an auto inline margin cancels grid stretch. */
.photo-slot.phone { aspect-ratio: 1 / 1.6; width: min(330px, 100%); margin-inline: auto; }

/* ---------- icon row ---------- */

.iconrow { padding: clamp(56px, 7vw, 92px) 0; }
.iconrow .section-head { margin-inline: auto; text-align: center; }
.iconcols { display: grid; gap: clamp(26px, 3vw, 44px); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.iconcol { text-align: center; display: flex; flex-direction: column; align-items: center; }
.iconcol .card-icon { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 22px; }
.iconcol .card-icon svg { width: 28px; height: 28px; }
.iconcol h3 { margin-bottom: .5em; }
.iconcol p { color: var(--muted); font-size: .97rem; max-width: 34ch; margin: 0; }

/* ---------- icon box (inside bands) ---------- */

.iconbox { display: flex; gap: 17px; margin-top: 26px; }
.iconbox:first-of-type { margin-top: 30px; }
.iconbox .card-icon { flex: 0 0 auto; width: 46px; height: 46px; margin-bottom: 0; }
.iconbox .card-icon svg { width: 22px; height: 22px; }
.iconbox h3 { font-size: 1.06rem; margin-bottom: .3em; }
.iconbox p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- image cards (inner-page "Strengths" blocks) ---------- */

.imgcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.imgcard .photo-slot { border: none; border-radius: 0; }
.imgcard-body { padding: 24px 26px 28px; }
.imgcard-body h3 { margin-bottom: .45em; }
.imgcard-body p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- real photos in slots ---------- */

.photo-slot .slot-img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 1;
}
.photo-slot:has(.slot-img)::after { display: none; }
.slide { background-size: cover; background-position: center; }

/* ---------- hero video ---------- */

.slide-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* The tint rides above the video so the headline stays legible either way. */
.slide-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(0, 27, 69, .93) 8%, rgba(0, 40, 110, .72) 48%, rgba(0, 40, 110, .38) 100%);
}
.slide::after { z-index: 1; }
.slide .container { position: relative; z-index: 2; }

/* Save the download on small screens and when motion is unwelcome: the poster
   image is already painted behind. */
@media (max-width: 760px) { .slide-video { display: none; } }
@media (prefers-reduced-motion: reduce) { .slide-video { display: none; } }

/* ---------- inner-page hero covers ---------- */

/* The photo is set inline per page; the gradient in that same declaration keeps the
   headline legible over whatever the image happens to be. */
.hero-photo { background-size: cover; background-position: center; }
