* {
  box-sizing: border-box;
}

:root {
  --ink: #11141a;
  --muted: #5b6472;
  --accent: #2b5aa7;
  --accent-2: #1f7b6b;
  --surface: #f4f5f7;
  --soft: #eef1f5;
  --warm: #f6f0eb;
  --shadow: 0 14px 40px rgba(15, 22, 32, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #e2e6ec;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(17, 20, 26, 0.08);
}

.nav a:hover {
  background: var(--accent);
  color: #fff;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sidebar-cta h4 {
  margin: 0 0 12px;
  font-size: 16px;
}

.sidebar-cta button {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sidebar-cta button:hover {
  background: #234b8c;
}

main {
  flex: 1;
  padding: 40px 50px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

section {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 20, 26, 0.08);
}

.section-hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: linear-gradient(120deg, #f7f0ea, #f0f6ff);
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #234b8c;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #d3d9e3;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-image {
  flex: 0.9;
  border-radius: 18px;
  overflow: hidden;
  background: #e3e7ef;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.layered {
  background: var(--soft);
  flex-direction: row-reverse;
}

.layered .panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(17, 20, 26, 0.08);
}

.image-card {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7ee;
  min-height: 240px;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--warm);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(17, 20, 26, 0.06);
}

.card img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  background: #eadfd6;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-panel {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 20, 26, 0.06);
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 0.7;
  align-self: flex-start;
}

.sticky-cta button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: #166055;
}

.form-block {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd3dd;
  font-size: 15px;
  font-family: inherit;
}

button[type="submit"] {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #234b8c;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(17, 20, 26, 0.08);
}

.footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e6ec;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #eceff3;
}

.banner-hidden {
  display: none;
}

.simple-hero {
  align-items: flex-start;
  gap: 24px;
  background: var(--soft);
}

.simple-hero img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background: #dfe7ee;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  main {
    padding: 30px 24px 60px;
  }

  section {
    flex-direction: column;
  }

  .layered {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
