:root {
  --blue: #0c6b8e;
  --blue-dark: #064c66;
  --green: #8baf3d;
  --orange: #f59c00;
  --ink: #1f2933;
  --muted: #607080;
  --light: #f5fafb;
  --white: #ffffff;
  --border: #dbe8ed;
  --shadow: 0 18px 45px rgba(12, 107, 142, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--blue); }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}

.nav-cta {
  color: white !important;
  background: var(--green);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 70px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(139,175,61,.20), transparent 34%),
    radial-gradient(circle at top left, rgba(12,107,142,.18), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow, .section-label {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .82rem;
  margin: 0 0 10px;
}

h1, h2, h3 { line-height: 1.15; color: var(--blue-dark); }

h1 {
  font-size: clamp(2.1rem, 4.3vw, 4.25rem);
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin: 0 0 20px;
}

h3 { margin: 12px 0 10px; }

.lead {
  font-size: 1.2rem;
  color: #334857;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 10px 22px rgba(139,175,61,.28);
}

.button:hover, .nav-cta:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
}

.button-large { padding: 16px 26px; }

.email-link {
  font-weight: 800;
  color: var(--blue-dark);
}

.reassurance, .small {
  color: var(--muted);
  font-size: .95rem;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-strip {
  background: var(--blue-dark);
  color: white;
  padding: 22px 0;
}

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

.trust-grid div {
  border-left: 3px solid var(--orange);
  padding-left: 14px;
}

.trust-grid strong { display: block; }
.trust-grid span { color: rgba(255,255,255,.78); font-size: .92rem; }

.section { padding: 74px 0; }
.section-alt { background: var(--light); }

.two-columns {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 50px;
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 26px;
  list-style: none;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.check-list li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid #edf3f5;
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.card, .advantages div, .contact-card, .sap-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card { padding: 24px; }
.icon { font-size: 2rem; }

.sap-box {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
}

.sap-logo img {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.narrow { max-width: 820px; }

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

.advantages div { padding: 24px; }
.advantages strong { color: var(--blue-dark); font-size: 1.1rem; }

.faq details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--blue-dark);
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
}

.contact-section h2,
.contact-section .section-label { color: white; }

.contact-card {
  max-width: 820px;
  padding: 40px;
  text-align: center;
  color: var(--ink);
}

.contact-card .section-label { color: var(--orange); }

.site-footer {
  background: #082f40;
  color: white;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer a { color: white; }

@media (max-width: 900px) {
  .header-inner { align-items: flex-start; padding: 14px 0; }
  nav { gap: 10px; font-size: .9rem; }
  .hero-grid, .two-columns, .sap-box { grid-template-columns: 1fr; }
  .trust-grid, .cards, .advantages { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .header-inner { display: block; }
  nav { margin-top: 12px; justify-content: flex-start; }
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 46px; }
  .trust-grid, .cards, .advantages { grid-template-columns: 1fr; }
  .footer-grid { display: block; }
  .brand img { width: 48px; height: 48px; }
  .contact-card { padding: 28px 18px; }
}
