/* Rockfolios — static styles */
:root {
  --bg: #fbfaf6;
  --fg: #1a2140;
  --muted: #f4f1ea;
  --muted-fg: #6b7180;
  --card: #ffffff;
  --border: #e6e1d5;
  --input: #e9e5d9;
  --primary: #1a2748;
  --primary-fg: #fafaf5;
  --navy: #1a2748;
  --navy-deep: #0f1a33;
  --accent: #d4a349;
  --accent-fg: #1a2140;
  --gold-soft: #e8c37a;
  --gradient-hero: linear-gradient(
    120deg,
    rgba(15, 26, 51, 0.92),
    rgba(26, 39, 72, 0.75)
  );
  --gradient-gold: linear-gradient(135deg, #e5b757, #c99432);
  --shadow-elegant: 0 24px 60px -20px rgba(15, 26, 51, 0.35);
  --shadow-gold: 0 12px 40px -8px rgba(212, 163, 73, 0.45);
  --radius: 0.5rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.muted {
  color: var(--muted-fg);
}
.accent {
  color: var(--accent);
}
.italic {
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  filter: brightness(1.05);
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn-primary:hover {
  background: #26355c;
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover {
  background: var(--muted);
}
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.arrow::after {
  content: "→";
  display: inline-block;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 225, 213, 0.6);
}
.header-inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.375rem;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.logo-mark svg {
  width: 1.25rem;
  height: 1.25rem;
}
.logo .accent-text {
  color: var(--accent);
}
.nav {
  display: none;
  gap: 2.25rem;
  align-items: center;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav a:hover,
.nav a.active {
  color: var(--fg);
}
.nav-cta {
  display: none;
  gap: 0.75rem;
  align-items: center;
}
.nav-cta .signin {
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-cta .signin:hover {
  color: var(--accent);
}
.menu-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 0.25rem;
}
.mobile-nav a {
  padding: 0.65rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}
.mobile-nav a.active {
  color: var(--fg);
}
.mobile-nav-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.mobile-nav-cta a {
  flex: 1;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.mobile-nav-cta .signin {
  border: 1px solid var(--border);
}
.mobile-nav-cta .signup {
  background: var(--primary);
  color: var(--primary-fg);
}
@media (min-width: 1024px) {
  .nav,
  .nav-cta {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.hero-content {
  position: relative;
  padding: 7rem 0;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  max-width: 60rem;
  line-height: 1.05;
}
.hero p.lede {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
}
.hero .cta-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero .stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 48rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}
.hero .stats dt {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: var(--accent);
}
.hero .stats dd {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .hero-content {
    padding: 10rem 0;
  }
  .hero .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero .stats dt {
    font-size: 2.25rem;
  }
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(212, 163, 73, 0.35),
    transparent 50%
  );
  opacity: 0.4;
}
.page-header .container {
  position: relative;
  padding: 6rem 1.5rem;
}
.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  max-width: 48rem;
  margin-top: 1rem;
}
.page-header p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
}
@media (min-width: 768px) {
  .page-header .container {
    padding: 8rem 1.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  section.lg {
    padding: 8rem 0;
  }
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-top: 0.75rem;
  line-height: 1.15;
}
.section-head {
  margin-bottom: 3.5rem;
}
.section-head.center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-alt {
  background: rgba(244, 241, 234, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark {
  background: var(--navy-deep);
  color: #fff;
}
.section-dark .muted {
  color: rgba(255, 255, 255, 0.65);
}

/* About row */
.two-col {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.about-viz {
  position: relative;
}
.about-viz img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  max-width: 16rem;
  display: none;
}
.about-badge p:first-child {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  color: var(--accent);
}
.about-badge p:last-child {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}
.check-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.875rem;
}
.check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.check-grid .dot {
  color: var(--accent);
}
h2.section-title + p,
.about-body p {
  margin-top: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Service cards */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.svc-card:hover {
  box-shadow: var(--shadow-elegant);
}
.svc-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--muted);
}
.svc-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.svc-card:hover .thumb img {
  transform: scale(1.05);
}
.svc-card .body {
  padding: 1.5rem;
}
.svc-card .head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.svc-card .icon-badge {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.375rem;
  background: rgba(212, 163, 73, 0.15);
  color: var(--accent);
}
.svc-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
.svc-card .body p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* Head-with-link */
.head-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .head-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.head-row .max {
  max-width: 36rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.link-arrow:hover {
  color: var(--accent);
}

/* Plans */
.plans {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s;
}
.plan.featured {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) {
  .plan.featured {
    transform: translateY(-1rem);
  }
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.plan .rate {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.plan .rate strong {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
}
.plan.featured .rate strong {
  color: var(--accent);
}
.plan .rate span {
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.plan.featured .rate span {
  color: rgba(255, 255, 255, 0.6);
}
.plan .min {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.plan.featured .min {
  color: rgba(255, 255, 255, 0.6);
}
.plan ul {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.875rem;
}
.plan li::before {
  content: "✓";
  color: var(--accent);
  flex-shrink: 0;
}
.plan .btn {
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

/* Why us */
.pillars {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pillar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}
.pillar .ico {
  color: var(--accent);
  font-size: 1.75rem;
  line-height: 1;
}
.pillar h3 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.pillar p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
}
.quote blockquote {
  margin-top: 1.25rem;
  line-height: 1.7;
}
.quote figcaption {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.quote figcaption p:first-child {
  font-weight: 600;
  font-size: 0.875rem;
}
.quote figcaption p:last-child {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* CTA banner */
.cta-banner {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 3rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 4rem;
  }
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  height: 16rem;
  width: 16rem;
  border-radius: 50%;
  background: rgba(212, 163, 73, 0.2);
  filter: blur(3rem);
}
.cta-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-inner {
    grid-template-columns: 1fr auto;
  }
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  max-width: 36rem;
}
.cta-banner p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
}
.cta-banner .ico {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

/* Legal / long-form */
.prose {
  max-width: 48rem;
  margin-inline: auto;
}
.prose section {
  padding: 0;
  margin-bottom: 3rem;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.prose p {
  margin-top: 1rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.updated {
  margin-top: 4rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* FAQ */
.faq {
  max-width: 48rem;
  margin-inline: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
}
.faq-q .plus {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.25rem;
  width: 1.25rem;
  text-align: center;
}
.faq-a {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--muted-fg);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .plus::before {
  content: "−";
}
.faq-item .plus::before {
  content: "+";
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
@media (min-width: 768px) {
  .form-card {
    padding: 2.5rem;
  }
}
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: block;
}
.field span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid var(--input);
  background: var(--bg);
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  height: 2.75rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  padding: 0.65rem 0.75rem;
  height: auto;
  resize: vertical;
  min-height: 8rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 163, 73, 0.2);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.info-card .ico {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.375rem;
  background: rgba(212, 163, 73, 0.15);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.15rem;
}
.info-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.info-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  white-space: pre-line;
}

/* Auth pages */
.auth {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
}
.auth-inner {
  width: 100%;
  max-width: 28rem;
  padding: 0 1.5rem;
}
.auth-head {
  text-align: center;
}
.auth-head .logo-mark {
  display: inline-grid;
  margin-inline: auto;
}
.auth-head h1 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 600;
}
.auth-head p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.auth-form {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.auth-row a {
  color: var(--accent);
}
.auth-row a:hover {
  text-decoration: underline;
}
.auth-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.auth-form .btn {
  margin-top: 0.5rem;
}
.auth-foot {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-fg);
}
.auth-foot a {
  color: var(--accent);
  font-weight: 500;
}
.auth-foot a:hover {
  text-decoration: underline;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.consent a {
  color: var(--accent);
}

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}
.footer h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
}
.footer a:hover {
  color: var(--accent);
}
.footer .logo {
  color: #fff;
}
.footer .tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 20rem;
}
.footer .contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.footer .contact .ico {
  color: var(--accent);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================
   PREMIUM MOBILE SIDEBAR
========================================== */

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.3s;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* BACKDROP */

.mobile-nav {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;

  z-index: 99999;

  display: flex;
  justify-content: flex-end;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

/* SIDEBAR */

.mobile-nav-inner {
  width: 340px;
  max-width: 88%;

  height: 100vh;

  background: #0f172a;

  overflow-y: auto;

  position: relative;

  display: flex;
  flex-direction: column;

  padding: 90px 24px 30px;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
}

.mobile-nav.active .mobile-nav-inner {
  transform: translateX(0);
}

/* CLOSE BUTTON */

.close-menu-btn {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  font-size: 22px;
  font-weight: 700;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.close-menu-btn:hover {
  background: #d4af37;
  color: #0f172a;
  transform: rotate(90deg);
}

/* NAV LINKS */

.mobile-nav-inner > a {
  display: flex;
  align-items: center;

  min-height: 54px;

  padding: 0 18px;

  border-radius: 14px;

  text-decoration: none;

  color: #e5e7eb;

  font-size: 17px;
  font-weight: 600;

  transition: all 0.25s ease;
}

.mobile-nav-inner > a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  transform: translateX(6px);
}

.mobile-nav-inner > a.active {
  background: #d4af37;
  color: #0f172a;
  font-weight: 700;
}

/* DIVIDER */

.mobile-nav-inner::before {
  content: "";

  position: absolute;

  top: 75px;
  left: 24px;
  right: 24px;

  height: 1px;

  background: rgba(255, 255, 255, 0.08);
}

/* CTA SECTION */

.mobile-nav-cta {
  margin-top: auto;

  padding-top: 30px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-cta .signin {
  height: 52px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: 0.3s;
}

.mobile-nav-cta .signin:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.mobile-nav-cta .btn {
  height: 52px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
}

/* MOBILE */

@media (max-width: 991px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* DESKTOP */

@media (min-width: 992px) {
  .mobile-nav {
    display: none !important;
  }
}

/* for Logo */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ==========================================
   GLOBAL RESET
========================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  line-height: 1.6;
}

/* Images */

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tables */

table {
  display: block;
  overflow-x: auto;
  width: 100%;
}

/* Forms */

input,
textarea,
select,
button {
  font: inherit;
}

/* Links */

a {
  text-decoration: none;
}

/* Lists */

ul,
ol {
  list-style: none;
}

/* Container */

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* Mobile */

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }
}
