@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #06101d;
  --bg-soft: #0b1627;
  --surface: rgba(13, 24, 41, 0.92);
  --surface-strong: #101d31;
  --surface-soft: rgba(255, 255, 255, 0.05);
  --card: linear-gradient(180deg, rgba(18, 31, 52, 0.96), rgba(9, 18, 31, 0.96));
  --text: #f5f0e6;
  --muted: #97a7c1;
  --border: rgba(214, 164, 93, 0.18);
  --border-strong: rgba(214, 164, 93, 0.34);
  --gold: #d6a45d;
  --gold-strong: #efc37c;
  --accent: #bf5b47;
  --accent-strong: #e2735b;
  --success: #25d366;
  --info: #7fd0ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 91, 71, 0.22), transparent 26rem),
    radial-gradient(circle at top right, rgba(214, 164, 93, 0.14), transparent 24rem),
    linear-gradient(180deg, #08111e 0%, #050d18 100%);
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 88%);
  opacity: 0.22;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
}

::selection {
  background: rgba(214, 164, 93, 0.22);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 14, 24, 0.84);
  border-bottom: 1px solid rgba(214, 164, 93, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.brand-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-text span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a,
.footer-links a,
.inline-link,
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.inline-link:hover,
.breadcrumbs a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  color: #07111d !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(214, 164, 93, 0.24);
}

.hero {
  padding: 5.5rem 0 2.4rem;
}

.hero-grid,
.two-col,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.two-col,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 164, 93, 0.1);
  color: var(--gold-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(214, 164, 93, 0.65);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.04;
}

h1,
.display-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

.hero-title-fixed {
  width: fit-content;
  max-width: 16ch;
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.hero-title-fixed .title-accent {
  color: #5d97ff;
}

.hero-actions {
  margin-top: 3.2rem;
}

h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead,
.section-head p,
.card p,
.panel p,
.article-card p,
.contact-card p,
.faq-item p,
.footer-copy,
.footer-meta {
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  margin: 0;
  font-size: 1.08rem;
}

.section {
  padding: 1.4rem 0 4.4rem;
}

.section-head {
  max-width: 64ch;
  margin-bottom: 1.6rem;
}

.panel,
.card,
.stat-card,
.faq-item,
.article-card,
.contact-card,
.hero-panel,
.top-strip,
.cta-banner,
.info-band {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.panel,
.card,
.stat-card,
.faq-item,
.article-card,
.contact-card,
.hero-panel,
.info-band {
  padding: 1.45rem;
}

.hero-panel {
  padding: 1rem;
}

.top-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 2.8rem;
  padding: 0.9rem 1rem;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.top-strip span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(226, 115, 91, 0.45);
}

.button-row,
.social-row,
.pill-row,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fffaf2;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button.secondary {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.button.whatsapp {
  background: linear-gradient(135deg, #20bd5a, #2fde76);
  color: #04100a;
}

.button.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #07111d;
}

.social-pill,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 164, 93, 0.12);
  color: var(--text);
}

.social-pill strong,
.pill strong {
  font-weight: 700;
}

.pill::before,
.social-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
}

.card-grid,
.article-grid,
.stats-grid,
.service-grid,
.support-grid,
.plans-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.card-grid,
.article-grid,
.service-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plans-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.article-card,
.contact-card,
.panel,
.faq-item,
.stat-card,
.plan-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.article-card::after,
.contact-card::after,
.panel::after,
.faq-item::after,
.plan-card::after,
.blog-card::after,
.hero-panel::after,
.cta-banner::after,
.info-band::after {
  content: "";
  position: absolute;
  inset: -35% auto auto 58%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 164, 93, 0.12), transparent 70%);
  pointer-events: none;
}

.plan-card,
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.plan-label,
.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  color: var(--gold-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-price {
  margin: 0 0 0.75rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.plan-price span {
  font-size: 0.95rem;
  color: var(--gold-strong);
}

.plan-copy,
.blog-card p {
  color: var(--muted);
}

.plan-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 164, 93, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.stats-label {
  margin: 0 0 0.45rem;
  color: var(--gold-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stats-value {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric {
  min-width: 170px;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 164, 93, 0.12);
}

.metric strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list,
.list {
  margin: 0;
  padding-left: 1.15rem;
}

.check-list li,
.list li {
  margin-bottom: 0.7rem;
}

.check-list li::marker,
.list li::marker {
  color: var(--gold);
}

.note-bar,
.info-band {
  margin-top: 1.2rem;
}

.note-bar {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(127, 208, 255, 0.18);
  background: rgba(127, 208, 255, 0.08);
  color: #d5eefe;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(7, 14, 24, 0.16), rgba(7, 14, 24, 0.38)),
    linear-gradient(135deg, #17263d 0%, #0c1524 100%);
}

.media-card img,
.image-placeholder {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(214, 164, 93, 0.12), rgba(191, 91, 71, 0.16)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.07) 12px,
      transparent 12px,
      transparent 24px
    );
}

.media-caption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  color: var(--text);
  background: rgba(4, 10, 18, 0.78);
  border: 1px solid rgba(214, 164, 93, 0.18);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  display: block;
  margin-bottom: 0.3rem;
}

.media-keywords {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.74);
  border: 1px solid rgba(214, 164, 93, 0.24);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.keyword-chip.primary {
  background: linear-gradient(135deg, rgba(214, 164, 93, 0.92), rgba(239, 195, 124, 0.92));
  color: #07111d;
}

.hero-panel-stack {
  display: grid;
  gap: 1rem;
}

.info-band {
  display: grid;
  gap: 0.7rem;
}

.info-band strong {
  color: var(--gold-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item h3 {
  margin-bottom: 0.55rem;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(214, 164, 93, 0.24), transparent 36%),
    linear-gradient(135deg, #1e304a 0%, #09111d 100%);
}

.cta-banner h2,
.cta-banner p,
.cta-banner a {
  color: var(--text);
}

.footer-title {
  margin: 0 0 0.6rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-premium-home {
  padding-top: 1rem;
}

.footer-spotlight {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.35rem;
  padding: 1.7rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(214, 164, 93, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(17, 30, 48, 0.98), rgba(8, 14, 24, 0.98));
  box-shadow: var(--shadow);
}

.footer-spotlight h2 {
  max-width: 13ch;
  margin-bottom: 0.75rem;
}

.footer-spotlight-actions {
  justify-content: flex-end;
}

.footer-premium-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 0.9fr));
  gap: 1rem;
  align-items: start;
}

.footer-brand-card,
.footer-column {
  min-height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 28, 45, 0.96), rgba(8, 14, 24, 0.96));
  box-shadow: var(--shadow);
}

.brand-footer-home {
  margin-bottom: 1rem;
}

.footer-brand-card .footer-copy {
  margin-bottom: 1rem;
}

.footer-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-kpis span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 93, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
}

.footer-section-title {
  margin: 0 0 1rem;
  color: var(--gold-strong);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 0.8rem;
}

.footer-list a {
  color: var(--muted);
  text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--text);
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.site-footer {
  padding: 3.2rem 0 2rem;
  border-top: 1px solid rgba(214, 164, 93, 0.08);
}

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 164, 93, 0.08);
}

.footer-meta-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fbe5a, #2de176);
  color: #05110a;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid,
  .footer-premium-grid,
  .footer-spotlight,
  .footer-meta-premium {
    grid-template-columns: 1fr;
  }

  .top-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid,
  .article-grid,
  .service-grid,
  .support-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-meta-premium {
    display: grid;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.6rem) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(6, 12, 22, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 6rem;
  }

  h1,
  .display-title {
    max-width: none;
    font-size: 50px;
  }

  .hero-title-fixed {
    max-width: none;
    width: auto;
    line-height: 1.08;
  }

  .card-grid,
  .article-grid,
  .service-grid,
  .stats-grid,
  .support-grid,
  .plans-grid,
  .blog-grid,
  .top-strip {
    grid-template-columns: 1fr;
  }

  .button-row,
  .social-row,
  .pill-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-spotlight-actions {
    justify-content: stretch;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .panel,
  .card,
  .stat-card,
  .faq-item,
  .article-card,
  .contact-card,
  .hero-panel,
  .cta-banner,
  .info-band {
    padding: 1.15rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 0.75rem;
    left: 0.75rem;
    justify-content: center;
  }
}
