/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
  --color-brand:   #1a73e8;
  --color-accent:  #fbbc04;
  --color-icon-default: #1f1f1f;
  --color-text:    #202124;
  --color-bg:      #ffffff;
  --color-muted:   #5f6368;
  --color-border:  #dadce0;
  --color-success: #34a853;
  --color-error:   #ea4335;
  --color-warning: #fbbc04;
  --font-base:     system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Cascadia Code', Consolas, monospace;
  --max-width:     1200px;
  --radius:        8px;
  --radius-sm:     4px;
  --shadow:        0 1px 3px rgba(0,0,0,.12);
  --shadow-lg:     0 4px 12px rgba(0,0,0,.15);
  --transition:    0.2s ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base); color: var(--color-text);
  background: var(--color-bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.material-symbols-outlined,
.material-symbols-rounded,
.material-symbols-sharp {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  color: var(--color-icon-default);
  vertical-align: middle;
}
.ms-inline {
  font-size: 1.125rem;
  margin: 0 .2rem;
  vertical-align: text-bottom;
}
.ms-leading {
  margin-right: .35rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.text-center { text-align: center; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.3; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; } h4 { font-size: 1.25rem; }
.text-muted { color: var(--color-muted); }
.text-small { font-size: 0.85rem; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: .75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; cursor: pointer; border: none;
  font-size: 1rem; transition: opacity var(--transition);
}
.btn:hover { opacity: 0.9; text-decoration: none; }
.btn-primary { background: var(--color-brand); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-brand); border: 2px solid var(--color-brand); }
.btn-accent { background: var(--color-accent); color: #202124; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* ── Cards ── */
.card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .5rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .65rem .9rem; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-base); font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: 1rem; }
.form-check input[type="checkbox"] { margin-top: .3rem; width: auto; }
.form-feedback { padding: 1rem; border-radius: var(--radius-sm); margin: 1rem 0; display: none; }
.form-feedback.success { background: #e6f4ea; color: #137333; display: block; }
.form-feedback.error { background: #fce8e6; color: #c5221f; display: block; }

/* ── Navigation ── */
.site-header { background: #fff; border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 100; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

.site-header-default {
  background:
    radial-gradient(circle at top left, rgba(26,115,232,0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.default-header-rail {
  background: linear-gradient(90deg, #102542 0%, #163860 55%, #1a73e8 100%);
  color: #dbe8ff;
}

.default-header-rail__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.default-header-rail__eyebrow {
  font-weight: 700;
  color: #ffffff;
}

.default-header-rail__dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #fbbc04;
}

.default-header-rail__industry {
  color: rgba(255,255,255,0.82);
}

.default-header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.default-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  text-decoration: none;
}

.default-header-brand:hover {
  text-decoration: none;
}

.default-header-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(26,115,232,0.16), rgba(15,23,42,0.06));
  border: 1px solid rgba(26,115,232,0.16);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.default-header-brand__copy {
  display: grid;
  min-width: 0;
}

.default-header-brand__copy strong {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.15;
}

.default-header-brand__copy span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.default-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.default-header-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 37, 66, 0.06);
  border: 1px solid rgba(16, 37, 66, 0.08);
  color: #21405f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.default-header-cta {
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(26, 115, 232, 0.2);
}

.default-site-nav {
  grid-column: 1 / -1;
}

.default-site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.default-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.default-site-nav a:hover {
  color: var(--color-brand);
  background: rgba(26,115,232,0.08);
  text-decoration: none;
}

.default-site-nav__mobile-cta {
  display: none;
}

.landing-header {
  padding: 1.4rem 0 0;
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(16, 37, 66, 0.08);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.landing-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
}

.landing-header__brand:hover {
  text-decoration: none;
}

.landing-header__brand-copy {
  display: grid;
}

.landing-header__brand-copy strong {
  line-height: 1.1;
}

.landing-header__brand-copy span {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.landing-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-header__link {
  font-weight: 700;
}

/* ── Breadcrumb ── */
.breadcrumb { padding: 1rem 0; font-size: .85rem; color: var(--color-muted); }
.breadcrumb a { color: var(--color-brand); }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--color-brand), #1557b0); color: #fff; }
.hero h1 { font-size: 3rem; margin-bottom: .5rem; }
.hero p { font-size: 1.2rem; opacity: .9; }
.hero .btn-primary { background: var(--color-accent); color: #202124; }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section-alt { background: #f8f9fa; }
.section h2 { text-align: center; margin-bottom: 2.5rem; }

/* ── Tables ── */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); }
th { font-weight: 600; background: #f8f9fa; }

/* ── Badges ── */
.badge { display: inline-block; padding: .2rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.badge-primary { background: var(--color-brand); color: #fff; }
.badge-accent { background: var(--color-accent); color: #202124; }
.badge-success { background: var(--color-success); color: #fff; }

.service-card { display: flex; flex-direction: column; gap: 1rem; }
.service-card__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service-card p { min-height: 3rem; color: var(--color-muted); }

/* ── Disclaimer ── */
.disclaimer { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius-sm); padding: 1rem; font-size: .85rem; color: #856404; margin: 1rem 0; }

.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: #f8f9fa; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 1.25rem 1rem; color: var(--color-muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 2rem; } h2 { font-size: 1.5rem; }
  .menu-toggle { display: block; }
  .default-header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .default-header-actions {
    display: none;
  }
  .default-site-nav {
    display: none;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(16, 37, 66, 0.08);
    padding-top: 0.85rem;
  }
  .default-site-nav.open {
    display: block;
  }
  .default-site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .default-site-nav__mobile-cta {
    display: block;
  }
  .default-site-nav__mobile-cta a {
    justify-content: center;
    background: var(--color-brand);
    color: #fff;
    box-shadow: 0 10px 18px rgba(26, 115, 232, 0.18);
  }
  .landing-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .landing-header__actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* ── Print ── */
@media print {
  .site-header, .cookie-bar, .menu-toggle, .btn { display: none !important; }
  body { color: #000; background: #fff; }
}
