/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #1f1f1f;
  background: #ffffff;
  line-height: 1.5;
}
a { color: #0067b8; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* Top utility bar */
.utility-bar {
  background: #f2f2f2;
  font-size: 12px;
  padding: 6px 24px;
  text-align: right;
}
.util-link {
  color: #1f1f1f;
}
.caret { font-size: 10px; }

/* Main header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 24px;
}
.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 48px;
  gap: 24px;
}
.logo img { height: 23px; }
.primary-nav {
  display: flex;
  gap: 18px;
  flex: 1;
}
.primary-nav a {
  color: #1f1f1f;
  font-size: 13px;
  padding: 4px 0;
}
.primary-nav a:hover { text-decoration: underline; }
.support-active {
  font-weight: 600;
}
.header-tools {
  display: flex;
  gap: 6px;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1f1f;
  border-radius: 2px;
}
.icon-btn:hover { background: #f2f2f2; }

/* Sub-nav */
.subnav {
  background: #ffffff;
  border-bottom: 4px solid #0067b8;
  padding: 0 24px;
}
.subnav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  height: 44px;
  align-items: center;
}
.subnav-link {
  color: #1f1f1f;
  font-size: 13px;
}
.subnav-link.active {
  font-weight: 600;
}

/* Hero */
.hero {
  background: #f2f2f2;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e5e5;
}
.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: center;
}
.hero-text {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #1f1f1f;
}
.hero-cta {
  font-size: 14px;
  font-weight: 600;
}

/* Page */
.page {
  padding: 32px 24px 64px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.page-title {
  font-size: 28px;
  font-weight: 600;
  margin: 8px 0 8px;
  color: #1f1f1f;
}
.page-lede {
  font-size: 15px;
  color: #1f1f1f;
  margin: 0 0 8px;
  max-width: 760px;
}
.signin-link {
  display: inline-block;
  margin-bottom: 36px;
  font-weight: 600;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 4px;
  color: #1f1f1f;
}
.section-title.more-options {
  margin-top: 56px;
}
.section-sub {
  margin: 0 0 28px;
  color: #1f1f1f;
  max-width: 1100px;
  font-size: 14px;
}
.subsection-title {
  font-size: 16px;
  font-weight: 700;
  margin: 36px 0 16px;
}

/* Tile grid — borderless, icon-on-top, label below */
.tile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 16px;
}
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 110px;
  padding: 10px 6px;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 4px;
}
.tile:hover {
  background: #f5f5f5;
  text-decoration: none;
}
.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 8px;
}
.tile-icon img,
.tile-icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.tile-label {
  font-size: 13px;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.3;
}

.expand-link {
  display: inline-block;
  margin: 16px 0 8px;
  font-weight: 400;
  font-size: 14px;
}

/* Call us section */
.call-us {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding: 24px;
  background: #f7f9fc;
  border-left: 4px solid #0067b8;
  border-radius: 4px;
  max-width: 900px;
}
.call-us-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.call-us-content {
  flex: 1;
}
.call-us .section-title {
  margin-top: 0;
  margin-bottom: 4px;
}
.call-us .section-sub {
  margin-bottom: 16px;
}
.phone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 24px;
}
.phone-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-top: 1px solid #e5e5e5;
}
.phone-label {
  font-size: 12px;
  color: #555;
}
.phone-number {
  font-size: 18px;
  font-weight: 600;
  color: #0067b8;
}
.phone-meta {
  font-size: 11px;
  color: #777;
}

/* More support options */
.support-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 16px;
  max-width: 900px;
}
.path-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
}
.path-card h3 a {
  color: #0067b8;
  font-weight: 400;
}
.path-card p {
  margin: 0;
  color: #1f1f1f;
  font-size: 14px;
}

/* Pre-footer */
.prefooter {
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
  padding: 16px 24px;
}
.small-text {
  font-size: 12px;
  color: #555;
  max-width: 1280px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: #f2f2f2;
  color: #1f1f1f;
  padding: 32px 24px 0;
  font-size: 12px;
}
.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding-bottom: 24px;
}
.footer-col h4 {
  font-size: 14px;
  margin: 0 0 12px;
  color: #616161;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: #1f1f1f;
}
.footer-col a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid #d2d2d2;
  background: #f2f2f2;
}
.footer-bottom-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #616161;
}
.legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #616161;
}
.legal-links a { color: #616161; }

/* Responsive */
@media (max-width: 900px) {
  .primary-nav { display: none; }
  .subnav-inner { gap: 16px; overflow-x: auto; }
  .page-title { font-size: 24px; }
}
@media (max-width: 600px) {
  .hero-inner { flex-direction: column; }
  .legal-links { flex-direction: column; gap: 6px; }
  .tile { width: calc(33.333% - 12px); }
}
