:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --muted: #f6f7f9;
  --text: #0b0d12;
  --text-2: #3b404a;
  --border: #e6e8ee;
  --brand: #b11212;
  --brand-hover: #8f1d1d;
  --brand-soft: #fcedee;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 13, 18, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.brand-logo {
  max-width: 200px;
  width: min(42vw, 200px);
  height: auto;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--brand);
}

.cta-button {
  background: var(--brand);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  box-shadow: none;
}

.cta-button:hover {
  background: var(--brand-hover);
}

.ghost-button {
  border: 1px solid var(--border);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  background: transparent;
  color: var(--text);
  transition: background 0.2s ease;
}

.ghost-button:hover {
  background: var(--muted);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  padding: 72px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: #444444;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--brand-hover);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--muted);
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: auto;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-text {
  color: var(--text-2);
  margin-bottom: 1.6rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
}

.hero-highlights div {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: none;
}

.hero-highlights strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero-card h2 {
  margin-bottom: 1rem;
}

.report {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.report ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text-2);
}

.report li {
  margin: 8px 0;
}

.hero-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--text-2);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  font-weight: 600;
}

.summary {
  padding: 56px 0;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.summary article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--surface);
  box-shadow: none;
}

.icon {
  width: 32px;
  height: 32px;
  color: var(--text);
  margin-bottom: 0.6rem;
  display: inline-flex;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--muted);
}

.section-header {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-header p {
  color: var(--text-2);
}

.services-flow {
  display: grid;
  gap: 56px;
  margin: 48px 0;
}

.service-step {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: center;
}

.service-step:nth-child(even) {
  direction: rtl;
}

.service-step:nth-child(even) > * {
  direction: ltr;
}

.service-media {
  display: grid;
  gap: 16px;
}

.service-media--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: auto;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-content ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-2);
  display: grid;
  gap: 0.5rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.steps article {
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--muted);
  border: 1px solid var(--border);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
}

.cta-banner {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  padding: 2rem 3rem;
  border-radius: var(--radius);
  background: #0b0d12;
  color: #ffffff;
}

.cta-banner div {
  flex: 0 1 auto;
  text-align: center;
}

.cta-banner h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.05rem;
  color: #e5e7eb;
  margin: 0;
}

.cta-arrow {
  position: relative;
  width: 70px;
  height: 16px;
  margin: 0 2rem;
  flex: 0 0 auto;
}

.cta-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 18px;
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
  transform: translateY(-50%);
}

.cta-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #ffffff;
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.mission {
  font-weight: 600;
}

.about-card {
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-2);
  margin: 1rem 0 1.5rem;
}

.placeholder-photo {
  height: 180px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d9d9d9, #f0f1f4);
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(360px, 1.6fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 0.4rem;
}

.contact-copy p {
  color: var(--text-2);
  max-width: 42ch;
  margin-bottom: 1rem;
}

.contact-points {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  color: var(--text-2);
  padding-left: 0;
}

.contact-points li {
  position: relative;
  padding-left: 1.1rem;
}

.contact-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.contact-details p {
  margin-bottom: 0.4rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  background: var(--muted);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.form-col {
  background: #f8f9fb;
  padding: 22px;
  border-radius: 14px;
  min-width: 0;
}

.form-col--primary {
  background: #ffffff;
  border: 1px solid var(--border);
}

.form-col label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-hint {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

.form-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-full {
  width: 100%;
}

.muted {
  color: #6b7280;
  font-weight: 600;
}

.contact-wrapper {
  overflow: visible;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #ffffff;
  color: var(--text);
  width: 100%;
}

.contact-form textarea {
  min-height: 88px;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-2) 50%),
    linear-gradient(135deg, var(--text-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form button {
  background: var(--brand);
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--brand-hover);
}

.contact-form .btn-secondary {
  background: var(--brand);
  border: none;
  color: #ffffff;
}

.contact-form .btn-secondary:hover {
  background: var(--brand-hover);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-2);
}

.form-success {
  margin-top: 0.6rem;
  color: var(--brand);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  color: var(--text-2);
  text-align: center;
  justify-items: center;
}

@media (min-width: 769px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-inner > div:nth-child(1) {
    order: 2;
  }

  .footer-inner > div:nth-child(2) {
    order: 1;
    justify-self: start;
    text-align: left;
  }

  .footer-inner > div:nth-child(3) {
    order: 3;
    justify-self: end;
    text-align: right;
  }
}

.footer-inner strong {
  color: var(--text);
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header,
  .header-inner {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .brand {
    align-items: center;
  }

  .nav {
    justify-content: center;
  }

  .header-inner {
    padding: 0.6rem 0;
    gap: 0.8rem;
  }

  .brand-logo {
    width: min(52vw, 160px);
  }

  .nav {
    gap: 0.8rem;
  }

  .cta-button {
    margin: 10px auto 0;
  }

  .site-header .cta-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-text {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .services-flow {
    gap: 40px;
  }

  .service-step {
    grid-template-columns: 1fr;
  }

  .service-media--double {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-banner .cta-arrow {
    display: none;
  }

  .cta-banner .cta-button {
    margin-top: 20px;
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
