:root {
    --bg: #f3f6fb;
    --panel: #ffffff;
    --panel-soft: #edf3ff;
    --line: #dbe3ef;
    --text: #08152d;
    --muted: #5e6f88;
    --accent: #1E5EFF;
    --accent-2: #0A3FCC;
    --radius: 20px;
    --max: 1180px;
    --shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: block;
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.nav-links button {
  padding: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
}

.nav-links button:hover,
.nav-links button:focus-visible {
  color: var(--text);
}

.nav-links .is-active {
  color: var(--accent);
  font-weight: 700;
  border-bottom-color: var(--accent);
}

.hero {
  padding: 40px 0 24px;
}

.hero-copy,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 50px 48px 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 4.7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.lead {
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.chips {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.chip {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #e5ebf5;
    background: rgba(30, 94, 255, 0.08);
    color: #41516d;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.content-shell {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.tab-panel {
  display: none;
  padding: 28px 0 8px;
}

.tab-panel.is-visible {
  display: block;
}

h2 {
  margin: 0 0 24px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 30px;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--panel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.icon-box svg {
  width: 30px;
  height: 30px;
  display: block;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.card li { margin-bottom: 6px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
    box-shadow: 0 18px 50px rgba(30, 94, 255, 0.08);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.linkedin-icon {
  color: var(--accent);
  font-weight: 800;
}

.contact-label {
  font-size: 13px;
  color: #64748b;
}

.contact-muted a {
    color: var(--accent); 
    text-decoration: none;
    font-weight: 500;
}

.contact-muted a:hover {
        text-decoration: underline;
}

.divider {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

.contact-note-box {
  margin-top: 22px;
  padding: 16px;
  background: #f1f4fb;
  border-radius: 14px;
}

.note-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.note-list {
  margin: 0;
  padding-left: 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  margin-bottom: 10px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #94a3b8;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(30, 94, 255, 0.22);
}

.form-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.email-links a {
  color: var(--accent);
  text-underline-offset: 2px;
  font-weight: 500;
}

footer {
  padding: 18px 0 34px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  h1 { white-space: normal; }

  .grid-3,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .card {
    padding: 24px;
  }
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .nav-links {
    gap: 24px;
  }

  .brand-mark {
    height: 50px;
  }

  .hero-copy {
    padding: 28px 24px;
  }
}
