:root {
  --orange: #f08a24;
  --orange-dark: #d9741a;
  --ink: #1c2330;
  --ink-soft: #5b6577;
  --bg: #f6f7f9;
  --card-bg: #ffffff;
  --teal: #0f6e6e;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 30, 50, 0.10);
  --shadow-hover: 0 18px 44px rgba(20, 30, 50, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 600px at 50% -10%, #2a3550 0, transparent 60%),
              linear-gradient(135deg, #1c2330 0%, #243044 55%, #2c2030 100%);
  color: #fff;
  padding: 72px 24px 80px;
  text-align: center;
}

.hero__inner { max-width: 900px; margin: 0 auto; }

.brand__logo {
  width: clamp(260px, 46vw, 460px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero__tagline {
  margin: 18px auto 0;
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 400;
  color: #d7deea;
  max-width: 620px;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin: 56px 0 32px;
  color: var(--ink);
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 99px;
  background: var(--orange);
  margin: 12px auto 0;
}

/* ---------- Grid + Cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 72px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.card__shot {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1f5;
}

.card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card__shot img {
  transform: scale(1.04);
}

.card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.card__desc {
  margin: 0;
  font-size: 15px;
  color: #5b6577;
  flex: 1;
}

.card__link {
  margin-top: 8px;
  font-weight: 600;
  color: var(--orange-dark);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #c9d2df;
  padding: 40px 24px;
  text-align: center;
}

.footer__inner { max-width: 800px; margin: 0 auto; }

.footer__mark {
  width: 52px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
  opacity: 0.95;
}

.footer__company {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.footer__line {
  margin: 4px 0;
  font-size: 14px;
}

.footer__line a {
  color: var(--orange);
  text-decoration: none;
}

.footer__line a:hover { text-decoration: underline; }

.footer__vat {
  margin-top: 12px;
  font-size: 13px;
  color: #8a94a6;
}

@media (max-width: 560px) {
  .hero { padding: 56px 20px 60px; }
  .grid { gap: 22px; }
}
