*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --clr-bg:              #F7F9FC;
  --clr-bg-section:      #EEF3F8;
  --clr-bg-card:         #FFFFFF;
  --clr-bg-dark:         #1C3A5E;
  --clr-primary:         #006B8F;
  --clr-primary-dark:    #004F6B;
  --clr-primary-light:   #E3F2F8;
  --clr-accent:          #00A693;
  --clr-accent-light:    #E0F5F3;
  --clr-text-on-dark:    #F0F8FC;
  --clr-text-muted-dark: #8BB8CC;
  --clr-text-primary:    #1A2E3B;
  --clr-text-secondary:  #3D5A6B;
  --clr-text-muted:      #7A9AAA;
  --clr-border:          #D4E5EE;
  --clr-cta:             #006B8F;
  --clr-cta-hover:       #004F6B;
  --clr-success:         #00A693;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --shadow-sm:    0 2px 8px rgba(0, 107, 143, 0.07);
  --shadow-md:    0 4px 24px rgba(0, 107, 143, 0.12);
  --shadow-lg:    0 8px 48px rgba(0, 107, 143, 0.16);
  --transition:   all 0.3s ease;
  --container:    1280px;
  --section-py:   clamp(64px, 8vw, 120px);
}

.page {
  font-family: 'Nunito', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  
}



/* Typography */
.title--display, .title--h1, .title--h2 {
  font-family: 'Playfair Display', serif;
  color: var(--clr-text-primary);
  line-height: 1.2;
}

.title--h3, .title--h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--clr-text-primary);
  line-height: 1.3;
}

.title--display { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; }
.title--h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 2rem; }
.title--h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.title--h4 { font-size: 1.25rem; }

.text--body { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--clr-text-secondary); }
.text--body p { margin-bottom: 1.25rem; }
.text--body ul, .text--body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.text--body li { margin-bottom: 0.5rem; }
.text--small { font-size: 0.875rem; color: var(--clr-text-muted); }
.text--mono { font-family: 'Fira Code', monospace; }
.text--highlight { color: var(--clr-primary); }
.text--center { text-align: center; }
.text--white { color: var(--clr-text-on-dark) !important; }
.text--muted-dark { color: var(--clr-text-muted-dark); }

.link { color: var(--clr-primary); text-decoration: none; transition: var(--transition); }
.link:hover { color: var(--clr-primary-dark); text-decoration: underline; }

.img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-py) 0; }
.section--light { background-color: var(--clr-bg-section); }
.section--dark { background-color: var(--clr-bg-dark); color: var(--clr-text-on-dark); }
.section--dark .title--h2, .section--dark .title--h3, .section--dark .title--h4 { color: var(--clr-text-on-dark); }

/* Disclosure Bar */
.disclosure-bar {
  background-color: var(--clr-primary-light);
  color: var(--clr-text-secondary);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--clr-bg-card);
  transition: var(--transition);
  padding: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

.navbar__inner { display: flex; justify-content: space-between; align-items: center; }

.navbar__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--clr-primary);
  text-decoration: none;
}

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

.navbar__link {
  color: var(--clr-text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.navbar__link:hover { color: var(--clr-primary); }

.navbar__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 101; }
.navbar__toggle-line { display: block; width: 24px; height: 2px; background-color: var(--clr-primary); margin: 5px 0; transition: var(--transition); }

/* Buttons */
.btn--primary, .btn--ghost, .btn--full {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: var(--clr-cta);
  color: var(--clr-bg-card);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover { background-color: var(--clr-cta-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background-color: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn--ghost:hover { background-color: var(--clr-primary-light); }

.btn--full { width: 100%; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 4rem;
}

.hero__inner { display: flex; flex-wrap: wrap; align-items: center; width: 100%; gap: 4rem; }

.hero__visual {
  width: calc(50% - 2rem);
  background-color: var(--clr-primary-light);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: inset 0 0 100px rgba(0, 107, 143, 0.1);
}

.hero__content { width: calc(50% - 2rem); }

.hero__label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.hero__pills { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.hero__pill {
  padding: 0.5rem 1rem;
  background-color: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--clr-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.hero__pill-icon { color: var(--clr-success); font-weight: bold; }

.hero__price {
  font-family: 'Fira Code', monospace;
  font-size: 2.5rem;
  color: var(--clr-text-primary);
  margin-bottom: 2rem;
  display: block;
  font-weight: 500;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__img { width: 100%; height: auto; object-fit: contain; }

/* Feature Strip */
.feature-strip {
  background-color: var(--clr-bg-section);
  padding: 3rem 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.feature-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.feature-strip__value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.feature-strip__label {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--clr-text-secondary);
}

.feature-strip__disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Grids */
.grid-3x2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-5x1 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.grid-2x1 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }

/* Cards */
.card {
  background-color: var(--clr-bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--clr-primary-light); }

.card__icon { width: 48px; height: 48px; color: var(--clr-primary); margin-bottom: 1.5rem; }
.card__title { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; color: var(--clr-text-primary); }

/* Room Cards */
.room-card {
  background-color: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: var(--transition);
}

.room-card:hover { background-color: rgba(255,255,255,0.1); transform: translateY(-5px); }
.room-card__icon { width: 40px; height: 40px; color: var(--clr-accent); margin-bottom: 1rem; }
.room-card__title { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--clr-text-on-dark); margin-bottom: 0.5rem; }

/* Split Section */
.split { display: flex; align-items: center; gap: 4rem; }
.split__visual, .split__content { width: 50%; }

/* Tables */
.table-wrapper { overflow-x: auto; margin: 2rem 0; background-color: var(--clr-bg-card); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--clr-border); }
.table { width: 100%; border-collapse: collapse; text-align: left; }
.table__th, .table__td { padding: 1.25rem 1rem; border-bottom: 1px solid var(--clr-border); }
.table__th { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--clr-text-secondary); }
.table__td { font-family: 'Nunito', sans-serif; color: var(--clr-text-primary); }
.table__tr--highlight { background-color: var(--clr-primary-light); }
.table__tr--highlight .table__td { font-weight: 700; color: var(--clr-primary); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background-color: var(--clr-bg-card); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--clr-border); }
.review-card__stars { color: #FFB800; font-size: 1.25rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.review-card__text { font-style: italic; margin-bottom: 1.5rem; color: var(--clr-text-secondary); }
.review-card__author { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--clr-text-primary); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--clr-bg-card); border: 1px solid var(--clr-border); margin-bottom: 1rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item__btn { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; color: var(--clr-text-primary); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1.125rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-item__btn:hover { color: var(--clr-primary); background-color: var(--clr-bg-section); }
.faq-item__icon { width: 20px; height: 20px; position: relative; transition: transform 0.3s ease; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background-color: var(--clr-primary); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; transition: transform 0.3s ease; }
.faq-item.active .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item__inner { padding: 0 1.5rem 1.5rem; color: var(--clr-text-secondary); }

/* Footer */
.footer { background-color: var(--clr-bg-card); padding: 5rem 0 2rem; border-top: 1px solid var(--clr-border); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer__brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 1rem; display: block; text-decoration: none; }
.footer__title { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--clr-text-primary); margin-bottom: 1.5rem; }
.footer__list { list-style: none; }
.footer__item { margin-bottom: 0.75rem; }
.footer__link { color: var(--clr-text-secondary); text-decoration: none; transition: var(--transition); }
.footer__link:hover { color: var(--clr-primary); }
.footer__text { color: var(--clr-text-secondary); margin-bottom: 0.5rem; }
.footer__bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--clr-border); color: var(--clr-text-muted); font-size: 0.875rem; }

/* Order Layout */
.order-layout { display: flex; gap: 4rem; padding-top: 140px; align-items: flex-start; }
.order-main { width: 60%; }
.order-sidebar { width: 40%; position: sticky; top: 140px; }
.order-gallery__main { background-color: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 3rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.order-gallery__main-img { width: 100%; height: 400px; object-fit: contain; }
.order-gallery__thumbs { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; }
.order-gallery__thumb { width: 90px; height: 90px; flex-shrink: 0; border: 2px solid var(--clr-border); border-radius: var(--radius-md); background-color: var(--clr-bg-card); padding: 0.5rem; cursor: pointer; transition: var(--transition); }
.order-gallery__thumb:hover, .order-gallery__thumb.active { border-color: var(--clr-primary); }
.order-gallery__thumb-img { width: 100%; height: 100%; object-fit: contain; }

.sticky-card { background-color: var(--clr-bg-card); border: 1px solid var(--clr-border); border-top: 6px solid var(--clr-primary); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); }
.sticky-card__price { font-family: 'Fira Code', monospace; font-size: 3rem; font-weight: 500; color: var(--clr-text-primary); margin-bottom: 2rem; display: block; }
.trust-badges { margin-top: 2.5rem; }
.trust-badge { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; color: var(--clr-text-secondary); font-weight: 600; font-size: 1.05rem; }
.trust-badge__icon { color: var(--clr-success); width: 24px; height: 24px; }

/* Article Layout */
.article-header { padding: 180px 0 60px; text-align: center; max-width: 900px; margin: 0 auto; }
.article-meta { display: flex; justify-content: center; gap: 2rem; color: var(--clr-text-muted); font-weight: 600; margin-bottom: 2rem; }
.article-hero {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 4rem auto;
  border-radius: var(--radius-lg);
}
.article-content { max-width: 800px; margin: 0 auto; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 4rem 0; }
.pros-card, .cons-card { background-color: var(--clr-bg-card); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.pros-card { border-top: 6px solid var(--clr-success); }
.cons-card { border-top: 6px solid #FF5252; }
.pro-con-list { list-style: none; }
.pro-con-list__item { margin-bottom: 1.25rem; padding-left: 2rem; position: relative; color: var(--clr-text-secondary); }
.pro-con-list__item::before { content: '✓'; position: absolute; left: 0; color: var(--clr-success); font-weight: bold; font-size: 1.25rem; }
.cons-card .pro-con-list__item::before { content: '✕'; color: #FF5252; }

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--clr-primary-light); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.5s ease; }
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader__droplet { width: 20px; height: 20px; background-color: var(--clr-primary); border-radius: 50%; margin-bottom: 2rem; animation: drop 1.5s infinite ease-in; }
.preloader__ripple { width: 60px; height: 10px; border-radius: 50%; border: 2px solid var(--clr-primary); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; animation: ripple 1.5s infinite ease-out; }
@keyframes drop { 0% { transform: translateY(-50px); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes ripple { 0% { width: 10px; height: 2px; opacity: 1; } 100% { width: 100px; height: 20px; opacity: 0; } }
.preloader__text { font-family: 'Nunito', sans-serif; color: var(--clr-primary); font-weight: 600; margin-top: 1rem; }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 150%); width: 400px; background-color: var(--clr-bg-card); border-top: 3px solid var(--clr-accent); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-lg); z-index: 1000; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; }
.cookie-popup.visible { transform: translate(-50%, 0); }
.cookie-popup__title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 1rem; color: var(--clr-text-primary); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Form */
.form__group { margin-bottom: 1.5rem; }
.form__label { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--clr-text-primary); margin-bottom: 0.5rem; }
.form__input, .form__textarea { width: 100%; padding: 1rem; background-color: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); font-family: 'Nunito', sans-serif; transition: var(--transition); }
.form__input:focus, .form__textarea:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px var(--clr-primary-light); }
.form__message { display: none; padding: 1.25rem; margin-bottom: 1.5rem; border-radius: var(--radius-sm); background-color: var(--clr-accent-light); color: var(--clr-success); border: 1px solid var(--clr-accent); }

/* Nav Overlay */
.nav-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--clr-bg-card); z-index: 99; display: flex; align-items: center; justify-content: center; transition: right 0.4s ease; }
.nav-overlay.active { right: 0; }
.nav-overlay__menu { display: flex; flex-direction: column; gap: 2.5rem; text-align: center; }
.nav-overlay__link { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--clr-text-primary); text-decoration: none; }

/* Responsive */
@media (max-width: 992px) {
  .hero__inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero__visual, .hero__content { width: 100%; }
  .hero__visual { padding: 2rem; }
  .hero__actions { justify-content: center; }
  .hero__pills { justify-content: center; }
  .feature-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .grid-3x2 { grid-template-columns: repeat(2, 1fr); }
  .grid-5x1 { grid-template-columns: repeat(2, 1fr); }
  .grid-2x1 { grid-template-columns: 1fr; }
  .split { flex-direction: column; gap: 2rem; }
  .split__visual, .split__content { width: 100%; }
  .order-layout { flex-direction: column; }
  .order-main, .order-sidebar { width: 100%; }
}
@media (max-width: 768px) {
  .navbar__menu { display: none; }
  .navbar__toggle { display: block; }
  .navbar__btn { display: none; }
  .grid-3x2, .grid-5x1, .footer__grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .cookie-popup { width: 90%; }
}

/* Hamburger to X */
.navbar__toggle.active .navbar__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active .navbar__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
