﻿:root {
  --mint: #10d28e;
  --blue: #2f6bff;
  --orange: #f5a623;
  --navy: #081b3a;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.hero-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 500px;
  height: 500px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(16, 210, 142, 0.24), transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0.85rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.requirement-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.95rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.requirement-card i {
  color: var(--mint);
}

.service-tab {
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: white;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  transition: 0.2s ease;
}

.service-tab.active,
.service-tab:hover {
  border-color: transparent;
  background: linear-gradient(120deg, var(--mint), var(--blue));
  color: #fff;
}

.service-card {
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(8, 27, 58, 0.08);
}

.service-card .icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.service-card p {
  margin-top: 0.35rem;
  min-height: 42px;
  font-size: 0.75rem;
  color: #64748b;
}

.service-card button {
  margin-top: 0.9rem;
  border-radius: 9999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.field input,
.field select,
.field textarea,
.field-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #fff;
  padding: 0.62rem 0.75rem;
  font-size: 0.9rem;
  color: #0f172a;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.14);
}

.footer-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-list {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-list a:hover {
  color: #fff;
}

.status-chip {
  border-radius: 9999px;
  padding: 0.22rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.stat-card {
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(8, 27, 58, 0.08);
}

.stat-card p {
  font-size: 0.74rem;
  color: #64748b;
}

.stat-card h3 {
  margin-top: 0.4rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.action-btn {
  border-radius: 9999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.guide-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 0.9rem 0.95rem;
}

.guide-step span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--mint), var(--blue));
  flex-shrink: 0;
}

.guide-step p {
  font-size: 0.83rem;
  color: #334155;
  font-weight: 600;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 0.8rem 0.95rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: #64748b;
  transition: transform 0.2s ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #475569;
}

.guide-tab {
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.4rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
}

.guide-tab.active,
.guide-tab:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--mint), var(--blue));
}

.guide-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 0.9rem;
}

.guide-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.guide-card-head p {
  font-size: 0.86rem;
  color: #0f172a;
  font-weight: 800;
}

.guide-card-head span {
  border-radius: 9999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #dbeafe;
}

.guide-card ul {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.45rem;
}

.guide-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: #475569;
}

.guide-card li i {
  color: var(--mint);
  margin-top: 0.08rem;
}

@media (max-width: 640px) {
  .service-card p {
    min-height: auto;
  }
}
