/* ----------------------------------------------------------
  Index
---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-page: #050511;
  --bg-section-alt: #0b0d18;

  --text-main: #f9fafb;
  --text-muted: #a1a4b3;

  --accent: #ff4a3c;
  --accent-soft: rgba(255, 74, 60, 0.25);

  --card-bg: #111320;
  --card-border: rgba(148, 163, 184, 0.25);

  --radius-md: 16px;
  --radius-lg: 22px;

  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.7);
  --shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.9);

  --max-width: 1120px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #02010a 60%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

/* ----------------------------------------------------------
   Layout Helpers
---------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

/* ----------------------------------------------------------
   Floating Glass Header
---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.75rem 0 1.25rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(3, 4, 10, 0.95));
  backdrop-filter: blur(20px);
}

.header-shell {
  display: flex;
  justify-content: center;
}

.header-glass {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  position: relative;
}

.brand-mark {
  display: flex;
  align-items: center;
}

.brand-name {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
  color: var(--text-main);
  background: rgba(148, 163, 184, 0.18);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--text-main);
  background: var(--accent-soft);
}

.nav-cta {
  border: 1px solid var(--accent);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--text-main);
}

/* ----------------------------------------------------------
   Hero (with logo on right)
---------------------------------------------------------- */
.hero {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 3.5rem;
  padding: 4.5rem 0 4rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.hero-left h1 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.hero-text {
  margin: 0;
  max-width: 34rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: center;
}

/* Large logo */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: clamp(280px, 32vw, 420px);
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.85);
}

/* Video frame */
.hero-frame {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #020617;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
}

.hero-tag {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.65);
}

/* ----------------------------------------------------------
   Buttons
---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn.primary {
  background: var(--accent);
  color: #111827;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(15, 23, 42, 0.7);
}

/* ----------------------------------------------------------
   Section Headers / Grids
---------------------------------------------------------- */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.section-header p {
  margin: 0;
  max-width: 540px;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards */
.card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(248, 250, 252, 0.45);
  background: #181a2a;
}

/* Process Steps */
.steps {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
  border-radius: var(--radius-md);
  padding: 1.7rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Featured work */
.video-card .video-thumb img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.video-meta h3 {
  margin-bottom: 0.25rem;
}

.video-type {
  margin: 0 0 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.video-description {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
}

.text-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  color: #ff6d63;
}

.section-footer {
  margin-top: 2.2rem;
  text-align: center;
}

/* ----------------------------------------------------------
   Final CTA
---------------------------------------------------------- */
.section-cta {
  background: linear-gradient(135deg, rgba(255, 74, 60, 0.22), rgba(37, 99, 235, 0.6));
  padding: 4.2rem 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

/* ----------------------------------------------------------
   Footer
---------------------------------------------------------- */
.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 2.6rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.footer-text {
  margin: 0;
  max-width: 360px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  opacity: 0.92;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-meta {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----------------------------------------------------------
   Fade-up Animation
---------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   Responsive
---------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-logo {
    width: clamp(240px, 50vw, 320px);
  }

  .hero-frame {
    min-height: 220px;
  }

  .header-glass {
    padding: 0.6rem 0.9rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.9rem 1.1rem 1.1rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.5);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.95);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-grid {
    padding-top: 3.2rem;
  }

  .brand-name {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .hero-logo {
    border-radius: 10px;
  }
}










/* ----------------------------------------------------------
   ABOUT PAGE
---------------------------------------------------------- */

/* Page hero */
.page-hero.about-hero {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 55%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.about-hero-copy h1 {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
}

.page-intro {
  margin: 0 0 0.9rem;
  max-width: 36rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-intro-secondary {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Founder / studio card (subtle) */
.about-hero-aside {
  display: flex;
  justify-content: flex-end;
}

.about-card {
  max-width: 320px;
  border-radius: var(--radius-md);
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-photo-frame {
  height: 210px;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.about-tag {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.about-card-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Approach */
.approach-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Mission */
.mission-grid {
  display: grid;
}

.mission-copy h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.mission-text {
  margin: 0;
  max-width: 44rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.5rem;
}

/* Values */
.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Why video matters */
.why-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.why-video-text {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-video-aside {
  display: flex;
  justify-content: flex-end;
}

.why-stat-block {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.why-stat-label {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.why-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* About responsive */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-aside {
    justify-content: flex-start;
  }

  .why-video-grid {
    grid-template-columns: 1fr;
  }

  .why-video-aside {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .about-card {
    max-width: 100%;
  }
}







/* ----------------------------------------------------------
   SERVICES PAGE
---------------------------------------------------------- */

.services-hero {
  background: radial-gradient(circle at top left, rgba(148,163,184,0.15), transparent 55%);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  min-height: 170px;
}

.capabilities-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.capability-card {
  background: #020617;
  border: 1px solid rgba(148,163,184,0.5);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.capability-card h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.capability-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Packages */
.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-card {
  padding: 2rem;
}

.package-list {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Add-ons */
.addons-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}





/* Portfolio page */

.portfolio-grid-simple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* Video card */
.video-card h3 {
  margin: 0.6rem 0 0.2rem;
}

.video-card .video-type {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Thumbnail box */
.video-card .thumb {
  background: #020617;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  aspect-ratio: 9 / 16;
}

.video-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card:hover img {
  transform: scale(1.03);
  transition: transform 0.25s ease-out;
}

/* Mobile */
@media (max-width: 700px) {
  .portfolio-grid-simple {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}



/* ----------------------------------------------------------
   PORTFOLIO MODAL
---------------------------------------------------------- */

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
}

.portfolio-modal.is-open {
  display: flex;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 10, 0.92);
  backdrop-filter: blur(12px);
}

.portfolio-modal-dialog {
  position: relative;
  max-width: 960px;
  width: 92%;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-strong);
  padding: 0.75rem 0.75rem 1rem;
  z-index: 1;
}

.portfolio-modal-video {
  width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  background: #000;
}

.portfolio-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 600px) {
  .portfolio-modal-dialog {
    width: 96%;
    padding: 0.5rem 0.5rem 0.8rem;
  }

  .portfolio-modal-video {
    max-height: 70vh;
  }
}




/* ----------------------------------------------------------
   PRICING PAGE
---------------------------------------------------------- */

.pricing-hero {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 55%);
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.8rem 2.1rem;
  border-radius: var(--radius-md);
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-card-featured {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.04), #020617);
  border-color: rgba(248, 250, 252, 0.7);
  box-shadow: var(--shadow-strong);
}

.pricing-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-name {
  margin: 0;
  font-size: 1.3rem;
}

.pricing-price {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-price span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
}

.pricing-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-list {
  margin: 0.6rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.pricing-btn {
  margin-top: 1.4rem;
  align-self: flex-start;
}

.pricing-disclaimer {
  margin-top: 2rem;
  max-width: 680px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Factors */
.pricing-factors-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Add-ons */
.pricing-addons-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* FAQ */
.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

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

.pricing-faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Pricing Comparison Table */
.pricing-compare-table {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row div {
  padding: 0.9rem 1rem;
}

.compare-header div {
  font-weight: 600;
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-main);
}

.compare-row div:first-child {
  font-weight: 500;
  color: var(--text-muted);
}

/* Mobile scroll */
@media (max-width: 700px) {
  .pricing-compare-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }

  .compare-row {
    min-width: 600px;
  }
}






/* ----------------------------------------------------------
   CONTACT PAGE
---------------------------------------------------------- */

.contact-hero {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 55%);
}

/* Main Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 2rem;
}

/* Form */
.contact-form {
  display: grid;
  gap: 1.4rem;
  max-width: 720px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  border-radius: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(244, 63, 94, 0.35);
}

/* Placeholder text */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

/* Select dropdown arrow */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #9ca3af 50%),
    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* Checkbox */
.contact-form .checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* Success Message */
.form-success {
  display: none;
  padding: 1.2rem 1.4rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.6rem;
}

.contact-sidebar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.contact-sidebar p,
.contact-sidebar a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-sidebar a:hover {
  color: var(--accent);
}

/* Buttons */
.contact-form button {
  margin-top: 0.6rem;
}

/* Utility */
.hidden {
  display: none !important;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}






/* ----------------------------------------------------------
   FAQ Page
---------------------------------------------------------- */

.faq-section {
  padding-top: 3rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.6);
  overflow: hidden;
  transition: border 0.2s ease;
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.3rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.3rem;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0.8rem 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ----------------------------------------------------------
   LEGAL SECTION
---------------------------------------------------------- */

.legal-section h2 {
  margin-bottom: 0.6rem;
}

.legal-intro {
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.legal-block {
  border-bottom: 1px solid rgba(148,163,184,0.15);
  padding: 1.4rem 0;
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h3 {
  margin-bottom: 0.3rem;
}

.legal-block p {
  color: var(--text-muted);
  line-height: 1.55;
}

/* MOBILE */
@media(max-width: 700px) {
  .faq-question {
    font-size: 0.95rem;
  }
}


/* -----------------------------------------
   404 PAGE 
----------------------------------------- */

.notfound-body {
  background: #020617;
  color: #f1f5f9;
  font-family: var(--font-main, Inter, sans-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.notfound-wrapper {
  max-width: 600px;
  width: 100%;
  animation: fadeIn 0.7s ease-out forwards;
}

.notfound-code {
  font-size: 7rem;
  font-weight: 800;
  color: #f43f5e; /* Accent red */
  margin: 0 0 0.5rem;
}

.notfound-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.notfound-text {
  margin-bottom: 2rem;
  color: #94a3b8;
  line-height: 1.6;
}

.notfound-btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  margin-bottom: 2.2rem;
  display: inline-block;
}

.notfound-easteregg {
  font-size: 0.9rem;
  color: #64748b;
  opacity: 0.8;
  font-style: italic;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile optimization */
@media (max-width: 500px) {
  .notfound-code {
    font-size: 4.5rem;
  }
  .notfound-title {
    font-size: 1.6rem;
  }
}

/* Global link reset — prevents purple visited links site-wide */
a,
a:visited {
  color: inherit;
  text-decoration: none; /* optional — keep/remove based on style */
}
