*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #101828;
  --slate: #344054;
  --muted: #667085;
  --soft: #f4f6fb;
  --soft-2: #eef2f7;
  --accent: #1d4ed8;
  --accent-2: #0f766e;
  --cta: #f59e0b;
  --nav: #0f172a;
  --nav-text: #e2e8f0;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--nav);
  color: var(--nav-text);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.ad-label {
  font-size: 12px;
  color: #94a3b8;
  border: 1px solid #334155;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
  text-decoration: underline;
}

.side-note {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--soft);
}

.section.deep {
  background: var(--soft-2);
}

.section h1,
.section h2,
.section h3 {
  margin: 0;
}

.section p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.hero {
  color: #f8fafc;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1e293b;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 31, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
}

.hero p {
  color: #e2e8f0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  background: var(--cta);
  color: #1f2937;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fbbf24;
  color: #fef3c7;
}

.btn:focus,
.btn:hover {
  filter: brightness(1.05);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 280px;
}

.image-frame {
  background: #dbeafe;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.small {
  height: 160px;
}

.image-frame.tall {
  height: 320px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 18px;
}

.badge {
  font-size: 12px;
  color: #0f766e;
  background: #ecfdf5;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.price-item span {
  color: var(--muted);
}

.highlight {
  color: var(--accent-2);
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--slate);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-status {
  font-size: 14px;
  color: var(--accent-2);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--slate);
}

.footer {
  padding: 32px 8vw 48px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer a {
  color: #c7d2fe;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 40;
}

.sticky-cta button {
  background: #facc15;
  color: #1f2937;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
  z-index: 50;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #e2e8f0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: #1f2937;
  color: #f8fafc;
  border: 1px solid #334155;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #f59e0b;
  color: #1f2937;
  border: none;
}

.page-title {
  font-size: 30px;
}

.content-narrow {
  max-width: 820px;
}

.simple-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-color: #1e293b;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.panel-trust {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.panel-services {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
