*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #f8fafc;
  --navy-2: #f1f5f9;
  --navy-3: #e2e8f0;
  --gold: #E8A020;
  --gold-2: #f5c96a;
  --white: #0f172a;
  --muted: rgba(15, 23, 42, 0.65);
  --border: rgba(15, 23, 42, 0.15);
  --card-bg: #ffffff;
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.cv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s, background 0.3s;
}

.cv-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cv-nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.75);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--gold);
}

.cv-nav-cta {
  background: var(--gold);
  color: #111 !important;
  font-weight: 700;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 0.82rem;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.cv-nav-cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

.cv-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.cv-hamburger:hover {
  background: rgba(15, 23, 42, 0.05);
}

.cv-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(248, 250, 252, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.cv-mobile-menu.open {
  display: flex;
}

.cv-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.mobile-nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-nav-cta {
  background: var(--gold);
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav-cta:hover {
  background: var(--gold-2);
}

@media (max-width: 900px) {
  .cv-nav-links {
    display: none;
  }

  .cv-hamburger {
    display: flex;
  }
}

.hero {
  min-height: 520px;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-flag-ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-flag-glow {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.15) 0%, rgba(232, 160, 32, 0.05) 50%, transparent 75%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}


.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  animation: float-up 6s ease-in-out infinite;
}

.hero-float-card--approved {
  top: 10%;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation-delay: 0s;
}

.hero-float-card--steps {
  bottom: 8%;
  left: -10px;
  min-width: 200px;
  animation-delay: 1.2s;
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hfc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hfc-icon--green {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}

.hfc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}

.hfc-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.hfc-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hfc-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hfc-step {
  font-size: 0.76rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.hfc-step:last-child {
  border-bottom: none;
}

.hfc-step--done {
  color: rgba(15, 23, 42, 0.75);
}

.hfc-step--done span {
  color: #34d399;
  font-weight: 700;
}

.hfc-step--active {
  color: var(--gold);
  font-weight: 600;
}

.hfc-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232, 160, 32, 0.7);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 280px;
    margin-top: 1rem;
  }

  .hero-float-card--approved {
    right: 0;
    top: 0;
  }

  .hero-float-card--steps {
    left: 0;
    bottom: 0;
  }
}


.passport-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.passport-stamp {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(232, 160, 32, 0.35);
  box-shadow:
    0 0 0 8px rgba(232, 160, 32, 0.07),
    0 0 60px rgba(232, 160, 32, 0.15),
    inset 0 0 40px rgba(248, 250, 252, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}

.passport-stamp img {
  width: 140px;
  height: 93px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  filter: saturate(1.1) contrast(1.05);
}

.passport-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 160, 32, 0.3);
  animation: spin-ring 30s linear infinite;
}

@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}


.hero-text .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--gold) 20%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 160, 32, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(15, 23, 42, 0.8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .passport-stamp {
    width: 130px;
    height: 130px;
  }

  .passport-stamp img {
    width: 90px;
    height: 60px;
  }
}

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .page-content {
    grid-template-columns: 1fr;
  }
}

.content-section {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.content-section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  transition: border-color 0.2s, background 0.2s;
}

.doc-item:hover {
  border-color: rgba(232, 160, 32, 0.3);
  background: rgba(232, 160, 32, 0.05);
}

.doc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.doc-icon svg {
  width: 16px;
  height: 16px;
}

.doc-text h4 {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.doc-text p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.visa-types {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.vt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  transition: all 0.25s;
}

.vt-item:hover {
  border-color: rgba(232, 160, 32, 0.3);
  background: rgba(15, 23, 42, 0.07);
  transform: translateX(4px);
}

.vt-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.vt-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}

.vt-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.vt-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.25);
  color: var(--gold);
  white-space: nowrap;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.25rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.ps-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: relative;
}

.ps-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.12);
  border: 2px solid rgba(232, 160, 32, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  z-index: 1;
}

.ps-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.ps-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sb-cta-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.sb-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sb-cta-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sb-cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(232, 160, 32, 0.12);
  border: 1px solid rgba(232, 160, 32, 0.3);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.sb-cta-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.sb-cta-card p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sb-btn-primary {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.sb-btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

.sb-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.sb-btn-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-1px);
}

.sb-cta-trust {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.sb-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.5);
}

.sb-cta-trust svg {
  color: var(--gold);
  flex-shrink: 0;
}

.sb-countries {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sb-countries-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1.1rem;
}

.sb-countries-header svg {
  color: var(--gold);
}

.sb-country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.sb-country-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.sb-country-item:hover {
  background: rgba(232, 160, 32, 0.08);
  border-color: rgba(232, 160, 32, 0.25);
  transform: translateY(-1px);
}

.sb-country-item img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.sb-country-item span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.75);
  white-space: nowrap;
}

.sb-all-countries {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  transition: opacity 0.2s;
}

.sb-all-countries:hover {
  opacity: 0.7;
}

.page-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.page-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .page-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .page-footer-grid {
    grid-template-columns: 1fr;
  }
}

.pf-logo {
  height: 200px;
  width: auto;

}

.pf-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.pf-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pf-social-btn:hover {
  background: rgba(232, 160, 32, 0.2);
  border-color: rgba(232, 160, 32, 0.4);
  color: var(--gold);
}

.pf-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.pf-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pf-links a {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
  transition: color 0.2s;
}

.pf-links a:hover {
  color: var(--gold);
}

.pf-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pf-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

.pf-contact li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.pf-contact a {
  color: rgba(15, 23, 42, 0.55);
  transition: color 0.2s;
}

.pf-contact a:hover {
  color: var(--gold);
}

.pf-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.3);
}

.pf-legal {
  display: flex;
  gap: 1.5rem;
}

.pf-legal a {
  color: rgba(15, 23, 42, 0.3);
  transition: color 0.2s;
}

.pf-legal a:hover {
  color: rgba(15, 23, 42, 0.6);
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

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

.breadcrumb span {
  color: rgba(15, 23, 42, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.dynamic-content h2 strong,
.dynamic-content h3 strong {
  background: transparent !important;
  background-color: transparent !important;
  color: inherit !important;
  font-weight: inherit;
}

.dynamic-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

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

.dynamic-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-2);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.dynamic-content p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.dynamic-content ul,
.dynamic-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dynamic-content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.dynamic-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.dynamic-content ol li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 0.25rem;
}

.dynamic-content strong {
  color: rgba(15, 23, 42, 0.9);
  background: transparent !important;
  background-color: transparent !important;
}

.dynamic-content em {
  color: var(--gold-2);
  font-style: italic;
}

.dynamic-content * {
  background-color: transparent;
}

.dynamic-content p,
.dynamic-content li,
.dynamic-content span,
.dynamic-content strong,
.dynamic-content em,
.dynamic-content h2,
.dynamic-content h3,
.dynamic-content h4,
.dynamic-content h5 {
  background-color: transparent !important;
}