/* ===== GLOBAL ===== */
a{
  text-decoration: none;
}

body, html, img{
  max-width: 100%;
}

:root{
  --navy: #0b1628;
  --navy-mid: #122040;
  --navy-light: #1a3060;
  --gold: #c9a84c;
  --gold-light: #e4c06e;
  --gold-pale: #f5e6c0;
  --teal: #1e7f8e;
  --teal-light: #26a5b8;
  --cream: #faf7f2;
  --white: #ffffff;
  --text-dark: #0b1628;
  --text-mid: #3a4a6b;
  --text-light: #8899bb;
  --shadow-sm: 0 4px 24px rgba(11, 22, 40, 0.08);
  --shadow-md: 0 8px 48px rgba(11, 22, 40, 0.14);
  --shadow-lg: 0 24px 80px rgba(11, 22, 40, 0.22);
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html{
  scroll-behavior: smooth;
  font-size: 16px;
}

body{
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

a{
  color: inherit;
}

ul{
  list-style: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-wrap{
  margin: 0 auto;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-wrap{
  max-width: 1280px;
  padding: 0 2rem;
}

.section-label{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-label::before{
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--teal);
}

.section-h2{
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-sub{
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 900px;
  line-height: 1.8;
}

.section-sub.light{
  color: rgba(255, 255, 255, 0.65);
}

body, html{
  overflow-x: hidden;
}

/* ===== NAVBAR + MOBILE MENU ===== */
.hamburger{
  flex-direction: column;
}

#navbar, .mobile-menu{
  top: 0;
  left: 0;
  right: 0;
}

.hamburger span, .hero-h1 em, img{
  display: block;
}

#navbar, #scrollTop, .mobile-menu{
  position: fixed;
}

#navbar{
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}

#navbar.scrolled{
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.nav-container{
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo{
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hamburger, .mobile-menu{
  display: none;
}

.nav-links a{
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.3s;
}

.mobile-menu a, .nav-links a:hover, .section-h2.light, .service-card:hover .service-h3{
  color: var(--white);
}

.nav-links a::after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover::after{
  width: 100%;
}

.nav-cta{
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-cta::after{
  display: none !important;
}

.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45) !important;
}

.hamburger{
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span{
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:first-child{
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu{
  bottom: 0;
  background: rgba(11, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open{
  display: flex;
  opacity: 1;
}

.mobile-menu a{
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

/* ===== HERO ===== */
#hero, .about-img-wrap, .nav-links a, section{
  position: relative;
}

#hero{
  background: var(--navy);
}

.hero-h1, .mobile-menu a, .nav-logo, .section-h2{
  font-family: "Cormorant Garamond", serif;
}

.hero-content, .nav-container{
  max-width: 1280px;
  margin: 0 auto;
}

.hero-bg, .hero-overlay{
  position: absolute;
  inset: 0;
}

#hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1800&q=80");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s;
}

.hero-bg.loaded{
  transform: scale(1);
}

.hero-overlay{
  background: linear-gradient(
    125deg,
    rgba(11, 22, 40, 0.92) 0,
    rgba(11, 22, 40, 0.7) 50%,
    rgba(30, 127, 142, 0.25) 100%
  );
}
.hero-content{
  grid-template-columns: 1.2fr 0.8fr;
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 2rem;
  display: grid;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-h1{
  font-size: clamp(3.4rem, 5vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: 0.9s 0.8s forwards fadeInUp;
}

.hero-h1 span{
  color: var(--gold-light);
}

.hero-sub{
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: 0.9s 1s forwards fadeInUp;
}

.hero-sub span{
  color: #dac69c;
}

.hero-right{
  opacity: 0;
  animation: 1s 0.9s forwards fadeInRight;
  display: flex;
  justify-content: flex-end;
}

.hero-form-card{
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 20px 25px 20px;
  box-shadow: 0 20px 60px rgba(11, 22, 40, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-form-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #12a36f;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-form-badge-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #63d7aa;
  flex-shrink: 0;
}

.hero-form-title{
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.hero-form-subtitle{
  font-size: 0.9rem;
  line-height: 1.55;
  color: #7d889d;
  margin-bottom: 22px;
}

.hero-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-form-group label{
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5b6477;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-form-group label span{
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #8b94a7;
}

.hero-form-group input, .hero-form-group textarea{
  width: 100%;
  border: 1px solid #d8dde7;
  background: #f6f8fb;
  border-radius: 12px;
  padding: 15px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}



.hero-form-group input::placeholder, .hero-form-group textarea::placeholder{
  color: #9aa3b3;
}

.hero-form-group input:focus, .hero-form-group textarea:focus{
  border-color: rgba(201, 168, 76, 0.85);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
  background: #fff;
}

.hero-form-group textarea{
  resize: vertical;
  min-height: 20px;
}

.hero-form-submit{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 17px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.28);
}

.hero-form-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 168, 76, 0.38);
}

.hero-form-policy{
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a0b2;
  text-align: center;
}

.hero-form-policy a{
  color: #7e8899;
  text-decoration: underline;
}

.hero-cta-group{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.hero-main-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-main-cta{
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.26);
}

.hero-main-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.34);
}

/* ===== WHY BLOCKS ===== */
#why{
  padding: 4rem 0;
  background: var(--navy);
  overflow: hidden;
}

#framework,
.why-section {
  background: var(--navy);
  overflow: hidden;
  position: relative;
  padding: 4rem 0;
}

.why-deco{
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 127, 142, 0.12) 0,
    transparent 70%
  );
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.why-header{
  margin-bottom: 4rem;
}

.why-header .section-label::before{
  background: var(--gold);
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-item{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}

.why-item:hover{
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-5px);
}

.why-icon{
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.15),
    rgba(30, 127, 142, 0.15)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.why-item:hover .why-icon{
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.why-h4{
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-p{
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ===== MID CTA ===== */
/* =========================
   MID CTA — mobile fix
========================= */

#mid-cta{
  padding: 4rem 0;
  background: var(--cream);
  position: relative;
}

#mid-cta .section-wrap{
  position: relative;
  z-index: 1;
}

.mid-cta-box{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(11, 22, 40, 0.22);
  overflow: hidden;
}

.mid-cta-box::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(30, 127, 142, 0.14), transparent 34%);
  pointer-events: none;
}

.mid-cta-content,
.mid-cta-actions{
  position: relative;
  z-index: 2;
  min-width: 0;
}

.mid-cta-label{
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}

.mid-cta-label::before{
  background: var(--gold);
}

.mid-cta-text{
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.8rem;
}

.mid-cta-points{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mid-cta-point{
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
  padding: 1rem 1rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mid-cta-point i{
  flex-shrink: 0;
  margin-top: 0.08rem;
  font-size: 1rem;
  color: var(--gold-light);
  display: inline-block;
}

.mid-cta-point span{
  display: block;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  word-break: break-word;
}

.mid-cta-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mid-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  min-width: 0;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 34px rgba(201, 168, 76, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mid-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
}

.mid-cta-btn i{
  font-size: 0.92rem;
  color: inherit;
  display: inline-block;
  transition: transform 0.25s ease;
}

.mid-cta-btn:hover i{
  transform: translateX(3px);
}

/* ========= Tablet ========= */
@media (max-width: 991px){
  .mid-cta-box{
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem;
  }

  .mid-cta-actions{
    align-items: flex-start;
  }

  .mid-cta-points{
    grid-template-columns: 1fr;
  }

  .mid-cta-btn{
    width: 100%;
    max-width: 100%;
  }
}

/* ========= Mobile ========= */
@media (max-width: 767px){
  #mid-cta{
    padding: 2rem 0;
  }

  .mid-cta-box{
    padding: 1.4rem 1.2rem;
    border-radius: 22px;
    gap: 1.4rem;
  }

  .mid-cta-content .section-h2,
  .mid-cta-box .section-h2{
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    word-break: break-word;
  }

  .mid-cta-text{
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .mid-cta-points{
    gap: 0.8rem;
  }

  .mid-cta-point{
    padding: 0.95rem 0.9rem;
    border-radius: 14px;
    align-items: center;
  }

  .mid-cta-point i{
    font-size: 0.95rem;
    margin-top: 0;
  }

  .mid-cta-point span{
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .mid-cta-actions{
    align-items: stretch;
  }

  .mid-cta-btn{
    min-height: 56px;
    padding: 0 1.2rem;
    font-size: 0.98rem;
    line-height: 1.2;
    white-space: normal;
  }
}

/* ========= Small mobile ========= */
@media (max-width: 480px){
  .mid-cta-box{
    padding: 1.2rem 1rem;
    border-radius: 18px;
  }

  .mid-cta-content .section-h2,
  .mid-cta-box .section-h2{
    font-size: clamp(1.65rem, 8vw, 2rem);
    line-height: 1.14;
  }

  .mid-cta-text{
    font-size: 0.93rem;
  }

  .mid-cta-point{
    padding: 0.9rem 0.85rem;
  }

  .mid-cta-point span{
    font-size: 0.9rem;
  }

  .mid-cta-btn{
    min-height: 54px;
    font-size: 0.95rem;
    padding: 0 1rem;
  }
}
/* ===== SERVICES ===== */
.services-header{
  text-align: left;
  margin-bottom: 2rem;
}

.services-header .section-label{
  justify-content: left;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card{
  background: var(--cream);
  border-radius: 22px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(11, 22, 40, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before{
  opacity: 1;
}

.service-card > *{
  position: relative;
  z-index: 1;
}

.service-icon{
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(30, 127, 142, 0.12)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--teal);
  transition: var(--transition);
}

.service-card:hover .service-icon{
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.service-num{
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(11, 22, 40, 0.09);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  transition: color 0.4s;
}

.service-h3, .why-h4{
  font-family: "DM Serif Display", serif;
}

.service-card:hover .service-num{
  color: rgba(255, 255, 255, 0.05);
}

.service-h3{
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.4s;
}

.service-p{
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.service-card:hover .service-p{
  color: rgba(255, 255, 255, 0.55);
}

/* ===== QUIZ ===== */
.quiz-policy a{
  color: #7e8899;
  text-decoration: underline;
}

#quiz{
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0,
    #081427 45%,
    var(--navy-mid) 100%
  );
  position: relative;
  overflow: hidden;
}

#quiz::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(30, 127, 142, 0.08), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(201, 168, 76, 0.06), transparent 35%);
  pointer-events: none;
}

.quiz-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 4.5rem;
  align-items: center;
}

.quiz-left{
  max-width: 560px;
}

.quiz-label{
  color: var(--gold-light);
}

.quiz-label::before{
  background: var(--gold);
}

.quiz-sub{
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 2rem;
}

.quiz-benefits{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-benefits li{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 500;
}

.quiz-benefits .check{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #15bf8a;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(21, 191, 138, 0.3);
}

.quiz-benefits .check::after{
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quiz-card{
  background: #f7f8fb;
  border-radius: 22px;
  padding: 26px 28px 24px;
  box-shadow: 0 24px 60px rgba(3, 10, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.quiz-progress{
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.quiz-bar{
  flex: 1;
  height: 4px;
  border-radius: 3px;
  background: #d8dde6;
  transition: background 0.3s ease;
}

.quiz-bar.active{
  background: #15bf8a;
}

.quiz-bar.current{
  background: var(--gold);
}

.quiz-step{
  display: none;
}

.quiz-step.active{
  display: block;
}

.quiz-step-head{
  font-size: 0.72rem;
  color: #9aa3b3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-weight: 500;
}

.quiz-step-title{
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.quiz-desc{
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a0a9b9;
  margin-bottom: 18px;
}

.quiz-options{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option{
  min-height: 78px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid #d8dde7;
  background: #f3f5f9;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.quiz-option i{
  font-size: 1.15rem;
  color: #4d5566;
}

.quiz-option:hover{
  background: #fff;
  border-color: rgba(201, 168, 76, 0.8);
  box-shadow: 0 10px 24px rgba(11, 22, 40, 0.08);
  transform: translateY(-2px);
}

.result-step{
  text-align: center;
}

.quiz-result{
  font-size: clamp(4rem, 7vw, 5.2rem);
  line-height: 1;
  font-weight: 900;
  color: #15bf8a;
  margin: 0 0 16px;
  font-family: "DM Sans", sans-serif;
}

.quiz-result-text{
  max-width: 420px;
  margin: 0 auto 20px;
  color: #667389;
  font-size: 0.9rem;
  line-height: 1.7;
}

.quiz-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.quiz-form input{
  width: 100%;
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid #d8dde7;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quiz-form input:focus{
  border-color: rgba(201, 168, 76, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: #fff;
}

.quiz-form input::placeholder{
  color: #98a2b4;
}

.quiz-form button{
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 17px 18px;
  background: #071427;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin-top: 2px;
}

.quiz-form button:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(7, 20, 39, 0.22);
  background: #0b1628;
}

.quiz-policy{
  margin-top: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #a0a9b9;
  text-align: center;
}

/* =========================
   ABOUT — mobile fix
========================= */

#about{
  padding: 4rem 0;
  background: var(--cream);
}

.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap,
.about-body,
.about-trust-box{
  min-width: 0;
}

.about-img{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img img{
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-img:hover img{
  transform: scale(1.04);
}

.about-img-badge{
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  max-width: 100%;
}

.about-img-badge i{
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.about-img-badge p{
  margin: 0;
}

.about-deco{
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  opacity: 0.15;
}

.about-deco-2{
  position: absolute;
  bottom: 4rem;
  left: -3rem;
  width: 120px;
  height: 120px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  opacity: 0.12;
}

.about-text{
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.about-trust-box{
  margin-top: 2.2rem;
  box-shadow: none;
  border: none;
  padding: 1.5rem 1.4rem;
  overflow: hidden;
  position: relative;
}

.about-trust-head,
.about-trust-items{
  position: relative;
  z-index: 1;
}

.about-trust-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.about-trust-kicker::before{
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

.about-trust-items{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-trust-item{
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(11, 22, 40, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-trust-icon{
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  font-size: 0.92rem;
  margin-top: 0.1rem;
}

.about-trust-text{
  min-width: 0;
}

.about-trust-text strong{
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.about-trust-text p{
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  word-break: break-word;
}

/* ========= Tablet ========= */
@media (max-width: 991px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about-img img{
    height: 500px;
  }

  .about-trust-items{
    grid-template-columns: 1fr;
  }
}

/* ========= Mobile ========= */
@media (max-width: 767px){
  #about{
    padding: 2.4rem 0;
  }

  .about-grid{
    gap: 1.8rem;
  }

  .about-img{
    border-radius: 20px;
  }

  .about-img img{
    height: 360px;
  }

  .about-img-badge{
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    width: auto;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.4;
    white-space: normal;
    align-items: flex-start;
  }

  .about-img-badge p{
    margin: 0;
    line-height: 1.45;
  }

  .about-img-badge i{
    font-size: 1rem;
    margin-top: 0.1rem;
  }

  .about-deco{
    width: 58px;
    height: 58px;
    top: -0.7rem;
    right: -0.7rem;
  }

  .about-deco-2{
    width: 76px;
    height: 76px;
    left: -1.1rem;
    bottom: 3.2rem;
  }

  .about-body .section-h2,
  .about-grid .section-h2{
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    word-break: break-word;
  }

  .about-text{
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
  }

  .about-trust-box{
    margin-top: 0.2rem;
    padding: 0;
  }

  .about-trust-kicker{
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.9rem;
  }

  .about-trust-items{
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-trust-item{
    padding: 0.95rem 0.9rem;
    border-radius: 14px;
  }

  .about-trust-icon{
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .about-trust-text strong{
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .about-trust-text p{
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ========= Small mobile ========= */
@media (max-width: 480px){
  .about-img{
    border-radius: 18px;
  }

  .about-img img{
    height: 300px;
  }

  .about-img-badge{
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.85rem 0.9rem;
    font-size: 0.88rem;
    gap: 0.6rem;
  }

  .about-body .section-h2,
  .about-grid .section-h2{
    font-size: clamp(1.8rem, 8.2vw, 2.35rem);
  }

  .about-text{
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .about-trust-item{
    padding: 0.9rem 0.85rem;
  }

  .about-trust-text strong{
    font-size: 0.92rem;
  }

  .about-trust-text p{
    font-size: 0.86rem;
  }

  .about-deco,
  .about-deco-2{
    opacity: 0.08;
  }
}

/* ===== CONTACT ===== */
.contact-info-label, .nav-links a, .section-label{
  text-transform: uppercase;
}

#contact, #services{
  padding: 4rem 0;
  background: var(--white);
}

.contact-info-icon{
  transition: var(--transition);
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-items{
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon{
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(30, 127, 142, 0.08),
    rgba(201, 168, 76, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item:hover .contact-info-icon{
  background: var(--teal);
  color: var(--white);
}

.contact-info-label{
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info-val{
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.lead-form{
  background: linear-gradient(135deg, #0b1a2c, #1c2e48);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(11, 22, 40, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 45px;
}

.lead-form-group{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lead-form-group label{
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.lead-form-group input, .lead-form-group textarea{
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1a2c;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.25s ease;
}

.lead-form-group textarea{
  min-height: 110px;
  resize: vertical;
}

.lead-form-group input::placeholder, .lead-form-group textarea::placeholder{
  color: rgba(0,0,0,0.4);
}

.lead-form-group input:focus, .lead-form-group textarea:focus{
  border-color: #c9a84c;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2);
  background: #ffffff;
}

.lead-form-btn{
  margin-top: 0.5rem;
  padding: 0.95rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #c9a84c, #e0c073);
  color: #0b1a2c;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lead-form-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201,168,76,0.3);
}

.lead-form-policy{
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

@media (max-width: 767px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-items{
    margin-top: 1.2rem;
    gap: 1rem;
  }

  .lead-form{
    margin-top: 0;
    padding: 1.35rem 1rem;
    border-radius: 18px;
  }
}

/* ===== FOOTER ===== */
.footer-logo-text span, .mobile-menu a:hover, .nav-logo span, .why-header .section-label{
  color: var(--gold);
}

.footer-copy-main a:hover, .section-h2.gold em{
  color: var(--gold-light);
}

.footer-body, .footer-bottom-bar{
  z-index: 1;
  position: relative;
}

footer{
  position: relative;
}

footer{
  background: #060d1a;
  overflow: hidden;
}

.footer-logo-icon{
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.footer-body{
  padding: 3rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  align-items: start;
}

.footer-logo-mark{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.footer-logo-icon{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
}

.footer-logo-text{
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-brand-desc{
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  max-width: 100%;
  margin-bottom: 2rem;
}

.footer-contact-item{
  display: flex;
}

.footer-col-title{
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  
}

.footer-contact-text strong{
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.footer-col-title{
  grid-column: 1 / -1;
}

.footer-col-title::after{
  display: none;
}


.footer-contact-item:last-child{
  border-bottom: none;
}

.footer-contact-item{
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
}

.footer-contact-icon{
  width: 30px;
  height: 30px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text{
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.footer-contact-text strong{
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.footer-bottom-bar{
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy-main{
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy-main a{
  color: var(--gold);
  transition: color 0.3s;
}

.footer-bottom-links{
  display: flex;
  gap: 1.8rem;
}

.footer-bottom-links a{
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

#scrollTop{
  transition: var(--transition);
}

.footer-bottom-links a:hover{
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767px){

  .footer-body{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col{
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-contact-item{
    padding: 0.7rem 0;
  }

}

#scrollTop{
  bottom: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

#scrollTop.visible{
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#scrollTop:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
.hero-right{
    display: block;
  }

.hero-form-card{
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
.services-grid{
    grid-template-columns: repeat(2, 1fr);
  }

.footer-body{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
.about-grid, .contact-grid, .hero-content{
    grid-template-columns: 1fr;
  }

.hero-right{
    display: none;
  }

.about-img img{
    height: 380px;
  }

.about-img-badge{
    left: 1rem;
  }

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

@media (max-width: 768px) {
.footer-body, .services-grid, .why-grid{
    grid-template-columns: 1fr;
  }

.nav-links{
    display: none;
  }

.hamburger{
    display: flex;
  }

.hero-h1{
    font-size: 2.4rem;
  }

.footer-body{
    gap: 2rem;
  }

.footer-bottom-bar{
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

.footer-bottom-links{
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
.quiz-grid{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

.quiz-left{
    max-width: 100%;
  }

.quiz-card{
    max-width: 700px;
  }
}

@media (max-width: 768px) {
#quiz{
    padding: 5rem 0;
  }

.quiz-card{
    padding: 22px 18px 20px;
  }

.quiz-step-title{
    font-size: 1.45rem;
  }

.quiz-options{
    grid-template-columns: 1fr;
  }

.quiz-option{
    min-height: 72px;
  }

.quiz-result{
    font-size: 3.4rem;
  }

.quiz-result-text{
    font-size: 0.95rem;
  }
}

@media (max-width: 1100px) {
.mid-cta-box{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.mid-cta-points{
    grid-template-columns: 1fr;
  }

.mid-cta-actions{
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
#mid-cta{
    padding: 4.5rem 0 5rem;
  }

.mid-cta-box{
    padding: 2rem 1.3rem;
    border-radius: 22px;
  }

.mid-cta-text{
    font-size: 0.95rem;
    line-height: 1.7;
  }

.mid-cta-btn{
    width: 100%;
    min-height: 56px;
    padding: 0 1.2rem;
  }

.mid-cta-actions{
    width: 100%;
  }
}

@media (max-width: 767px) {
.about-trust-box{
    margin-top: 1.6rem;
    padding: 1.2rem 1rem;
    border-radius: 20px;
  }

.about-trust-item{
    padding: 0.9rem;
  }

.about-trust-icon{
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
  }

.about-trust-text strong{
    font-size: 0.92rem;
  }

.about-trust-text p{
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
.hero-cta-group{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

.hero-main-cta{
    width: 100%;
  }
}


/* =========================
       PRIVACY PAGE
    ========================= */

    #privacy-page-hero {
      position: relative;
      padding: 170px 0 90px;
      background:
        linear-gradient(180deg, rgba(6, 13, 26, 0.88), rgba(6, 13, 26, 0.94)),
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(135deg, #0b1a2c, #132844 60%, #1c2e48);
      overflow: hidden;
    }

    #privacy-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.08), transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 18%);
      pointer-events: none;
    }

    .privacy-page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }

    .privacy-page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 1rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .privacy-page-kicker::before {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--gold);
    }

    .privacy-page-title {
      margin: 0 0 1rem;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(1.8rem, 6vw, 2.8rem);
      line-height: 1.02;
      font-weight: 700;
      color: #fff;
    }

    .privacy-page-title span {
      color: var(--gold-light);
    }

    .privacy-page-subtitle {
      max-width: 760px;
      margin: 0;
      font-size: 1.04rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.78);
    }

    #privacy-content-page {
      padding: 4.5rem 0;
      background: var(--cream);
    }

    .privacy-doc {
      max-width: 980px;
      margin: 0 auto;
      padding: 2.6rem 2.4rem;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 22px 60px rgba(11, 22, 40, 0.08);
      border: 1px solid rgba(28, 46, 72, 0.06);
    }

    .privacy-doc h2 {
      margin: 2.2rem 0 0.9rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      line-height: 1.1;
      color: var(--navy);
    }

    .privacy-doc h2:first-child {
      margin-top: 0;
    }

    .privacy-doc h3 {
      margin: 1.2rem 0 0.6rem;
      font-family: "DM Sans", sans-serif;
      font-size: 1.05rem;
      line-height: 1.4;
      font-weight: 700;
      color: var(--navy);
    }

    .privacy-doc p,
    .privacy-doc li {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-mid);
    }

    .privacy-doc p {
      margin: 0 0 1rem;
    }

    .privacy-doc ul {
      margin: 0.4rem 0 1rem 1.2rem;
      padding: 0;
    }

    .privacy-doc li {
      margin-bottom: 0.45rem;
    }

    .privacy-doc a {
      color: var(--teal);
      text-decoration: none;
    }

    .privacy-doc a:hover {
      text-decoration: underline;
    }

    .privacy-note-box {
      margin: 1.4rem 0 1.6rem;
      padding: 1rem 1.1rem;
      border-radius: 16px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.18);
      color: var(--navy);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .privacy-contacts-box {
      margin-top: 1.2rem;
      padding: 1.2rem 1.2rem 1rem;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(11, 26, 44, 0.03), rgba(28, 46, 72, 0.04));
      border: 1px solid rgba(28, 46, 72, 0.08);
    }

    .privacy-last-updated {
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(28, 46, 72, 0.08);
      font-size: 0.92rem;
      color: var(--text-light);
    }

    @media (max-width: 991px) {
      #privacy-page-hero {
        padding: 150px 0 75px;
      }

      .privacy-doc {
        padding: 2rem 1.5rem;
        border-radius: 22px;
      }

      .privacy-doc h2 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 767px) {
      #privacy-page-hero {
        padding: 135px 0 60px;
      }

      .privacy-page-title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
      }

      .privacy-page-subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
      }

      #privacy-content-page {
        padding: 2.4rem 0;
      }

      .privacy-doc {
        padding: 1.4rem 1rem;
        border-radius: 18px;
      }

      .privacy-doc h2 {
        font-size: 1.55rem;
        margin-top: 1.7rem;
      }

      .privacy-doc h3 {
        font-size: 0.98rem;
      }

      .privacy-doc p,
      .privacy-doc li {
        font-size: 0.95rem;
        line-height: 1.75;
      }
    }

    @media (max-width: 767px){
  #privacy-page-hero{
    padding: 120px 0 48px;
  }

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

  .privacy-page-title{
    font-size: clamp(2rem, 8vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    max-width: 320px;
    margin-bottom: 0.85rem;
  }

  .privacy-page-title span{
    display: block;
  }

  .privacy-page-subtitle{
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 100%;
  }
}

@media (max-width: 480px){
  #privacy-page-hero{
    padding: 112px 0 42px;
  }

  .privacy-page-title{
    font-size: clamp(1.8rem, 7.8vw, 2.35rem);
    line-height: 1.03;
    max-width: 280px;
  }

  .privacy-page-kicker{
    font-size: 0.64rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.8rem;
  }

  .privacy-page-subtitle{
    font-size: 0.92rem;
    line-height: 1.6;
  }
}

/* =========================
       TERMS PAGE
    ========================= */

    #terms-page-hero {
      position: relative;
      padding: 170px 0 90px;
      background:
        linear-gradient(180deg, rgba(6, 13, 26, 0.88), rgba(6, 13, 26, 0.94)),
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(135deg, #0b1a2c, #132844 60%, #1c2e48);
      overflow: hidden;
    }

    #terms-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.08), transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 18%);
      pointer-events: none;
    }

    .terms-page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }

    .terms-page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 1rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .terms-page-kicker::before {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--gold);
    }

    .terms-page-title {
      margin: 0 0 1rem;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      line-height: 1.02;
      font-weight: 700;
      color: #fff;
      max-width: 760px;
    }

    .terms-page-title span {
      color: var(--gold-light);
    }

    .terms-page-subtitle {
      max-width: 760px;
      margin: 0;
      font-size: 1.04rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.78);
    }

    #terms-content-page {
      padding: 4.5rem 0;
      background: var(--cream);
    }

    .terms-doc {
      max-width: 980px;
      margin: 0 auto;
      padding: 2.6rem 2.4rem;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 22px 60px rgba(11, 22, 40, 0.08);
      border: 1px solid rgba(28, 46, 72, 0.06);
    }

    .terms-doc h2 {
      margin: 2.2rem 0 0.9rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      line-height: 1.1;
      color: var(--navy);
    }

    .terms-doc h2:first-child {
      margin-top: 0;
    }

    .terms-doc h3 {
      margin: 1.2rem 0 0.6rem;
      font-family: "DM Sans", sans-serif;
      font-size: 1.05rem;
      line-height: 1.4;
      font-weight: 700;
      color: var(--navy);
    }

    .terms-doc p,
    .terms-doc li {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-mid);
    }

    .terms-doc p {
      margin: 0 0 1rem;
    }

    .terms-doc ul {
      margin: 0.4rem 0 1rem 1.2rem;
      padding: 0;
    }

    .terms-doc li {
      margin-bottom: 0.45rem;
    }

    .terms-doc a {
      color: var(--teal);
      text-decoration: none;
    }

    .terms-doc a:hover {
      text-decoration: underline;
    }

    .terms-note-box {
      margin: 1.4rem 0 1.6rem;
      padding: 1rem 1.1rem;
      border-radius: 16px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.18);
      color: var(--navy);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .terms-contacts-box {
      margin-top: 1.2rem;
      padding: 1.2rem 1.2rem 1rem;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(11, 26, 44, 0.03), rgba(28, 46, 72, 0.04));
      border: 1px solid rgba(28, 46, 72, 0.08);
    }

    .terms-last-updated {
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(28, 46, 72, 0.08);
      font-size: 0.92rem;
      color: var(--text-light);
    }

    @media (max-width: 991px) {
      #terms-page-hero {
        padding: 150px 0 75px;
      }

      .terms-doc {
        padding: 2rem 1.5rem;
        border-radius: 22px;
      }

      .terms-doc h2 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 767px) {
      #terms-page-hero {
        padding: 120px 0 48px;
      }

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

      .terms-page-title {
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 1.02;
        letter-spacing: -0.01em;
        max-width: 320px;
        margin-bottom: 0.85rem;
      }

      .terms-page-title span {
        display: block;
      }

      .terms-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
      }

      #terms-content-page {
        padding: 2.4rem 0;
      }

      .terms-doc {
        padding: 1.4rem 1rem;
        border-radius: 18px;
      }

      .terms-doc h2 {
        font-size: 1.55rem;
        margin-top: 1.7rem;
      }

      .terms-doc h3 {
        font-size: 0.98rem;
      }

      .terms-doc p,
      .terms-doc li {
        font-size: 0.95rem;
        line-height: 1.75;
      }
    }

    @media (max-width: 480px) {
      #terms-page-hero {
        padding: 112px 0 42px;
      }

      .terms-page-title {
        font-size: clamp(1.8rem, 7.8vw, 2.35rem);
        line-height: 1.03;
        max-width: 280px;
      }

      .terms-page-kicker {
        font-size: 0.64rem;
        letter-spacing: 0.13em;
        margin-bottom: 0.8rem;
      }

      .terms-page-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
      }
    }

    /* =========================
       DISCLAIMER PAGE
    ========================= */

    #disclaimer-page-hero {
      position: relative;
      padding: 170px 0 90px;
      background:
        linear-gradient(180deg, rgba(6, 13, 26, 0.88), rgba(6, 13, 26, 0.94)),
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(135deg, #0b1a2c, #132844 60%, #1c2e48);
      overflow: hidden;
    }

    #disclaimer-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.08), transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 18%);
      pointer-events: none;
    }

    .disclaimer-page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }

    .disclaimer-page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 1rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .disclaimer-page-kicker::before {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--gold);
    }

    .disclaimer-page-title {
      margin: 0 0 1rem;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      line-height: 1.02;
      font-weight: 700;
      color: #fff;
      max-width: 760px;
    }

    .disclaimer-page-title span {
      color: var(--gold-light);
    }

    .disclaimer-page-subtitle {
      max-width: 760px;
      margin: 0;
      font-size: 1.04rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.78);
    }

    #disclaimer-content-page {
      padding: 4.5rem 0;
      background: var(--cream);
    }

    .disclaimer-doc {
      max-width: 980px;
      margin: 0 auto;
      padding: 2.6rem 2.4rem;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 22px 60px rgba(11, 22, 40, 0.08);
      border: 1px solid rgba(28, 46, 72, 0.06);
    }

    .disclaimer-doc h2 {
      margin: 2.2rem 0 0.9rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      line-height: 1.1;
      color: var(--navy);
    }

    .disclaimer-doc h2:first-child {
      margin-top: 0;
    }

    .disclaimer-doc p,
    .disclaimer-doc li {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-mid);
    }

    .disclaimer-doc p {
      margin: 0 0 1rem;
    }

    .disclaimer-doc ul {
      margin: 0.4rem 0 1rem 1.2rem;
      padding: 0;
    }

    .disclaimer-doc li {
      margin-bottom: 0.45rem;
    }

    .disclaimer-doc a {
      color: var(--teal);
      text-decoration: none;
    }

    .disclaimer-doc a:hover {
      text-decoration: underline;
    }

    .disclaimer-note-box {
      margin: 1.4rem 0 1.6rem;
      padding: 1rem 1.1rem;
      border-radius: 16px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.18);
      color: var(--navy);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .disclaimer-contacts-box {
      margin-top: 1.2rem;
      padding: 1.2rem 1.2rem 1rem;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(11, 26, 44, 0.03), rgba(28, 46, 72, 0.04));
      border: 1px solid rgba(28, 46, 72, 0.08);
    }

    .disclaimer-last-updated {
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(28, 46, 72, 0.08);
      font-size: 0.92rem;
      color: var(--text-light);
    }

    @media (max-width: 991px) {
      #disclaimer-page-hero {
        padding: 150px 0 75px;
      }

      .disclaimer-doc {
        padding: 2rem 1.5rem;
        border-radius: 22px;
      }

      .disclaimer-doc h2 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 767px) {
      #disclaimer-page-hero {
        padding: 120px 0 48px;
      }

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

      .disclaimer-page-title {
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 1.02;
        letter-spacing: -0.01em;
        max-width: 320px;
        margin-bottom: 0.85rem;
      }

      .disclaimer-page-title span {
        display: block;
      }

      .disclaimer-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
      }

      #disclaimer-content-page {
        padding: 2.4rem 0;
      }

      .disclaimer-doc {
        padding: 1.4rem 1rem;
        border-radius: 18px;
      }

      .disclaimer-doc h2 {
        font-size: 1.55rem;
        margin-top: 1.7rem;
      }

      .disclaimer-doc p,
      .disclaimer-doc li {
        font-size: 0.95rem;
        line-height: 1.75;
      }
    }

    @media (max-width: 480px) {
      #disclaimer-page-hero {
        padding: 112px 0 42px;
      }

      .disclaimer-page-title {
        font-size: clamp(1.8rem, 7.8vw, 2.35rem);
        line-height: 1.03;
        max-width: 280px;
      }

      .disclaimer-page-kicker {
        font-size: 0.64rem;
        letter-spacing: 0.13em;
        margin-bottom: 0.8rem;
      }

      .disclaimer-page-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
      }
    }

    /* =========================
       COOKIE POLICY PAGE
    ========================= */

    #cookie-page-hero {
      position: relative;
      padding: 170px 0 90px;
      background:
        linear-gradient(180deg, rgba(6, 13, 26, 0.88), rgba(6, 13, 26, 0.94)),
        radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(135deg, #0b1a2c, #132844 60%, #1c2e48);
      overflow: hidden;
    }

    #cookie-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.08), transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 18%);
      pointer-events: none;
    }

    .cookie-page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
    }

    .cookie-page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 1rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .cookie-page-kicker::before {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--gold);
    }

    .cookie-page-title {
      margin: 0 0 1rem;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      line-height: 1.02;
      font-weight: 700;
      color: #fff;
      max-width: 760px;
    }

    .cookie-page-title span {
      color: var(--gold-light);
    }

    .cookie-page-subtitle {
      max-width: 760px;
      margin: 0;
      font-size: 1.04rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.78);
    }

    #cookie-content-page {
      padding: 4.5rem 0;
      background: var(--cream);
    }

    .cookie-doc {
      max-width: 980px;
      margin: 0 auto;
      padding: 2.6rem 2.4rem;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 22px 60px rgba(11, 22, 40, 0.08);
      border: 1px solid rgba(28, 46, 72, 0.06);
    }

    .cookie-doc h2 {
      margin: 2.2rem 0 0.9rem;
      font-family: "Cormorant Garamond", serif;
      font-size: 2rem;
      line-height: 1.1;
      color: var(--navy);
    }

    .cookie-doc h2:first-child {
      margin-top: 0;
    }

    .cookie-doc h3 {
      margin: 1.2rem 0 0.6rem;
      font-family: "DM Sans", sans-serif;
      font-size: 1.05rem;
      line-height: 1.4;
      font-weight: 700;
      color: var(--navy);
    }

    .cookie-doc p,
    .cookie-doc li {
      font-size: 1rem;
      line-height: 1.9;
      color: var(--text-mid);
    }

    .cookie-doc p {
      margin: 0 0 1rem;
    }

    .cookie-doc ul {
      margin: 0.4rem 0 1rem 1.2rem;
      padding: 0;
    }

    .cookie-doc li {
      margin-bottom: 0.45rem;
    }

    .cookie-doc a {
      color: var(--teal);
      text-decoration: none;
    }

    .cookie-doc a:hover {
      text-decoration: underline;
    }

    .cookie-note-box {
      margin: 1.4rem 0 1.6rem;
      padding: 1rem 1.1rem;
      border-radius: 16px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.18);
      color: var(--navy);
      font-size: 0.96rem;
      line-height: 1.7;
    }

    .cookie-contacts-box {
      margin-top: 1.2rem;
      padding: 1.2rem 1.2rem 1rem;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(11, 26, 44, 0.03), rgba(28, 46, 72, 0.04));
      border: 1px solid rgba(28, 46, 72, 0.08);
    }

    .cookie-last-updated {
      margin-top: 2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(28, 46, 72, 0.08);
      font-size: 0.92rem;
      color: var(--text-light);
    }

    @media (max-width: 991px) {
      #cookie-page-hero {
        padding: 150px 0 75px;
      }

      .cookie-doc {
        padding: 2rem 1.5rem;
        border-radius: 22px;
      }

      .cookie-doc h2 {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 767px) {
      #cookie-page-hero {
        padding: 120px 0 48px;
      }

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

      .cookie-page-title {
        font-size: clamp(2rem, 8vw, 2.7rem);
        line-height: 1.02;
        letter-spacing: -0.01em;
        max-width: 320px;
        margin-bottom: 0.85rem;
      }

      .cookie-page-title span {
        display: block;
      }

      .cookie-page-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
      }

      #cookie-content-page {
        padding: 2.4rem 0;
      }

      .cookie-doc {
        padding: 1.4rem 1rem;
        border-radius: 18px;
      }

      .cookie-doc h2 {
        font-size: 1.55rem;
        margin-top: 1.7rem;
      }

      .cookie-doc h3 {
        font-size: 0.98rem;
      }

      .cookie-doc p,
      .cookie-doc li {
        font-size: 0.95rem;
        line-height: 1.75;
      }
    }

    @media (max-width: 480px) {
      #cookie-page-hero {
        padding: 112px 0 42px;
      }

      .cookie-page-title {
        font-size: clamp(1.8rem, 7.8vw, 2.35rem);
        line-height: 1.03;
        max-width: 280px;
      }

      .cookie-page-kicker {
        font-size: 0.64rem;
        letter-spacing: 0.13em;
        margin-bottom: 0.8rem;
      }

      .cookie-page-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
      }
    }

    /* =========================
   COOKIE BANNER
========================= */

.cookie-banner{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.cookie-banner.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(6, 13, 26, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.cookie-banner-text{
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.cookie-banner-text a{
  color: var(--gold-light);
  text-decoration: none;
}

.cookie-banner-text a:hover{
  text-decoration: underline;
}

.cookie-banner-actions{
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-banner-btn{
  min-height: 46px;
  padding: 0 1.3rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.22);
}

.cookie-banner-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(201, 168, 76, 0.28);
}

@media (max-width: 767px){
  .cookie-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 16px;
  }

  .cookie-banner-text{
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .cookie-banner-actions{
    width: 100%;
  }

  .cookie-banner-btn{
    width: 100%;
    min-height: 44px;
    font-size: 0.9rem;
  }
}