:root {
  --blue: #042698;
  --bg: #fdfee9;
  --panel: #9bd4e4;
  --text: #1a1c2d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10vw;
  background: #fff;
  border-bottom: 1px solid rgba(4, 38, 152, 0.1);
}

.review-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.review-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.review-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.review-nav a.primary {
  color: #fff;
  background: var(--blue);
  padding: 10px 16px;
  border-radius: 999px;
}

.language-pill {
  border: 1px solid var(--blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--blue);
}

.language-pill span {
  font-size: 0.85rem;
  opacity: 0.75;
}

main {
  max-width: none;
  margin: 0;
  padding: 50px 20px 80px;
  flex: 1;
  width: 100%;
  background: var(--panel);
}

.reviews-main-shell{
  width:min(1160px,100%);
  margin:0 auto;
  padding:clamp(1.25rem,3.5vw,2.5rem);
  border:2px solid var(--blue);
  border-radius:30px;
  background:linear-gradient(180deg,#ffffff 0%,#edf5ff 100%);
  box-shadow:0 22px 50px rgba(4,38,152,.14);
}

.hero {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  color: var(--blue);
}

.hero p {
  color: var(--blue);
  max-width: 790px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.hero-actions {
  display:block;
  width:min(760px,100%);
  margin:0 auto;
}

.btn {
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--blue);
}

.btn.primary {
  display:flex;
  width:100%;
  min-height:54px;
  align-items:center;
  justify-content:center;
  background: var(--blue);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: var(--blue);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(4, 38, 152, 0.08);
  border: 1px solid rgba(4, 38, 152, 0.1);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
}

.review-text {
  line-height: 1.5;
  color: #535671;
}

.cta-card {
  background: linear-gradient(135deg, #081b5c, #0d2c94);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-card a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.featured-reviews{
  width:min(1100px,100%);
  margin:0 auto;
  overflow:hidden;
  padding:clamp(1rem,2.5vw,1.75rem);
  border:1px solid rgba(4,38,152,.16);
  border-radius:28px;
  background:#f4fafb;
  box-shadow:0 16px 34px rgba(4,38,152,.09);
  text-align:center;
}

.featured-reviews-heading{
  margin-bottom:1rem;
}

.featured-reviews-heading h2{
  margin:0;
  color:var(--blue);
  font-family:inherit;
  font-size:clamp(1.7rem,3.2vw,2.55rem);
  font-weight:700;
  line-height:1.04;
}

.featured-reviews-heading p{
  margin:.25rem 0 0;
  color:var(--blue);
  font-family:inherit;
  font-size:clamp(1rem,1.8vw,1.3rem);
  font-weight:700;
}

.featured-reviews-image{
  display:block;
  width:100%;
  height:auto;
}

footer {
  padding: 24px 0;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .review-header {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .review-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    width:100%;
  }

  main{
    padding:1rem .5rem 3rem;
  }

  .reviews-main-shell{
    padding:1rem .55rem;
    border-radius:20px;
  }

  .featured-reviews{
    padding:.7rem .45rem .8rem;
    border-radius:18px;
  }

  .featured-reviews-heading{
    margin-bottom:.7rem;
  }

  .featured-reviews-heading h2{
    font-size:1.55rem;
  }

  .featured-reviews-heading p{
    font-size:.95rem;
  }

  .featured-reviews-image-wrap{
    overflow-x:auto;
    scrollbar-width:thin;
  }

  .featured-reviews-image{
    width:760px;
    max-width:none;
  }
}
