/* BUTTONS */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-p:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-shadow);
  color: #fff;
}

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}

.btn-o:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

/* SERVICE / INFO CARDS */
.sc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: all 0.3s;
}

.sc:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
  border-color: transparent;
}

.sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sc-icon svg { width: 26px; height: 26px; color: var(--green); }
.sc-icon.blue { background: var(--accent-light); }
.sc-icon.blue svg { color: var(--accent); }

.sc h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.sc p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.sc ul { list-style: none; margin-top: 18px; }

.sc ul li {
  padding: 5px 0;
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.sc ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* TABLES */
.tbl-wrap,
.sub-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-sm);
  box-shadow: var(--sh);
  margin: 24px 0;
}

.sub-table-wrap { border-radius: var(--r); }

table { width: 100%; border-collapse: collapse; background: var(--surface); }

thead th {
  background: var(--dark-gradient);
  color: var(--text);
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.sub-table-wrap thead th { padding: 16px 20px; }

tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.sub-table-wrap tbody td { padding: 14px 20px; }

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--bg-alt); }

.td-g, .td-grade { font-weight: 600; }
.td-a, .td-amt { font-weight: 700; color: var(--green); }

/* CTA BOX */
.cta-box { text-align: center; }

.cta-box h2 { max-width: 580px; margin: 0 auto 20px; }
.cta-box p { color: var(--muted); max-width: 480px; margin: 0 auto 40px; font-size: 18px; }

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--muted);
}

.cc-item svg { width: 18px; height: 18px; color: var(--accent); }
.cc-item a { color: var(--text); font-weight: 500; }
.cc-item a:hover { color: var(--accent); }

/* FORM BASICS */
label { font-size: 14px; font-weight: 600; color: var(--text); }

input, textarea, select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77, 149, 168, 0.12);
  background: #fff;
}

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

/* COMPONENTS RESPONSIVE */
@media (max-width: 480px) {
  .cta-btns { flex-direction: column; align-items: center; }
}
