:root {
  --color-1: #1b9f4f;
  --color-2: #2a62ac;
  --color-3: #3f616e;
  --color-4: #00b7d6;
  --color-5: #201a3d;
  --color-6: #2a454a;

  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  --ring-base: #201a3d;
  --ring-accent: #00b7d6;
  --ring-bg: #ffffff;

  --font-h1: 3rem;
  --font-h2: 2.25rem;
  --font-h3: 1.5rem;
  --font-h4: 1.25rem;
  --font-body: 1rem;
  --font-small: 0.95rem;
  --font-xs: 0.75rem;

  font-family: sans-serif;
  background-color: #fbfcfd;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

h3,
p {
  color: var(--color-3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
}

.nav-center {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-center li a,
.nav-right a,
.logo {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}
.nav-center ul li a {
  color: black;
}
.nav-right {
  width: 10%;
  display: flex;
}
.nav-right a img {
  width: 40%;
}
.nav-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  list-style: none;
  background: #fff;
  padding: 0.5rem 0;
  border: 1px solid #ccc;
  min-width: 160px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.dropdown > a {
  position: relative;
  padding-right: 18px;
}

.dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 24vw;
}
.w-80 {
  width: min(1300px, 92%);
  margin: auto;
}

body {
  margin: 0;
}
button {
  border: none;
}
.btn-primary {
  background: linear-gradient(to right, var(--color-1), var(--color-4));
  border-radius: 15px;
  color: white;
  font-weight: bold;
  padding: 9%;
}

.btn-secondary {
  background: linear-gradient(to right, var(--color-2), var(--color-4));
  border-radius: 15px;
  color: white;
  font-weight: bold;
  padding: 9%;
}

.stat-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;

  background: conic-gradient(
    var(--ring-accent) 0deg 35deg,
    var(--ring-base) 35deg 135deg,
    var(--ring-accent) 135deg 170deg,
    var(--ring-base) 170deg 260deg,
    var(--ring-accent) 260deg 295deg,
    var(--ring-base) 295deg 360deg
  );
  position: relative;
}

.stat-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--ring-bg);
}

.stat-ring__value {
  position: relative;
  z-index: 1;
}

.arrow {
  width: 26px;
  height: 4px;
  position: relative;
  border-radius: 2px;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 4px solid var(--color-4);
  border-top: 4px solid var(--color-4);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}

.nav-right img {
  width: 1%;
}
h1 {
  font-size: var(--font-h1);
}
h2 {
  font-size: var(--font-h2);
}
h3 {
  font-size: var(--font-h3);
}
h4 {
  font-size: var(--font-h4);
}

p,
a {
  font-size: var(--font-body);
  line-height: 1.6;
}
.c-says {
  background-color: var(--color-3);
}
.news-tag {
  background-color: #2a62ac;
}
.opinion {
  background-color: var(--color-4);
}
footer h3,
footer p,
nav p {
  color: white;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-1), var(--color-4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
  z-index: -1;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease,
    border-color 200ms ease;
  transform-origin: center;
}

.hero-actions .btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}
.hero-actions .btn:hover::before {
  transform: scaleX(1);
}

.hero-actions .btn:first-child {
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: #071014;
}
.hero-actions .btn:first-child::before {
  transform: scaleX(1);
}

.hero-actions:has(.btn:not(:first-child):hover) .btn:first-child {
  box-shadow: none;
  color: inherit;
  border-color: rgba(255, 255, 255, 0.22);
  transform: none;
}
.hero-actions:has(.btn:not(:first-child):hover) .btn:first-child::before {
  transform: scaleX(0);
}

.hero-actions:has(.btn:not(:first-child):hover) .btn:not(:first-child):hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  color: #071014;
}
.hero-actions:has(.btn:not(:first-child):hover)
  .btn:not(:first-child):hover::before {
  transform: scaleX(1);
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease,
    border-color 200ms ease;
  transform-origin: center;
}

.hero-actions .btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}
.hero-actions:not(.filters) .btn:hover::before {
  transform: scaleX(1);
}

.hero-actions .btn:first-child {
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: white;
}
.hero-actions .btn:first-child::before {
  transform: scaleX(1);
}

.hero-actions:has(.btn:not(:first-child):hover) .btn:first-child {
  box-shadow: none;
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  transform: none;
}
.hero-actions:has(.btn:not(:first-child):hover) .btn:first-child::before {
  transform: scaleX(0);
}

.hero-actions:has(.btn:not(:first-child):hover) .btn:not(:first-child):hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  color: #071014;
}
.hero-actions:has(.btn:not(:first-child):hover)
  .btn:not(:first-child):hover::before {
  transform: scaleX(1);
}

.filters.hero-actions .filter-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.filters.hero-actions .filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-1), var(--color-4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
  z-index: -1;
}

.filters.hero-actions .filter-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}
.filters.hero-actions .filter-btn:hover::before {
  transform: scaleX(1);
}

.filters.hero-actions .filter-btn.active {
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: #071014;
}
.filters.hero-actions .filter-btn.active::before {
  transform: scaleX(1);
}

.filters.hero-actions .filter-btn:focus-visible {
  outline: 2px solid var(--color-4);
  outline-offset: 2px;
}
.footer {
  width: min(1300px, 92%);
  margin: auto;
  border-top: 1px solid #e7edf2;
  background: #fff;
  padding: 26px 0;
}
.container {
  width: min(1300px, 92%);
  margin: 0 auto;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(63, 97, 110, 0.75);
}

.foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.foot-links a {
  text-decoration: none;
  color: rgba(63, 97, 110, 0.78);
}

.foot-links a:hover {
  color: var(--color-2);
}

@media (max-width: 768px) {
  :root {
    --font-h1: 2rem;
    --font-h2: 1.75rem;
    --font-h3: 1.25rem;
    --font-h4: 1.1rem;
    --font-body: 0.95rem;
    --font-small: 0.9rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  header {
    height: 52vh;
  }
  p,
  a {
    font-size: 0.95rem;
  }
}
