@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #f6f8fb;
  --panel: #ffffff;
  --ink: #0c1a2f;
  --muted: #52607a;
  --border: #e0e6ef;
  --accent: #0f8ad8;
  --accent-2: #0ec4a7;
  --shadow: 0 18px 50px rgba(15, 26, 47, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
body {
  font-family: 'Manrope', 'Space Grotesk', sans-serif;
  color: var(--ink);
  background: radial-gradient(120% 80% at 20% 20%, #ffffff 0%, #eef2f7 55%, #e7edf5 100%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.section { padding: 76px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.92)); border-block: 1px solid var(--border); }
.section h2 { margin: 0 0 12px; font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; }
.section p { margin: 0; color: var(--muted); }
.section-head { display: grid; gap: 6px; margin-bottom: 10px; }
.two-col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: start; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(246,248,251,0.92); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.brand img { width: 200px; height: auto; object-fit: contain; }
.actions { display: flex; align-items: center; gap: 10px; }
/* Visually hide text but keep it accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}
.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(15, 138, 216, 0.2);
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(12,26,47,0.08); }
.button.primary:hover { box-shadow: 0 16px 32px rgba(15, 138, 216, 0.25); }

.hero { padding: 86px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 138, 216, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 12px;
}
.hero h1 { margin: 14px 0 12px; font-size: clamp(32px, 6vw, 50px); letter-spacing: -0.03em; }
.hero p { margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.hero-card h3 { margin: 0; font-size: 18px; }
.hero-card p { margin: 0; color: var(--muted); }
.stat-row { display: flex; gap: 14px; align-items: center; }
.stat { background: rgba(15, 138, 216, 0.08); color: var(--accent); padding: 10px 12px; border-radius: 12px; font-weight: 700; min-width: 96px; text-align: center; }
.contact-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; color: var(--muted); font-size: 14px; }
.contact-strip span { display: inline-flex; align-items: center; gap: 8px; }

.list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; color: var(--muted); }
.list li { display: flex; gap: 10px; align-items: flex-start; }
.bullet { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(120deg, var(--accent), var(--accent-2)); margin-top: 6px; flex-shrink: 0; }

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.panel h3 { margin: 0 0 8px; }
.panel p { margin: 0; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { padding: 7px 10px; border-radius: 999px; background: rgba(15, 138, 216, 0.08); color: var(--accent); font-weight: 600; font-size: 13px; }

.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 20px; }
.brand-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}
.brand-top { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 84px; height: 84px; object-fit: contain; background: #f4f7fb; border-radius: 14px; padding: 10px; border: 1px solid var(--border); }
.brand-card h3 { margin: 0; font-size: 18px; }
.brand-card p { margin: 0; color: var(--muted); }
.brand-link { font-weight: 700; color: var(--accent); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.brand-link:hover { text-decoration: underline; }
.placeholder-logo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d7e8f8, #c8f1ea);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--ink);
  border: 1px solid var(--border);
}

.contact-card {
  background: linear-gradient(120deg, rgba(15, 138, 216, 0.08), rgba(14, 196, 167, 0.08));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}
.contact-row { display: flex; flex-wrap: wrap; gap: 16px; color: var(--ink); font-weight: 600; }
.contact-row span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 12px; background: #ffffff; border: 1px solid var(--border); }

.site-footer { border-top: 1px solid var(--border); color: var(--muted); padding: 22px 0 32px; font-size: 14px; text-align: center; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .site-header { position: sticky; }
}

@media (max-width: 640px) {
  .actions { gap: 6px; }
  .button { padding: 10px 14px; }
  .hero { padding-top: 66px; }
}
