@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display&display=swap");

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3a6e;
  --gold: #c9943a;
  --gold-light: #e8b96a;
  --gold-pale: #f5e6c8;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --teal: #0d6b6e;
  --teal-light: #1a9a9e;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #2c3e5a;
  --text-soft: #556070;
  --text-light: #8a9ab0;
  --danger: #c0392b;
  --success: #1a7a4a;
  --border: rgba(201, 148, 58, 0.2);
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --r: 12px;
  --r-lg: 20px;
  --fd: "Cormorant Garamond", Georgia, serif;
  --fb: "DM Sans", sans-serif;
  --tr: cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--fb);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}
h1,
h2,
h3,
h4 {
  font-family: var(--fd);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
}
p {
  font-size: 1rem;
  line-height: 1.75;
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  padding: 8px 0;
  overflow: hidden;
}
.tbr {
  display: flex;
  gap: 48px;
  animation: marquee 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.tbr span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tbr span::before {
  content: "●";
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* NAVBAR */
.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 148, 58, 0.15);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-main {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-main span {
  color: var(--gold);
}
.logo-sub {
  font-size: 0.62rem;
  color: rgb(255, 255, 255);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s var(--tr);
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 148, 58, 0.08);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 148, 58, 0.15);
  border-radius: var(--r);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--tr);
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  border-radius: 6px;
}
.dropdown-menu a:hover {
  background: rgba(201, 148, 58, 0.1);
  color: var(--gold-light);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 16px 2rem;
  border-top: 1px solid rgba(201, 148, 58, 0.1);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a:hover {
  color: var(--gold-light);
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--cream-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}
.bc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.bc-inner a {
  color: var(--teal);
  text-decoration: none;
}
.bc-inner a:hover {
  text-decoration: underline;
}
.bc-inner .bc-cur {
  color: var(--text-dark);
  font-weight: 500;
}

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--tr);
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 148, 58, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  transition: all 0.25s;
  font-family: var(--fb);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-wa {
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
  font-family: var(--fb);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 148, 58, 0.35);
  color: var(--gold-light);
}

/* SECTION */
.section {
  padding: 30px 0;
}
.si {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--teal);
  display: block;
}
.sec-label.light {
  color: var(--gold);
}
.sec-label.light::before {
  background: var(--gold);
}
.sec-h2 {
  margin-bottom: 14px;
  color: var(--navy);
}
.sec-h2.light {
  color: var(--white);
}
.sec-lead {
  color: var(--text-soft);
  max-width: 580px;
  font-size: 1rem;
}
.sec-lead.light {
  color: rgba(255, 255, 255, 0.55);
}
.text-gold {
  color: var(--gold);
}

/* SIDEBAR STICKY */
.two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 9px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 30px;
}

/* SIDEBAR CARDS */
.scard {
  background: #394558;
  border-radius: var(--r-lg);
  padding: 28px;
  color: white;
}
.scard-title {
  font-family: var(--fd);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}
.scard-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  line-height: 1.6;
}
.scard-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scard .fl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.99);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 0px;
}
.scard input,
.scard select,
.scard textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 148, 58, 0.2);
  color: white;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: var(--fb);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.scard input:focus,
.scard select:focus,
.scard textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.scard input::placeholder,
.scard textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.scard select option {
  background: var(--navy-mid);
}
.scard textarea {
  resize: vertical;
  min-height: 80px;
}
.scard-dis {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
  margin-top: 6px;
  text-align: center;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--r-lg);
  padding: 24px;
}
.info-card-title {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card-title::before {
  content: "";
  width: 3px;
  height: 18px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-list a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.83rem;
  padding: 6px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.info-list a:hover {
  background: var(--cream-dark);
  color: var(--teal);
}
.info-list a::before {
  content: "→";
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.disc-card {
  background: rgba(192, 57, 43, 0.05);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: var(--r);
  padding: 16px;
}
.disc-card-title {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--danger);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.disc-card p {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* CONTENT BODY */
.content-body {
  max-width: 100%;
}
.answer-box {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.911),
    rgb(246, 248, 248)
  );
  border: 1px solid rgba(13, 107, 110, 0.2);
  border-radius: var(--r-lg);
  padding: 2px 28px;
  margin-bottom: 32px;
  position: relative;
}
.answer-box::before {
  /* content: "Direct Answer"; */
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--teal);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.answer-box p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
}
.content-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}
.content-body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 28px 0 10px;
  font-family: var(--fb);
  font-weight: 700;
}
.content-body p {
  color: #303235;
  margin-bottom: 16px;
  line-height: 1.8;
}
.content-body ul,
.content-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-body li {
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.content-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-body strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* HIGHLIGHT BOXES */
.hbox {
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 24px 0;
}
.hbox.info {
  background: rgba(13, 107, 110, 0.05);
  border-left: 3px solid var(--teal);
}
.hbox.warn {
  background: rgba(201, 148, 58, 0.07);
  border-left: 3px solid var(--gold);
}
.hbox.danger {
  background: rgba(192, 57, 43, 0.05);
  border-left: 3px solid var(--danger);
}
.hbox-title {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hbox.info .hbox-title {
  color: var(--teal);
}
.hbox.warn .hbox-title {
  color: #8b6914;
}
.hbox.danger .hbox-title {
  color: var(--danger);
}
.hbox p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* DATA TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.85rem;
}
.data-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.data-table th:first-child {
  border-radius: 8px 0 0 0;
}
.data-table th:last-child {
  border-radius: 0 8px 0 0;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  color: var(--text-mid);
}
.data-table tr:hover td {
  background: rgba(10, 22, 40, 0.02);
}
.data-table tr:last-child td {
  border-bottom: none;
}

/* STEP LIST */
.step-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.step-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(10, 22, 40, 0.07);
  counter-increment: steps;
  position: relative;
  transition: all 0.2s;
}
.step-item:hover {
  border-color: rgba(201, 148, 58, 0.2);
  box-shadow: var(--shadow-sm);
}
.step-item::before {
  content: counter(steps);
  min-width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* CHECK LIST */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(10, 22, 40, 0.07);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(26, 154, 158, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.check-text strong {
  color: var(--navy);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(201, 148, 58, 0.3);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: var(--fb);
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--teal);
}
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s;
  color: var(--text-soft);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--tr),
    padding 0.3s;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.75;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 250px;
  padding: 0 20px 18px;
}

/* CTA BAND */
.cta-band {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(201, 148, 58, 0.12),
    transparent 70%
  );
  pointer-events: none;
}
.cta-band-title {
  font-family: var(--fd);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band-sub {
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  max-width: 480px;
  line-height: 1.65;
}
.cta-band-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cta-band-dis {
  font-size: 0.68rem;
  color: rgb(219, 42, 42);
  margin-top: 8px;
  max-width: 480px;
}

/* RATING BADGE */
.page-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--r);
  margin-bottom: 20px;
}
.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.rating-text {
  font-size: 0.8rem;
  color: var(--text-soft);
}
.rating-text strong {
  color: var(--navy);
}

/* FOOTER */
.footer {
  background: #040c1a;
  padding: 56px 0 0;
}
.ft-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.ft-logo {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.ft-logo span {
  color: var(--gold);
}
.ft-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 16px;
}
.ft-col h4 {
  font-family: var(--fb);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ft-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.ft-links a:hover {
  color: var(--gold-light);
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
}
.ft-legal {
  display: flex;
  gap: 16px;
}
.ft-legal a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* WHATSAPP FAB */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  color: white;
  animation: fabP 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-fab:hover {
  transform: scale(1.1);
}
@keyframes fabP {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 36px rgba(37, 211, 102, 0.6),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--tr),
    transform 0.7s var(--tr);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 52px 0;
  }
  .cta-band {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }
  .cta-band-btns {
    justify-content: center;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .cta-band-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta-band-btns .btn-primary,
  .cta-band-btns .btn-wa {
    width: 100%;
    justify-content: center;
  }
}
