/* ── VARIABLES ── */
:root {
  --blue:        #1B2E4B;
  --blue-hover:  #243C61;
  --green:       #1A6B3C;
  --green-bg:    #EBF5EF;
  --green-dark:  #155C32;
  --white:       #FFFFFF;
  --surface:     #F7F9FC;
  --border:      #E4E9F0;
  --text:        #111827;
  --muted:       #6B7280;
  --radius:      8px;
  --radius-lg:   12px;
  --font:        'Lexend Deca', sans-serif;
  --nav-h:       64px;
  --max-w:       1200px;
  --transition:  0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* Page fade in */
body { animation: pageFade 0.25s ease; }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.75); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-outline-blue:hover { border-color: var(--blue); }

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-hover) !important; }
.nav-cta.active { background: var(--blue) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.nav-overlay.show { display: block; }

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.eyebrow-white {
  color: rgba(255,255,255,0.6);
}

/* ── HERO (shared) ── */
.hero {
  background: var(--blue);
  padding: 80px 40px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bg);
  background: rgba(26,107,60,0.2);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 16px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTIONS ── */
.section {
  padding: 72px 0;
}
.section-alt { background: var(--surface); }

.section-header {
  margin-bottom: 48px;
}
.section-header .eyebrow { margin-bottom: 8px; }
.section-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
}

.group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--green);
  padding-left: 12px;
  margin-bottom: 24px;
}

/* ── SERVICE CARDS (detail pages) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(27,46,75,0.09);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.card-tagline {
  font-size: 13px;
  color: var(--muted);
}

.card-points {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.card-points li svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.card-pain {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.5;
}

/* ── HOME: SERVICES OVERVIEW ── */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.home-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.home-service-card:hover {
  box-shadow: 0 6px 24px rgba(27,46,75,0.09);
  transform: translateY(-3px);
}
.home-service-card .card-icon { background: var(--surface); }
.home-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.015em;
}
.home-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.home-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.home-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.home-service-card:hover .home-card-link { gap: 10px; }

/* ── HOME: INDUSTRIES ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ── Industry card link additions ──
   Add these rules to the existing .industry-card block in style.css
   ─────────────────────────────────────────────────────────────── */

/* Make the card a proper link block */
a.industry-card {
  text-decoration: none;
  color: inherit;
  display: flex;          /* matches existing flex layout */
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

a.industry-card:hover {
  border-color: #1A6B3C;
  box-shadow: 0 8px 28px rgba(27, 46, 75, 0.10);
  transform: translateY(-3px);
}

/* CTA row at bottom of each card */
.industry-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #E4E9F0;
  font-size: 13px;
  font-weight: 600;
  color: #1A6B3C;
  transition: gap 0.2s ease;
}

.industry-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

a.industry-card:hover .industry-cta {
  gap: 10px;
}

a.industry-card:hover .industry-cta svg {
  transform: translateX(3px);
}
.industry-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.industry-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.industry-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.industry-points span {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.industry-points span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HOSTING PLAN CARDS ── */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.plan-card:hover {
  box-shadow: 0 8px 28px rgba(27,46,75,0.09);
  transform: translateY(-3px);
}
.plan-card.popular {
  border-color: var(--green);
  border-width: 2px;
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.plan-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.plan-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ── FLAT FEE BOX (advertising) ── */
.flat-fee-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 12px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.flat-fee-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}
.flat-fee-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.flat-fee-box p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--blue);
  padding: 72px 40px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}
.contact-info p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Honeypot */
.hp-field { display: none !important; }

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  flex-wrap: wrap;
  gap: 12px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
}
.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-msg.success {
  background: var(--green-bg);
  color: var(--green-dark);
  display: block;
}
.form-msg.error {
  background: #FEF2F2;
  color: #B91C1C;
  display: block;
}
.btn-submit {
  position: relative;
}
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.75;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--blue);
  padding: 64px 40px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--green-bg); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 10px;
}
.footer-location {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .home-services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .hosting-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container        { padding: 0 20px; }
  .section          { padding: 52px 0; }

  /* Nav mobile */
  .nav-inner        { padding: 0 20px; }
  .nav-toggle       { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    z-index: 190;
    overflow-y: auto;
  }
  .nav-links.open   { display: flex; }
  .nav-links a      { font-size: 16px; }
  .nav-cta          { width: 100%; justify-content: center; padding: 12px 20px !important; }

  .hero             { padding: 56px 20px; }
  .hero h1          { font-size: 28px; }
  .hero p           { font-size: 15px; }

  .home-services-grid  { grid-template-columns: 1fr 1fr; }
  .industries-grid     { grid-template-columns: 1fr 1fr; }
  .services-grid       { grid-template-columns: 1fr; }
  .hosting-grid        { grid-template-columns: 1fr; }

  .contact-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .flat-fee-box     { flex-direction: column; gap: 16px; }

  .cta-strip        { padding: 52px 20px; }
  .footer-inner     { grid-template-columns: 1fr; gap: 32px; }
  .site-footer      { padding: 48px 20px 0; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0; }
}

@media (max-width: 480px) {
  .home-services-grid { grid-template-columns: 1fr; }
  .industries-grid    { grid-template-columns: 1fr; }
  .hero-ctas          { flex-direction: column; align-items: center; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #1B2E4B;
  padding: 44px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, #1B2E4B, transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(to left, #1B2E4B, transparent); }

.trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
  font-family: var(--font);
}

.trust-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 80px;
}

.trust-item {
  padding: 8px 36px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
  cursor: default;
  flex-shrink: 0;
}
.trust-item:hover { opacity: 1; }

.trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Logo text styles */
.logo-catalyx {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #fff;
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.logo-catalyx .part1 { font-weight: 600; letter-spacing: -0.02em; }
.logo-catalyx .part2 { font-weight: 300; color: rgba(255,255,255,0.55); letter-spacing: -0.01em; }

.logo-jaap {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-sql {
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.logo-sql .bracket {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  color: #4ADE80;
  font-size: 16px;
}
.logo-sql .sql {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.logo-sql .round {
  font-family: var(--font);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  letter-spacing: -0.02em;
}

.logo-diap {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.logo-diap .d {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: rgba(255,255,255,0.7);
}
.logo-diap .iap {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo-inertia {
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-inertia .name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.logo-inertia .sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Responsive trust bar */
@media (max-width: 768px) {
  .trust-track {
    padding: 0 24px;
    gap: 4px;
  }
  .trust-item { padding: 10px 20px; }
  .trust-divider { display: none; }
  .trust-bar::before,
  .trust-bar::after { width: 24px; }
}

@media (max-width: 480px) {
  .trust-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding: 0 32px;
    justify-items: center;
  }
  .trust-item { padding: 0; }
  .trust-divider { display: none; }
  .trust-bar::before,
  .trust-bar::after { display: none; }
}