:root {
  --brand-red: #1D9AB9 ;
  --brand-red-dark: #0D4566;
  --brand-cream: #fff8f4;
  --text-dark: #111111;
  --text-muted: #555555;
  --card-radius: 18px;
  --page-max-width: 480px;
}


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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f6f6f6;
  color: var(--text-dark);
  display: flex;
  justify-content: center;
}


.page {
  width: 100%;
  max-width: var(--page-max-width);
  min-height: 100vh;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
}


.hero {
  position: relative;
  background: #ffffff;
  color: #ffffff;
  padding: 0px 16px 28px;   
  overflow: hidden;
}


.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;       
  width: 150%;       
  height: 340px;      
  background: var(--brand-red);
  border-radius: 50%;
}


.hero-inner {
  position: relative;
  z-index: 1;        
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0px;  
}

.hero-logo-img {
  display: block;
  width: 200px;
  max-width: 80%;
  height: auto;
}


main {
  padding: 0px 18px 24px;
}


.page-heading {
  text-align: center;
  margin: 10px 0 14px;
}

.page-heading h1 {
  font-size: 1.4rem;     
  font-weight: 600;
  margin-bottom: 4px;
}

.page-heading p {
  font-size: 0.9rem;
  color: var(--text-muted);
}


.actions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}


.action-card {
  background: var(--brand-red);
  border-radius: var(--card-radius);
  padding: 18px 10px 16px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 18px rgba(112, 10, 13, 0.28);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out;
  position: relative;
  overflow: hidden;
}


.action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.26),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}


.action-card:active {
  transform: scale(0.97) translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  background: var(--brand-red-dark);
}

.action-card:active::after {
  opacity: 1;
}


.action-card span.label {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}


.icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 36px;
  height: 36px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}


.rating-card {
  margin-top: 0;              
  background: var(--brand-cream);
  border-radius: 16px;
  padding: 14px 14px 12px;
  text-align: center;
  border: 1px solid #f0d7cf;
}

.rating-header {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--brand-red);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.action-card:last-child { 
  grid-column: span 2; 
  max-width: calc(50% - 7px); 
  justify-self: center;
  width: 100%;
}

@media (max-width: 380px) {
  .hero {
    padding: 14px 14px 24px;
  }

  .hero-inner {
    padding-top: 20px;
  }

  .hero-logo-img {
    width: 165px;
  }

  main {
    padding-inline: 14px;
  }

  .action-card span.label {
    font-size: 0.85rem;
  }
}
