﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink-900: #061b2d;
  --ink-800: #0a2a3f;
  --ink-700: #153e59;
  --mint-500: #67af7a;
  --mint-400: #8dc299;
  --sand-100: #f5f8f4;
  --snow: #ffffff;
  --text: #1a2d39;
  --muted: #5f717d;
  --line: #d7e1df;
  --panel: #f1f7f2;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, 90vw);
  --shadow-soft: 0 24px 60px rgba(6, 27, 45, 0.13);
  --shadow-card: 0 12px 36px rgba(8, 36, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 6% 3%, rgba(141, 194, 153, 0.2), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fcfefd 45%, #f9fcfb 100%);
  line-height: 1.65;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 225, 223, 0.85);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(6, 27, 45, 0.08);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 72px;
  width: auto;
  max-width: 220px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  color: #163347;
}

.nav a {
  padding: 8px 2px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--mint-500);
  transition: width 0.28s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--mint-500), #4f9e66);
  color: var(--snow);
  box-shadow: 0 14px 30px rgba(96, 170, 116, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(88, 159, 106, 0.32);
}

.btn-outline {
  border-color: rgba(17, 52, 72, 0.32);
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.92);
}

.btn-outline:hover {
  border-color: var(--mint-500);
  color: var(--mint-500);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink-800);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--mint-500);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 18px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  font-size: 1.08rem;
  color: #2f4858;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #264152;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff, #d6f0dc 68%),
    var(--mint-500);
  box-shadow: inset 0 0 0 3px rgba(90, 154, 109, 0.35);
}

.hero-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(120, 161, 140, 0.2);
  background:
    linear-gradient(155deg, rgba(10, 42, 63, 0.96), rgba(6, 27, 45, 0.98)),
    radial-gradient(circle at 80% -10%, rgba(141, 194, 153, 0.45), transparent 42%);
  color: var(--snow);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.8s ease both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 175, 122, 0.5) 0%, rgba(103, 175, 122, 0) 68%);
}

.panel-logo {
  width: 250px;
  max-width: 100%;
  opacity: 1;
  margin: 0;
  filter: none;
}

.panel-logo-wrap {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.panel-stats {
  display: grid;
  gap: 14px;
}

.panel-stats article {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 227, 209, 0.22);
  background: rgba(247, 255, 250, 0.06);
}

.panel-stats h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.panel-stats p {
  margin: 6px 0 0;
  font-size: 0.94rem;
  color: rgba(236, 246, 240, 0.9);
}

.trust-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(8, 43, 63, 0.03), rgba(103, 175, 122, 0.06), rgba(8, 43, 63, 0.03));
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 0;
}

.trust-items p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2d4b5f;
  font-size: 0.78rem;
}

.section {
  padding: 84px 0;
}

.section h2 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-900);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 175, 122, 0.46);
  box-shadow: 0 16px 34px rgba(8, 36, 56, 0.14);
}

.service-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.22rem;
  color: var(--ink-800);
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.industries {
  background: var(--sand-100);
}

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

.industry-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
}

.industry-grid h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-800);
}

.industry-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.process {
  background:
    linear-gradient(130deg, rgba(7, 35, 52, 0.99), rgba(8, 45, 64, 0.94)),
    radial-gradient(circle at 12% 8%, rgba(141, 194, 153, 0.36), transparent 35%);
  color: #eef5f1;
}

.process .section-label,
.process h2 {
  color: #f2faf5;
}

.process-steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 230, 211, 0.24);
  border-radius: var(--radius-md);
  padding: 22px;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #06263a;
  background: linear-gradient(145deg, #c6ead0, #8cc39a);
}

.process-steps h3 {
  margin: 14px 0 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: #ffffff;
}

.process-steps p {
  margin: 8px 0 0;
  color: rgba(235, 246, 240, 0.9);
}

.about {
  padding-top: 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.about p {
  color: #2e4555;
  margin-bottom: 0;
}

.about-card {
  background: linear-gradient(170deg, #edf7ef, #d8eadf);
  border: 1px solid #c9ddcf;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-800);
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #274255;
}

.contact {
  padding-top: 42px;
  padding-bottom: 94px;
}

.contact-shell {
  border: 1px solid var(--line);
  background: linear-gradient(110deg, #ffffff, #f1f8f4);
  border-radius: var(--radius-xl);
  padding: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-shell p {
  color: #2f4a5b;
}

.contact-shell a {
  color: var(--ink-700);
  font-weight: 700;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #d5e0dc;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row label,
.checkbox-row span {
  color: #213947;
}

.form-row input,
.form-row textarea,
.form-row select {
  border: 1px solid #c2d2cb;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: #18313f;
  background: #fcfffd;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid rgba(103, 175, 122, 0.28);
  border-color: #6cae7d;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 10px 0 14px;
}

.checkbox-row input {
  margin-top: 4px;
}

.form-note {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: #5d727d;
}

.form-feedback {
  margin: 12px 0 0;
  font-weight: 600;
  min-height: 22px;
}

.form-feedback.is-success {
  color: #1f7f44;
}

.form-feedback.is-error {
  color: #a12727;
}

.domain-note {
  margin-top: 10px;
  color: #1f394b;
}

.site-footer {
  background: linear-gradient(140deg, #061a2a, #0b2f45);
  color: rgba(234, 246, 240, 0.9);
  padding: 42px 0 22px;
}

.legal-page h1 {
  margin: 8px 0 14px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink-900);
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--ink-800);
}

.legal-page p {
  margin: 8px 0;
  color: #2b4353;
}

.legal-page code {
  padding: 1px 5px;
  border-radius: 6px;
  background: #eaf3ee;
}

.legal-warning {
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d7b9b9;
  background: #fff5f5;
  color: #6c2929;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: rgba(229, 242, 235, 0.9);
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #c7efd2;
}

.copyright {
  width: var(--container);
  margin: 20px auto 0;
  border-top: 1px solid rgba(202, 224, 212, 0.18);
  padding-top: 14px;
  font-size: 0.9rem;
  color: rgba(215, 234, 223, 0.78);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .nav {
    position: absolute;
    top: 88px;
    left: 5vw;
    right: 5vw;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .panel-logo {
    width: 220px;
  }
}

@media (max-width: 760px) {
  .logo {
    height: 60px;
    width: auto;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 64px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

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

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 10px;
    padding: 14px 0;
  }

  .card-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .contact-shell {
    padding: 24px;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 36px;
  }
}
