/* ============================================================
   FAMAZO — Main Stylesheet
   Font: General Sans (Fontshare)
   Framework: Bootstrap 5.3
   ============================================================ */

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000 !important;
  color: #f7f7f7;
  font-family: "General Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

.famazo-page {
  background: radial-gradient(circle at top, #1b1c22 0, #050506 40%, #000000 100%);
  color: #f7f7f7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.famazo-nav {
  padding: 1.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.famazo-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: #ffc727;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.famazo-logo-text {
  margin-left: 0.6rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop nav links */
.famazo-nav-links {
  display: flex;
  align-items: center;
}

.famazo-nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #a0a3aa;
  margin-left: 1.8rem;
  position: relative;
  padding-bottom: 0.25rem;
}

.famazo-nav-links a.active,
.famazo-nav-links a:hover {
  color: #f7f7f7;
}

.famazo-nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffc727;
}

/* Hamburger button */
.famazo-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.famazo-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f7f7f7;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.famazo-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.famazo-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.famazo-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer overlay */
.famazo-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.famazo-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.famazo-mobile-menu a {
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 700;
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.famazo-mobile-menu a:hover {
  color: #ffc727;
}

/* ============================================================
   HERO SECTION
   Full-width background image with dark overlay.
   Text & CTA sit on top via z-index.
   ============================================================ */

.famazo-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("hero illustration.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Dark gradient overlay — left side darker so text is readable */
.famazo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(5, 5, 6, 0.88) 0%,
      rgba(5, 5, 6, 0.60) 20%,
      rgba(5, 5, 6, 0.25) 20%);
  z-index: 1;
}

/* Text content sits above the overlay */
.famazo-hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 600px; */
    padding: 5rem 0;
    margin-top: 200px;
}

.famazo-hero-title {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f7f7f7;
  margin: 0 0 1.1rem 0;
}

.famazo-hero-subtitle {
  max-width: 38rem;
  color: #c8cad0;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 2.2rem;
}

.famazo-hero-actions .btn {
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
}

/* Buttons */
.famazo-btn-primary {
  background: #ffc727;
  border: none;
  color: #000;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.famazo-btn-primary:hover {
  background: #ffd34c;
  color: #000;
}

.famazo-btn-outline {
  border: none;
  color: #ffffff;
  background: transparent;
  padding-left: 0;
}

.famazo-btn-outline:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.famazo-section {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.famazo-section-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.famazo-section-title {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.famazo-body-text {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #a0a3aa;
}

.famazo-section-heading {
  text-align: center;
  margin-bottom: 2.6rem;
}

.famazo-section-heading h2 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.famazo-section-heading p {
  color: #a0a3aa;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 32rem;
  margin: 0 auto;
}

/* ============================================================
   ABOUT CARD
   ============================================================ */

.famazo-about-card {
  margin: 0 auto;
  margin-top: 2.8rem;
  padding: 80px;
  border-radius: 1.2rem;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  max-width: 80rem;
  width: 100%;
}

.famazo-about-card .row {
  align-items: flex-start;
  justify-content: space-between;
}

.famazo-stat {
  text-align: right;
}

.famazo-stat-number {
  font-weight: 700;
  font-size: 67px;
  line-height: 1.1;
  color: #ffc727;
}

.famazo-stat-label {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
}

.famazo-stat-label+.famazo-stat-number {
  margin-top: 56px;
}

/* ============================================================
   OUR STORY
   ============================================================ */

.famazo-story-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.famazo-story-text-block {
  margin-bottom: 40px;
}

.famazo-story-text-block .famazo-section-heading {
  margin-bottom: 24px;
}

.famazo-story-text {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #a0a3aa;
  margin-bottom: 24px;
}

.famazo-story-img {
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
  max-width: 100%;
  margin: 0 auto;
}

.famazo-story-img img {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */

.wwd-section {
  width: 100%;
}

.wwd-header {
  text-align: center;
  margin-bottom: 24px;
}

.wwd-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #f7f7f7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.wwd-header p {
  font-size: 28px;
  font-weight: 500;
  color: #a0a3aa;
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}

.wwd-cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.wwd-card {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.wwd-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wwd-card:hover .wwd-card-img {
  transform: scale(1.06);
}

.wwd-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.55) 30%,
      transparent 55%);
  transition: background 0.4s ease;
}

.wwd-card:hover .wwd-card-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.72) 40%,
      rgba(0, 0, 0, 0.18) 70%,
      transparent 100%);
}

.wwd-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #ffffff;
}

.wwd-card-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wwd-card:hover .wwd-card-title {
  transform: translateY(-8px);
}

.wwd-card-text {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  color: #e6e6e6;
  text-align: left;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.wwd-card:hover .wwd-card-text {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */

.why-section {
  width: 100%;
}

.why-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #f7f7f7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.why-heading span {
  color: #ffc727;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.why-card {
  background: #141519;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  border-color: rgba(255, 199, 39, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 199, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #f7f7f7;
  line-height: 1.2;
  margin: 0;
}

.why-card-text {
  font-size: 16px;
  font-weight: 600;
  color: #a0a3aa;
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.famazo-contact {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
  overflow: hidden;
}

.famazo-contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}

.famazo-contact-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.famazo-contact-heading h3 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #f7f7f7;
  margin: 0 0 16px 0;
}

.famazo-contact-heading p {
  font-size: clamp(15px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: #a0a3aa;
  max-width: 560px;
  margin: 0;
  text-align: center;
}

.famazo-contact-form-wrap {
  width: 100%;
  max-width: 560px;
}

.famazo-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.famazo-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.famazo-form-label {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #f7f7f7;
  line-height: 1.2;
}

.famazo-form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #3a3a3a;
  padding: 8px 0 12px;
  color: #f7f7f7;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  font-family: inherit;
  transition: border-color 0.25s ease;
}

.famazo-form-control::placeholder {
  color: #444650;
}

.famazo-form-control:focus {
  outline: none;
  border-bottom-color: #ffc727;
}

.famazo-submit-btn {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 2.5rem;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Decorative icons */
.contact-deco {
  position: absolute;
  bottom: 0;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
  color: #ffffff;
}

.contact-deco-left {
  left: -20px;
}

.contact-deco-right {
  right: -20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.famazo-footer {
  background: #ffc727;
  color: #000;
  min-height: 55vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.famazo-footer-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 55vh;
}

.footer-top-row {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.footer-left {
  width: 50%;
  padding: 48px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-brand-title {
  font-size: clamp(28px, 4vw, 51px);
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.footer-brand-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0;
}

.footer-right {
  width: 50%;
  padding: 48px 16px 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
}

.footer-right-top {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-links a {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.1;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.footer-nav-links a:hover {
  opacity: 0.65;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info p {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.footer-right-bottom {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.footer-legal-links,
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal-links a,
.footer-social-links a {
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 500;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  transition: opacity 0.2s;
}

.footer-legal-links a:hover,
.footer-social-links a:hover {
  opacity: 0.65;
}

.footer-copyright {
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  margin-left: auto;
  align-self: flex-end;
}

.footer-illustration {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: flex-end;
}

.footer-illustration img {
  width: 460px;
  max-width: 100%;
  display: block;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: 768px–1199px */
@media (max-width: 1199px) {
  .famazo-section-title {
    font-size: clamp(24px, 3vw, 38px);
  }

  .famazo-body-text {
    font-size: clamp(16px, 2vw, 28px);
  }

  .famazo-stat-number {
    font-size: clamp(36px, 5vw, 67px);
  }

  .famazo-stat-label {
    font-size: clamp(16px, 2vw, 28px);
  }

  .famazo-section-heading h2 {
    font-size: clamp(24px, 3vw, 38px);
  }

  .famazo-section-heading p {
    font-size: clamp(16px, 2vw, 28px);
  }

  .famazo-story-text {
    font-size: clamp(16px, 2vw, 28px);
  }

  .wwd-header h2 {
    font-size: clamp(24px, 3vw, 38px);
  }

  .wwd-header p {
    font-size: clamp(16px, 2vw, 28px);
  }

  .wwd-card-title {
    font-size: clamp(22px, 2.8vw, 38px);
  }

  .wwd-card-text {
    font-size: clamp(14px, 1.6vw, 21px);
  }

  .why-heading {
    font-size: clamp(24px, 3vw, 38px);
  }

  .why-card-title {
    font-size: clamp(18px, 2.2vw, 28px);
  }

  .why-card {
    padding: 28px;
  }
}

/* Small tablet: 991px */
@media (max-width: 991px) {
  .famazo-hero {
    background-position: center;
  }

  .famazo-hero::before {
    background: rgba(5, 5, 6, 0.75);
  }

  .famazo-hero-content {
    max-width: 100%;
  }

  .famazo-story-img img {
    height: auto;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-cards {
    flex-direction: column;
  }

  .wwd-card {
    aspect-ratio: 16 / 9;
  }

  .wwd-card-text {
    opacity: 1;
    transform: none;
  }

  .wwd-card:hover .wwd-card-title {
    transform: none;
  }

  .footer-top-row {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    gap: 48px;
  }

  .footer-right-top {
    gap: 32px;
  }

  .footer-illustration img {
    width: 320px;
  }
}

/* Mobile: 767px */
@media (max-width: 767px) {
  .famazo-hamburger {
    display: flex;
  }

  .famazo-nav-links {
    display: none;
  }

  .famazo-mobile-menu {
    display: flex;
  }

  .famazo-hero {
    min-height: 70vh;
  }

  .famazo-hero-content {
    padding: 3rem 0;
  }

  .famazo-section {
    padding: 3rem 0;
    min-height: auto;
  }

  .famazo-about-card {
    padding: 28px 20px;
  }

  .famazo-stat {
    text-align: left;
  }

  .famazo-stat-number {
    font-size: clamp(36px, 10vw, 56px);
  }

  .famazo-stat-label {
    font-size: clamp(15px, 3.5vw, 22px);
  }

  .famazo-section-heading h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .famazo-section-heading p {
    font-size: clamp(15px, 4vw, 20px);
  }

  .famazo-story-text {
    font-size: clamp(15px, 4vw, 20px);
  }

  .wwd-header h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .wwd-header p {
    font-size: clamp(15px, 4vw, 20px);
  }

  .wwd-card-title {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .wwd-card-text {
    font-size: clamp(13px, 3.5vw, 17px);
  }

  .why-heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  .why-card-title {
    font-size: clamp(17px, 4.5vw, 22px);
  }

  .why-card-text {
    font-size: 14px;
  }

  .why-card {
    padding: 24px 20px;
  }

  .famazo-contact {
    padding: 48px 0;
  }

  .contact-deco {
    display: none;
  }

  .footer-right-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right-bottom {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-copyright {
    margin-left: 0;
  }

  .footer-illustration img {
    width: 240px;
  }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}



/* ============================================================
   FAMAXO — Terms & Conditions page styles (tnc.css)
   Shared components (nav/footer/base) are in style.css
   ============================================================ */

/* Page tokens (no :root as requested) */
.pp-hero-title,
.pp-section-heading,
.pp-sub-heading {
  color: #f7f7f7;
}

/* ─────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────── */
.pp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 4rem 0;
  overflow: hidden;
}

.pp-hero-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.pp-hero-blobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  width: clamp(180px, 22vw, 280px);
  height: clamp(180px, 22vw, 280px);
}

.pp-hero-blobs span {
  display: block;
  background: #fff5d6;
  border-radius: 999px;
}

.pp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.pp-hero-title {
  font-size: clamp(40px, 7vw, 120px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 1rem;
}

.pp-hero-date {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 28px);
  font-weight: 500;
  color: rgba(247, 247, 247, 0.65);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   Intro
   ───────────────────────────────────────────── */
.pp-intro {
  padding: 0 0 2rem;
}

.pp-intro p {
  margin: 0;
  max-width: 980px;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 500;
  color: rgba(247, 247, 247, 0.65);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   Sections / Body
   ───────────────────────────────────────────── */
.pp-content {
  padding: 0 0 5rem;
}

.pp-sections-wrap {
  background: #1c1917;
  border-radius: 24px;
  padding: clamp(20px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 44px);
}

.pp-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(18px, 3vw, 44px);
}

.pp-section:first-child {
  border-top: none;
  padding-top: 0;
}

.pp-section-heading {
  font-size: clamp(24px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.pp-section-heading span {
  color: #ffc727;
}

.pp-body {
  max-width: 1100px;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 500;
  color: rgba(247, 247, 247, 0.65);
  line-height: 1.7;
}

.pp-body p {
  margin: 0 0 0.9rem;
}

.pp-body p:last-child {
  margin-bottom: 0;
}

.pp-sub-heading {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  margin: 1.2rem 0 0.55rem;
}

.pp-body ul {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
}

.pp-body ul li {
  margin: 0 0 0.5rem;
}

/* Links inside policy body */
.pp-link {
  color: #ffc727;
  font-weight: 600;
  text-decoration: none;
}

.pp-link:hover {
  opacity: 0.88;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* ─────────────────────────────────────────────
   Responsive tweaks
   ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .pp-hero {
    min-height: 56vh;
  }
}

@media (max-width: 767px) {
  .pp-hero {
    min-height: auto;
    padding: 3rem 0 2.25rem;
  }

  .pp-hero-deco {
    display: none;
  }

  .pp-hero-content {
    max-width: 100%;
  }

  .pp-hero-title {
    font-size: clamp(34px, 10vw, 58px);
  }
}

@media (max-width: 575px) {
  .pp-content {
    padding-bottom: 3.5rem;
  }

  .pp-sections-wrap {
    border-radius: 20px;
  }

  .pp-body ul {
    padding-left: 1.1rem;
  }
}


/* /////////////////////////////
////////////////////////////////

//*/
.section-spacing {
    padding: 100px 0;
}

/* =====================================================
   Hero
===================================================== */

.policy-hero {
    position: relative;
    padding: 120px 0 80px;
}

.policy-title {
    font-size: clamp(32px, 7vw, 110px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.policy-subtitle {
    max-width: 700px;
    font-size: 18px;
    color: rgba(247,247,247,0.65);
    font-weight: 500;
}

/* Decorative Blobs */

.hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-blobs {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    width: clamp(160px,20vw,260px);
    height: clamp(160px,20vw,260px);
}

.hero-blobs span {
    background: #fff5d6;
    border-radius: 999px;
}

/* =====================================================
   Cards
===================================================== */

.policy-card {
    background: #1c1917;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
}

.policy-inner {
    background: #000;
    border-radius: 16px;
    padding: 24px;
}

.policy-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-inner h6 {
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 6px;
}

.policy-inner p {
    margin: 0;
    color: rgba(247,247,247,0.65);
    font-size: 15px;
}

/* =====================================================
   Commission Section
===================================================== */

.commission-wrapper {
    background: #1c1917;
    border-radius: 24px;
    padding: 40px;
}

.commission-wrapper h3 {
    font-weight: 700;
    margin-bottom: 30px;
}

.commission-box {
    background: #000;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.commission-box p {
    margin: 0;
    color: rgba(247,247,247,0.65);
}

.commission-box strong {
    font-weight: 700;
}

/* =====================================================
   Responsive
===================================================== */

@media(max-width: 992px){
    .hero-deco{
        display: none;
    }
}

@media(max-width: 768px){
    .policy-hero{
        padding: 80px 0 40px;
    }
}