:root {
  --bg-top: #eef3f8;
  --bg-bottom: #e6ecf3;
  --card: rgba(255, 255, 255, 0.96);
  --card-soft: #f7f9fb;
  --text: #0f172a;
  --muted: #5b6472;
  --line: #d7e0e9;
  --line-strong: #c6d2de;
  --navy: #15263d;
  --navy-soft: #243850;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.06);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.hero {
  text-align: center;
  padding: 28px 20px 20px;
}

.notice {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(21, 38, 61, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-soft);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.eyebrow {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.subtitle {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--navy-soft);
  font-weight: 500;
  text-wrap: balance;
}

.intro-block {
  width: min(860px, 100%);
  margin: 24px auto 0;
}

.intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.fr {
  display: inline-block;
  margin-top: 10px;
}

.content-card {
  background: var(--card);
  border: 1px solid rgba(21, 38, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  backdrop-filter: blur(8px);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.panel {
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}

.accent-panel {
  background: linear-gradient(180deg, #f9fbfd 0%, #eef4f9 100%);
}

.panel h2,
.contact-section h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.2;
}

.panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.panel p:last-child {
  margin-bottom: 0;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 12px;
  color: var(--text);
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list strong {
  font-weight: 600;
}

.feature-list span {
  color: var(--muted);
}


.brand {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.trust-item,
.contact-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.trust-item::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(36, 56, 80, 0.85), rgba(36, 56, 80, 0.18));
}

.trust-item {
  padding: 22px 20px;
}

.trust-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.contact-section {
  margin-top: 24px;
  padding-top: 8px;
}

.section-heading p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  display: block;
  padding: 22px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: #fbfcfe;
  box-shadow: 0 14px 28px rgba(21, 38, 61, 0.10);
}

.contact-card:focus-visible {
  outline: 3px solid rgba(36, 56, 80, 0.12);
  outline-offset: 2px;
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value {
  display: block;
  color: var(--navy);
  font-weight: 600;
  word-break: break-word;
  font-size: 0.98rem;
}

.subvalue {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  word-break: break-word;
}

.footer {
  text-align: center;
  padding: 20px 12px 0;
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 900px) {
  .content-card {
    padding: 24px;
  }

  .grid-two,
  .trust-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero {
    padding: 18px 8px 14px;
  }

  .content-card {
    border-radius: 20px;
    padding: 18px;
  }

  .panel,
  .trust-item,
  .contact-card {
    padding: 18px;
    border-radius: 16px;
  }

  .notice {
    font-size: 0.88rem;
    padding: 9px 14px;
  }

  .subtitle {
    line-height: 1.45;
  }

  .intro {
    font-size: 0.98rem;
  }
}
