:root {
  --tt-navy: #0a2540;
  --tt-cyan: #00d4ff;
  --tt-ink: #10233b;
  --tt-bg: #f5fbff;
  --tt-card: #ffffff;
  --tt-border: #d8e7f2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--tt-ink);
  background: radial-gradient(circle at 18% 8%, #d7f5ff 0%, #f6fcff 40%, #f7fbfe 100%);
}

a { color: var(--tt-navy); text-decoration: none; }
a:hover { color: #0b88a3; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--tt-border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 138px;
  height: auto;
}

.brand-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tt-navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: #ebf8ff;
}

.hero {
  padding: 64px 0 38px;
}

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

.tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf9ff;
  border: 1px solid #b7edff;
  color: #0d4b6b;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  margin: 0;
  color: var(--tt-navy);
}

h1 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 70ch;
}

.card {
  background: var(--tt-card);
  border: 1px solid var(--tt-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(5, 45, 74, 0.08);
}

.hero-proof {
  padding: 20px;
  background: linear-gradient(155deg, #ffffff 0%, #e9f9ff 100%);
}

.hero-proof h3 {
  font-size: 1.08rem;
}

.proof-list {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(100deg, var(--tt-navy), #123f67);
  color: #fff;
}

.btn-primary:hover { filter: brightness(1.08); }

.btn-ghost {
  background: #fff;
  color: var(--tt-navy);
  border-color: #a7d7ea;
}

.btn-ghost:hover { background: #ecfaff; }

.section {
  padding: 24px 0;
}

.section h2 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  margin-bottom: 10px;
}

.subtle {
  color: #375b77;
  margin: 0 0 16px;
}

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

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

.feature {
  padding: 18px;
}

.feature h3 { font-size: 1.06rem; }
.feature p { margin: 8px 0 0; line-height: 1.55; }

.law-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--tt-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7, 61, 95, 0.08);
}

.law-table th,
.law-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid #e4eef6;
  vertical-align: top;
}

.law-table thead th {
  background: #ebf7ff;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.law-table tr:last-child td { border-bottom: 0; }

.highlight {
  color: #0f6d88;
  font-weight: 700;
}

.page-head {
  padding: 52px 0 20px;
}

.breadcrumbs {
  color: #3a6987;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.article-block {
  padding: 20px;
  margin-bottom: 14px;
}

.article-block h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.article-block p,
.article-block li {
  line-height: 1.6;
}

.article-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.form-wrap {
  padding: 20px;
}

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

label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 4px 0;
}

input, textarea, select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #c5ddea;
  font: inherit;
  background: #fff;
}

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

.small { font-size: 0.83rem; color: #42617b; }

.faq-item {
  border: 1px solid var(--tt-border);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 14px;
  font: inherit;
  font-weight: 700;
  color: var(--tt-navy);
  cursor: pointer;
}

.faq-a {
  padding: 0 14px 14px;
  display: none;
  color: #233f58;
}

.faq-item.open .faq-a { display: block; }

.site-footer {
  margin-top: 36px;
  border-top: 1px solid var(--tt-border);
  background: #f2f9ff;
  padding: 20px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: start;
}

.kicker {
  margin-top: 10px;
  color: #395872;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }

  .hero {
    padding-top: 38px;
  }
}
