/* ==========================================================================
   Fransysco — Design tokens
   Navy + peach from the brand mark. Montserrat (brand wordmark face) for
   display, Inter for body. Single accent color used sparingly.
   ========================================================================== */

:root {
  --navy: #151E2F;
  --navy-2: #1D2A42;
  --navy-soft: #2A3A57;
  --orange: #F6AD7A;
  --orange-dark: #E8935A;
  --cream: #F7F3EC;
  --white: #FFFFFF;
  --ink: #151E2F;
  --slate: #626D7D;
  --line: #E6E1D8;
  --line-dark: #2A3752;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1160px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

h1 { font-weight: 800; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }

p { margin: 0 0 1em; color: var(--slate); }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange-dark);
  display: inline-block;
}

.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: #B9C2D4; }
.section--navy .eyebrow { color: var(--orange); }
.section--navy .eyebrow::before { background: var(--orange); }

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo img { height: 34px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--orange-dark); border-color: var(--orange-dark); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 108px 0 96px;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 56px);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero p.lede {
  color: #C4CCDB;
  font-size: 17.5px;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  font-weight: 800;
}
.hero__stat span {
  font-size: 12.5px;
  color: #93A0B8;
  letter-spacing: 0.03em;
}

/* Signature orbit graphic */
.orbit-wrap { position: relative; height: 420px; }
.orbit-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit-node-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  fill: #C4CCDB;
  letter-spacing: 0.06em;
}
.orbit-pulse {
  animation: pulse 3.2s ease-in-out infinite;
  transform-origin: center;
}
.orbit-pulse:nth-child(2) { animation-delay: 0.6s; }
.orbit-pulse:nth-child(3) { animation-delay: 1.2s; }
@keyframes pulse {
  0%, 100% { opacity: 0.55; r: 4; }
  50% { opacity: 1; r: 6; }
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  padding: 40px 34px;
  transition: background 0.25s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card .num {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---- Logo strip (brands / alliances) ---- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.logo-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}
.section--navy .logo-chip {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--white);
}

/* ---- Two column with list ---- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.check-list li svg { flex: none; margin-top: 3px; }

/* ---- About / stats band ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
}
.stat-card span { font-size: 13px; color: var(--slate); }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-item strong { display: block; color: var(--white); font-size: 15px; }
.contact-info-item span { color: #A8B2C4; font-size: 14px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.2s var(--ease);
}
input::placeholder, textarea::placeholder { color: #7C88A0; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--orange);
}
textarea { resize: vertical; min-height: 110px; }

.form-note { font-size: 12.5px; color: #8896AC; margin-top: 10px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-2);
  padding: 56px 0 28px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-grid img { height: 30px; margin-bottom: 14px; }
.footer-grid p { color: #93A0B8; font-size: 14px; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #A8B2C4; font-size: 14px; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #7C88A0;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #A8B2C4;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.social-row a:hover { border-color: var(--orange); color: var(--orange); }

/* ---- Sticky WhatsApp button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: var(--navy);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(21,30,47,0.28);
  border: 2px solid var(--orange);
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ---- Utility ---- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible { outline: 2.5px solid var(--orange-dark); outline-offset: 2px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .orbit-wrap { height: 280px; order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn-outline-dark-desktop { display: none; }
  .nav__toggle { display: block; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}

/* Mobile nav drawer */
.nav__links.open {
  display: flex;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px 28px;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 721px) {
  .nav__links.open { position: static; flex-direction: row; padding: 0; border: none; }
}
