/* CINDA — shared site styles. Petrol + Coral + White, no italics. */
:root {
  --petrol:     #0a2e36;
  --petrol-2:   #11424d;
  --petrol-3:   #1a5a68;
  --petrol-mist:#dceaec;
  --coral:      #ff5a3c;
  --coral-deep: #d63f24;
  --coral-soft: #ffd2c6;
  --coral-bg:   #fff1ec;
  --sand:       #f3ede2;
  --milk:       #f4f5f5;
  --line:       #e3e4e3;
  --line-soft:  #edeeed;
  --ink:        #0a2e36;
  --ink-2:      #2a4348;
  --mute:       #6b7d80;
  --pebble:     #a39d8e;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  --font-label:   var(--font-body);
  --maxw: 1280px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
i, em, cite, address, var, dfn { font-style: normal; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); font-weight: 400; color: var(--ink);
  background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.em { color: var(--coral); font-weight: 500; }

/* Top bar */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 32px; padding: 14px 32px; max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--petrol); letter-spacing: -.01em;
}
.brand-mark {
  width: 32px; height: 32px; background: var(--petrol); color: var(--coral);
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 600; font-size: 18px; position: relative;
}
.brand-mark::after {
  content:''; position:absolute; right:-3px; bottom:-3px;
  width: 10px; height: 10px; background: var(--coral);
}
.nav-links { display: flex; gap: 30px; justify-content: center; font-size: 16px; font-weight: 600; color: var(--ink-2); }
.nav-links a { padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav-links a:hover { color: var(--petrol); border-bottom-color: var(--coral); }
.nav-links a.active { color: var(--petrol); border-bottom-color: var(--coral); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px;
  padding: 11px 20px; border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: var(--coral-deep); }
.btn-ghost { background: transparent; color: var(--petrol); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--petrol); }
.nav-contact.active { border-color: var(--coral); color: var(--coral-deep); }
.btn-dark { background: var(--petrol); color: white; }
.btn-dark:hover { background: var(--petrol-2); }
.btn-lg { font-size: 16px; padding: 14px 26px; }
.btn .arr { transition: transform .15s; }
.btn:hover .arr { transform: translateX(3px); }

/* Type */
.eyebrow {
  font-family: var(--font-label); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
h1.display {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 6vw, 88px); line-height: 1.02; letter-spacing: -.022em;
  color: var(--petrol);
}
h1.display .uline { background: linear-gradient(transparent 70%, var(--coral-soft) 70%); padding: 0 6px; }
h2.section {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.04; letter-spacing: -.02em;
  color: var(--petrol);
}
h2.section .em { font-weight: 500; color: var(--coral); }
.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 640px;
  font-weight: 400;
}

/* Sections */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; max-width: 760px; }

/* Cards */
.card {
  background: white; border: 1px solid var(--line); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--petrol); }
.card .ic {
  width: 44px; height: 44px; background: var(--coral-bg); color: var(--coral-deep);
  display: grid; place-items: center; margin-bottom: 8px;
  font-family: var(--font-label); font-weight: 600; font-size: 16px;
}
.card h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  color: var(--petrol); letter-spacing: -.01em;
}
.card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* Petrol band */
.band-dark {
  background: var(--petrol); color: var(--sand);
  padding: 96px 0; position: relative; overflow: hidden;
}
.band-dark::before {
  content:''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,90,60,.04) 79px 80px);
  pointer-events: none;
}
.band-dark h2.section { color: white; }
.band-dark .lede { color: rgba(243,237,226,.8); }

/* Footer */
footer.foot {
  background: var(--petrol); color: var(--sand); padding: 80px 0 32px;
  border-top: 4px solid var(--coral);
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 64px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(243,237,226,.15);
}
.foot-grid .brand { color: white; margin-bottom: 12px; }
.foot-grid .brand-mark { background: white; color: var(--petrol); }
.foot-tag { font-size: 14px; color: rgba(243,237,226,.65); max-width: 280px; line-height: 1.55; }
.foot-col h5 {
  font-family: var(--font-label); font-size: 11.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 16px; font-weight: 600;
}
.foot-col a { display: block; padding: 5px 0; font-size: 14.5px; color: rgba(243,237,226,.78); }
.foot-col a:hover { color: white; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-family: var(--font-label); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(243,237,226,.45);
}
.foot-bottom .pcs { display: flex; gap: 24px; }

/* Trust strip */
.trust {
  display: grid; grid-template-columns: auto repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  align-items: center;
}
.trust-l {
  font-family: var(--font-label); font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--mute); font-weight: 600;
  padding: 24px 28px; border-right: 1px solid var(--line);
  background: var(--milk);
}
.trust-cell {
  padding: 24px 28px; border-right: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  color: var(--petrol); letter-spacing: -.01em;
}
.trust-cell:last-child { border-right: 0; }
.trust-cell small {
  display: block; font-family: var(--font-label); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--mute);
  margin-top: 4px; font-weight: 600;
}

/* Page hero (inner pages) */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -.025em;
  color: var(--petrol); margin-top: 16px; max-width: 900px;
}
.page-hero .lede { margin-top: 18px; max-width: 720px; font-size: 19px; }

/* Inline pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-bg); color: var(--coral-deep);
  border: 1px solid var(--coral-soft);
  font-family: var(--font-label); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px;
}
.pill .dot { width: 6px; height: 6px; background: var(--coral); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* Mobile */
@media (max-width: 880px) {
  .nav-links { display: none; }
  section { padding: 64px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust-l, .trust-cell { border-right: 0; border-bottom: 1px solid var(--line); }
}
