/* =============================================
   LAYOUT — Header, Hero, Sections, Footer
   ============================================= */

/* ── Section spacing ── */
.section {
  padding: 120px 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.section--light {
  background: var(--surface);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  transition: opacity var(--duration) var(--ease-out);
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo__text {
  line-height: 1.15;
}

.logo__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
}

.logo__city {
  display: block;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 3px;
  opacity: 0.4;
  color: var(--black);
}

.header.scrolled .logo__city {
  opacity: 0.35;
}

/* ── Navigation ── */
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.2px;
  transition: color var(--duration) var(--ease-out);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--duration) var(--ease-out);
}

.nav a:hover {
  color: var(--blue);
}

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

.header.scrolled .nav a {
  color: var(--black);
}

.header.scrolled .nav a:hover {
  color: var(--blue);
}

.nav a.active {
  color: var(--blue);
}

.nav a.active::after {
  width: 100%;
  background: var(--blue);
}

/* ── WhatsApp ── */
.header__whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1px;
  transition: color var(--duration) var(--ease-out);
}

.header__whatsapp svg {
  color: var(--gold);
  flex-shrink: 0;
}

.header__whatsapp:hover {
  color: var(--blue);
}

.header.scrolled .header__whatsapp {
  color: var(--black);
}

.header.scrolled .header__whatsapp:hover {
  color: var(--blue);
}

/* ── Menu Toggle (mobile) ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 1px;
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

.header.scrolled .menu-toggle span {
  background: var(--black);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Mobile Nav ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 101;
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}

.nav-backdrop.open {
  display: block;
  opacity: 1;
}

.menu-close-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gray-500);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease-out);
}

.menu-close-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ═════════ Hero ═════════ */
.hero {
  background: var(--blue-deep);
  position: relative;
}

.hero__image-wrapper {
  width: 100%;
  line-height: 0;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero__inner {
  padding: 100px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  background: rgba(192, 155, 78, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero__title .serif {
  font-weight: 800;
  color: var(--gold-light);
}

.hero__desc {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 64px;
}

.hero__actions .btn-ghost {
  color: rgba(255, 255, 255, 0.55);
}

.hero__actions .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__stats {
  display: flex;
  gap: 56px;
  justify-content: center;
}

.hero-stat strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-feature-settings: 'tnum';
}

.hero-stat strong span {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-stat > span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═════ Not For You ═════ */
.not-for-you {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0F2942 50%, var(--blue-deep) 100%);
}

.not-for-you::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(197, 155, 78, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(30, 75, 122, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.not-for-you__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.not-for-you__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.not-for-you__item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.not-for-you__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.not-for-you__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.not-for-you__item:hover::before {
  opacity: 1;
}

.not-for-you__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease-out);
}

.not-for-you__item:hover .not-for-you__icon {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.not-for-you__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 400;
}

.not-for-you__text strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* CTA Section */
.not-for-you__cta {
  max-width: 960px;
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.not-for-you__cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}

.not-for-you__cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22C55E;
}

.not-for-you__cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.not-for-you__cta-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.not-for-you__cta .btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(197, 155, 78, 0.3);
}

.not-for-you__cta .btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 155, 78, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .not-for-you__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }

  .not-for-you__item {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .not-for-you__item::before {
    display: none;
  }

  .not-for-you__icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .not-for-you__cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
  }

  .not-for-you__cta {
    margin-top: 36px;
    text-align: center;
  }
}

/* ═════ Footer ═════ */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.logo--footer {
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--duration) var(--ease-out);
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__social a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--duration) var(--ease-out);
}

.footer__social a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ═════ Page Hero (subpages) ═════ */
.page-hero {
  background: var(--blue-deep);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(30, 75, 122, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}

/* ═════ Blog Listing Layout ═════ */
.blog-listing__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.blog-listing__posts {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.blog-listing__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ═════ Post Page ═════ */
.post {
  padding: 150px 0 80px;
}

.post__content {
  max-width: 740px;
}

.post__content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

.post__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.post__cat {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.post__date,
.post__read {
  font-size: 0.84rem;
  color: var(--gray-500);
}

.post__image {
  height: 400px;
  background: linear-gradient(135deg, var(--blue-dim) 0%, var(--gold-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
}

.post__image span {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  color: var(--blue);
  opacity: 0.12;
}

.post__body {
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.9;
}

.post__body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin: 48px 0 18px;
  letter-spacing: -0.3px;
}

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

.post__body p {
  margin-bottom: 22px;
}

.post__body ul,
.post__body ol {
  margin: 16px 0 28px 24px;
}

.post__body li {
  margin-bottom: 12px;
  line-height: 1.75;
}

.post__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  margin: 36px 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.post__body blockquote p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--blue);
  margin: 0;
}

/* ═════ Author Box ═════ */
.post__author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}

.post__author-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.post__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.post__author-header strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--black);
}

.post__author-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.post__author-bio {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.post__reviewed {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 500;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post__reviewed::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.post__disclaimer {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5;
}

/* ═════ Post CTA ═════ */
.post__cta {
  background: var(--blue-deep);
  color: var(--white);
  padding: 52px 48px;
  border-radius: var(--radius-lg);
  margin-top: 52px;
  text-align: center;
}

.post__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.post__cta p {
  font-size: 0.96rem;
  opacity: 0.5;
  margin-bottom: 28px;
}

.post__cta .btn:hover {
  background: var(--white);
  color: var(--blue);
}

/* ═════ Breadcrumb ═════ */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 44px;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color var(--duration) var(--ease-out);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span:last-child {
  color: var(--black);
  font-weight: 500;
}

/* ═════ Contact ═════ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__form-wrapper {
  max-width: 460px;
}

.contact__info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__info-details {
  padding: 40px 36px;
}

.contact__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact__cta-row .btn-ghost {
  font-size: 0.8rem;
}

.info-line {
  margin-bottom: 28px;
}

.info-line:last-child {
  margin-bottom: 0;
}

.info-line strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-line p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ═════ Legal ═════ */
.legal {
  padding: 150px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.legal .updated {
  font-size: 0.86rem;
  color: var(--gray-500);
  margin-bottom: 44px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 40px 0 14px;
  color: var(--blue);
}

.legal p,
.legal li {
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal ul {
  margin-left: 24px;
}

/* ═════ Thanks ═════ */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
}

.thanks__card {
  background: var(--white);
  padding: 64px 56px;
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thanks__icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.thanks__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.thanks__desc {
  font-size: 1.04rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

.thanks__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #25D366;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease-out);
}

.thanks__whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.thanks__back {
  display: block;
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--gray-500);
}
