:root {
  --black: #05070b;
  --navy: #07111f;
  --navy-2: #0e1d32;
  --graphite: #1a1f29;
  --ink: #10141b;
  --muted: #667085;
  --line: #dde3ec;
  --paper: #f4f6f9;
  --white: #ffffff;
  --gold: #c9a052;
  --gold-2: #f0d184;
  --green: #1f8f5f;
  --shadow: 0 28px 80px rgba(5, 12, 24, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(5, 7, 11, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 86px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 12px 16px;
  color: var(--black) !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/holding-hero.png") center right / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(7, 17, 31, 0.86) 36%, rgba(7, 17, 31, 0.1) 66%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.58) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6.2vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.trust-row,
.authority-grid,
.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 44px rgba(201, 160, 82, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button.large {
  width: 100%;
  min-height: 58px;
}

.trust-row {
  max-width: 930px;
  margin-top: 58px;
}

.trust-row span {
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-bar article {
  min-height: 150px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.signal-bar strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 2.1rem;
  font-weight: 900;
}

.signal-bar p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.42;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 124px) 0;
}

.split,
.visual-proof,
.final-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.section-copy p,
.proof-copy p,
.benefit-card p,
.process-line p,
.authority-grid p,
.faq-list p,
.article-grid p,
.final-cta p {
  color: var(--muted);
  line-height: 1.75;
}

.insight-panel {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.96), rgba(14, 29, 50, 0.96)),
    radial-gradient(circle at top right, rgba(201, 160, 82, 0.28), transparent 34%);
  border: 1px solid rgba(201, 160, 82, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.process-line article,
.authority-grid article,
.article-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.06);
}

.benefit-card {
  min-height: 285px;
  padding: 28px;
}

.benefit-card span,
.process-line span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--black);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.benefit-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.benefit-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.visual-proof {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-copy {
  max-width: 620px;
}

.proof-copy h2 {
  color: var(--white);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.mini-metrics {
  margin-top: 28px;
}

.mini-metrics article {
  min-width: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-metrics strong {
  display: block;
  color: var(--gold-2);
  font-size: 2.2rem;
  font-weight: 900;
}

.mini-metrics span {
  color: rgba(255, 255, 255, 0.72);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-line article {
  min-height: 280px;
  padding: 24px;
}

.authority {
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.92)),
    url("assets/holding-hero.png") center / cover no-repeat fixed;
}

.authority > div {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.authority h2 {
  max-width: 880px;
}

.authority-grid {
  margin-top: 30px;
}

.authority-grid article {
  flex: 1 1 260px;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.authority-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--graphite);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-grid article {
  min-height: 245px;
  padding: 28px;
}

.article-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--black);
  background: rgba(201, 160, 82, 0.24);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(50px, 8vw, 90px);
  padding: clamp(32px, 6vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--navy-2));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.lead-form label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form option {
  color: var(--ink);
  background: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(31, 143, 95, 0.38);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: var(--black);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 900;
}

.page-hero {
  position: relative;
  padding: 150px 0 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(7, 17, 31, 0.88)),
    url("assets/holding-hero.png") center right / cover no-repeat;
}

.page-hero .inner,
.content-layout,
.blog-list {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 5.3vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.7;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  padding: 70px 0;
}

.rich-content {
  min-width: 0;
}

.rich-content h2 {
  margin-top: 38px;
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
}

.rich-content h3 {
  margin-top: 28px;
}

.rich-content p,
.rich-content li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.rich-content ul {
  padding-left: 22px;
}

.sidebar-card {
  position: sticky;
  top: 104px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--black), var(--navy-2));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sidebar-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.internal-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.internal-links a {
  padding: 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 70px 0;
}

.blog-list a {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.06);
}

.blog-list span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-list p {
  color: var(--muted);
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .process-line,
  .benefit-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(5, 7, 11, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px;
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(7, 17, 31, 0.84)),
      linear-gradient(0deg, rgba(5, 7, 11, 0.78), transparent 42%);
  }

  .signal-bar,
  .split,
  .visual-proof,
  .final-cta,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .signal-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-proof {
    padding-block: 70px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 72px;
    max-height: 38px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .section,
  .final-cta {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 46px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 34px;
  }

  .trust-row span,
  .benefit-card,
  .process-line article,
  .authority-grid article,
  .article-grid article,
  .lead-form {
    padding: 22px;
  }

  .benefit-grid,
  .process-line,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .process-line article,
  .article-grid article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-top: 10px;
  }

  .content-layout,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}
