:root {
  --color-primary: #1b2a4b;
  --color-accent: #f97316;
  --color-light: #ffffff;
  --color-dark: #0f1729;
  --color-muted: #6b7280;
  --max-width: 1100px;
  --font-main: "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background: #f3f4f6;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-decoration-color: rgba(15, 23, 41, 0.35);
}

a:hover:not(.button),
a:focus:not(.button) {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

header {
  background: var(--color-light);
  box-shadow: 0 4px 20px rgba(15, 23, 41, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover,
nav a:focus {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
}

.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.15), transparent 55%),
              linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button-group.single {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.button.primary {
  background: var(--color-accent);
  color: var(--color-light);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.25);
  border-color: var(--color-accent);
}

.button.secondary {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(15, 23, 41, 0.12);
}

.section {
  padding: 4rem 0;
  background: var(--color-light);
}

.section:nth-of-type(even) {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--color-light);
  border: 1px solid rgba(15, 23, 41, 0.06);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(15, 23, 41, 0.07);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-muted);
}

.badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-accent);
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  color: var(--color-muted);
}

.list li {
  list-style: none;
  display: flex;
  column-gap: 1.1rem;
  align-items: flex-start;
}

.list li::before {
  content: "➜";
  color: var(--color-accent);
  margin-top: 0.1rem;
}

.list-topic {
  flex: 0 0 13rem;
  color: var(--color-dark);
}

.list-description {
  flex: 1 1 auto;
}

@media (max-width: 640px) {
  .list li {
    flex-direction: column;
    padding-left: 1.3rem;
  }

  .list li::before {
    margin-left: -1.3rem;
    margin-top: 0.2rem;
  }

  .list-topic,
  .list-description {
    flex: none;
    width: 100%;
  }
}

.highlight {
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial p {
  font-style: italic;
}

.testimonial span {
  font-weight: 600;
  color: var(--color-dark);
}

.cta {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(120deg, var(--color-primary), #2c3e68);
  color: var(--color-light);
}

.cta p {
  margin: 0 auto 2rem;
  max-width: 600px;
  color: #e2e8f0;
}

footer {
  background: #0b1324;
  color: var(--color-light);
  padding: 3rem 0 3.5rem;
  font-size: 0.95rem;
}

footer .logo {
  color: var(--color-light);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.footer-subline {
  max-width: 38rem;
  color: rgba(226, 232, 240, 0.85);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2.5rem;
}

.footer-column h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  color: rgba(226, 232, 240, 0.85);
}

.footer-list li {
  line-height: 1.5;
}

.footer-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(226, 232, 240, 0.5);
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.footer-list a:hover {
  color: var(--color-accent);
  text-decoration-color: var(--color-accent);
}

.footer-column p,
.footer-column address {
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.6;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

.cookie-notice {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.4rem;
  color: rgba(248, 250, 252, 0.88);
}

.cookie-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  margin-top: 2rem;
}

address {
  font-style: normal;
  display: grid;
  gap: 0.2rem;
}

@media (max-width: 780px) {
  header .bar {
    padding: 0.75rem 0;
  }

  nav {
    position: absolute;
    inset: 100% 0 auto;
    background: var(--color-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 6%;
    box-shadow: 0 12px 25px rgba(15, 23, 41, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
