html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================
   Global / Reset
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0b0f14;
  color: #eaeaea;
}

/* =========================
   Main Content Offset (for fixed nav)
========================= */
main {
  padding-top: 120px;
}

@media (max-width: 768px) {
  main {
    padding-top: 160px;
  }
}

/* =========================
   Main Navigation
========================= */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617 !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.logo-video {
  height: 90px;
  object-fit: contain;
  border-radius: 16px;
  overflow: hidden;
}

/* =========================
   DESKTOP NAV — FORCE VISIBLE
========================= */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* =========================
   Hero Section
========================= */
.hero-video {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: black;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-cta {
  padding: 14px 34px;
  font-weight: 600;
  color: #2b235a;
  background: linear-gradient(135deg, #ffd6f0, #d6ccff);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* =========================
   Services CTA Button
========================= */
.services-cta {
  display: inline-block;
  margin-top: 32px;

  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;

  color: #ffffff;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);

  border-radius: 999px;
  text-decoration: none;
  border: none;

  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* =========================
   Services Icons Section
========================= */
.services-icons {
  background: linear-gradient(180deg, #1e293b, #334155);
  padding: 120px 24px;
}

.services-icons-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-icons-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #fff;
}

.services-icons-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

.services-icons-container {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  gap: 64px;
}

/* =========================
   Services Image Banner
========================= */
.services-image-banner {
  height: 60vh;
  min-height: 420px;

  background-image: url("assets/images/softwareBuiltTheWayYouLikeIt.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  background-color: #1f6ad6;
}

/* =========================
   Services Section
========================= */
.services {
  padding: 100px 24px;
  background: #f5f7fb;
  text-align: center;
}

.services h3 {
  font-size: 2.6rem;
  color: #241e4e;
}

.service-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.card h3,
.card h4 {
  color: #2b235a;
  font-weight: 700;
}

.card p {
  color: #333;
}

/* =========================
   Service Card Title Size FIX
========================= */
.services .card h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.services .card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   Proof Section
========================= */
.proof {
  position: relative;
  padding: 120px 24px;
  background: linear-gradient(135deg, #1b163f, #241e4e);
  overflow: hidden;
}

.proof-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.proof-media {
  display: flex;
  gap: 20px;
  z-index: 3;
}

.proof-media video {
  height: 380px;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 18px;
}

.proof-content {
  z-index: 3;
}

#fireworks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   Build Types
========================= */
.build-types {
  padding: 100px 24px;
  background: linear-gradient(135deg, #f7f8fd, #eef1fb);
}

.build-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.build-item {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: 20px;
  text-align: center;

  border: 1px solid #e4e8f4;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.build-item h4 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #241e4e;
  font-weight: 700;
}

.build-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.build-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* =========================
   About Page (CENTERED)
========================= */
.about-section {
  background: linear-gradient(135deg, #0f172a, #1b163f);
  padding: 160px 24px;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* ✅ THIS centers everything */
}

.about-section h1,
.about-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-section p {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-section ul {
  list-style: none; /* remove bullets */
  padding: 0;
  margin: 32px 0;
}

.about-section li {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =========================
   Case Studies Section FIX
========================= */
.case-studies {
  padding: 100px 24px;
  background: #0f172a; /* dark slate */
  text-align: center;
}

.case-studies h1,
.case-studies h2,
.case-studies h3 {
  color: #ffffff;
}

.case-studies p {
  color: rgba(255, 255, 255, 0.85);
}

.case-studies .card {
  background: #ffffff;
}

.case-studies .card h3 {
  color: #2b235a;
}

.case-studies .card p {
  color: #333;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: linear-gradient(180deg, #241e4e, #2b235a);
  color: white;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  opacity: 0.85;
}

.footer-bottom {
  text-align: center;
  padding: 16px 24px;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* =========================
   CONTACT FORM (NEW)
========================= */

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Each form row */
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Labels */
.form-group label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #e5e7eb;
}

/* Inputs + textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* Submit button */
.contact-form .btn {
  margin-top: 10px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617;
}

.contact-form .btn:hover {
  opacity: 0.9;
}

/* =========================
   HOME: Our Services heading fix
========================= */

.services-icons-header h2 {
  color: #ffffff; /* pure white for contrast */
}

.services-icons-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   CASE STUDIES PAGE ONLY
========================= */

.case-studies {
  background: #0f172a;
  padding: 100px 20px;
  text-align: center;
}

.case-studies h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.case-studies > p {
  color: #e5e7eb;
  max-width: 900px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   CONTACT PAGE THEME
========================= */
.contact-page {
  background: #0f172a;
  padding: 120px 24px;
  text-align: center;
}

.contact-page h1 {
  color: #ffffff;
}

.contact-page > p {
  color: #e5e7eb;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

/* =========================
   CASE STUDIES PAGE THEME
========================= */
.case-studies {
  background: #0f172a;
  padding: 120px 24px;
  text-align: center;
}

.case-studies h1 {
  color: #ffffff;
}

.case-studies > p {
  color: #e5e7eb;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

/* =========================
   DARK CONTENT PAGES (Reusable)
========================= */

.page-dark {
  background: #0f172a;
  padding: 120px 24px;
  text-align: center;
}

.page-dark h1,
.page-dark h2,
.page-dark h3 {
  color: #ffffff;
}

.page-dark p,
.page-dark li {
  color: #e5e7eb;
  line-height: 1.7;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-card {
  background: #020617;
  padding: 24px;
  border-radius: 12px;
  margin: 24px auto;
  max-width: 700px;
  text-align: left;
}

.dashboard-card h3 {
  margin-bottom: 12px;
}

.dashboard-card.muted {
  opacity: 0.7;
}

/* =========================
   PROJECT INTAKE POLISH
========================= */

.project-intake {
  max-width: 720px;
  margin: 40px auto;
  padding: 40px 20px 80px;
}

/* Card container feel */
.project-intake form {
  background: rgba(2, 6, 23, 0.9);
  border-radius: 16px;
  padding: 48px 40px 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

/* Headings */
.project-intake h1 {
  text-align: center;
  margin-bottom: 16px;
}

.intake-disclaimer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
}

/* Progress bar */
.progress-container {
  height: 10px;
  background: #1e293b;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 36px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  width: 0%;
  transition: width 0.35s ease;
}

/* Question layout */
.question-step {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.question-step.active {
  display: flex;
}

/* Labels */
.question-step label {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Inputs */
.question-step input,
.question-step textarea,
.question-step select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  outline: none;
}

/* Account step helper text */
.question-step p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Controls */
.intake-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
}

.intake-controls button {
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

#prevBtn {
  background: transparent;
  color: #cbd5f5;
}

#nextBtn {
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617;
}

/* =========================
   CHAT UI
========================= */

.chat-container {
  max-width: 800px;
  margin: 32px auto;
  background: #020617;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 420px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.chat-message {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.chat-message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617;
}

.chat-message.admin {
  align-self: flex-start;
  background: #1e293b;
  color: #e5e7eb;
}

.chat-input {
  display: flex;
  gap: 12px;
}

.chat-input input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  outline: none;
}

.chat-input button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617;
}

/* =========================
   FILE UPLOADS
========================= */

.file-upload {
  margin-top: 24px;
}

.file-upload input[type="file"] {
  margin-bottom: 12px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-item {
  background: #020617;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-item span {
  opacity: 0.85;
}

.file-item a {
  color: #00c6ff;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   MILESTONE PAYMENTS
========================= */

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.milestone {
  background: #020617;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
}

.milestone-title {
  font-weight: 600;
}

.milestone-status {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
}

.status-pending {
  background: #1e293b;
  color: #cbd5f5;
}

.status-funded {
  background: #0ea5e9;
  color: #020617;
}

.status-complete {
  background: #22c55e;
  color: #020617;
}

.milestone button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(135deg, #00c6ff, #6b5cff);
  color: #020617;
}

.milestone {
  display: flex;
  justify-content: space-between;
  padding: 8px;
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.milestone-form {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.chat-container {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 16px;
}

.chat-messages {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding-right: 6px;
}

.chat-message {
  padding: 8px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
  max-width: 75%;
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-message.admin {
  background: #2563eb;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-message.client {
  background: #374151;
  color: white;
  margin-right: auto;
  border-bottom-left-radius: 4px;
}

.chat-input {
  display: flex;
  gap: 8px;
}

.chat-input input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: #111827;
  color: white;
}

.chat-input button {
  padding: 10px 18px;
  border-radius: 999px;
  background: #3b82f6;
  border: none;
  color: white;
  cursor: pointer;
}

.chat-input button:hover {
  background: #2563eb;
}

.admin-badge {
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  color: #020617;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.admin-badge:hover {
  filter: brightness(1.05);
}

/* Dashboard-only light theme */
.dashboard-page {
  background: #f5f3ff; /* light lavender */
  color: #1f2937;
  min-height: 100vh;
}

.dashboard-page .dashboard-card {
  background: #ffffff;
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.dashboard-page .dashboard-card h3 {
  color: #4c1d95;
  font-weight: 600;
}

.dashboard-page .dashboard-card p,
.dashboard-page .dashboard-card pre {
  color: #1f2937;
}

.dashboard-page .dashboard-card a {
  color: #7c3aed;
  text-decoration: none;
}

.dashboard-page .dashboard-card a:hover {
  text-decoration: underline;
}

.dashboard-page .dashboard-card button {
  background: #7c3aed;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
}

.dashboard-page .dashboard-card button:hover {
  background: #6d28d9;
}

/* Dashboard main title */
.dashboard-page h1 {
  color: #5b21b6; /* rich purple */
  font-weight: 700;
  margin-bottom: 24px;
}

/* 🌸 Dashboard Chat – Light Purple Theme */
.dashboard-page .chat-container {
  background: #f6f2ff;
  border-radius: 14px;
  padding: 16px;
}

.dashboard-page .chat-messages {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  min-height: 260px;
  color: #2d1b47;
  box-shadow: inset 0 0 0 1px #e6dcff;
}

.dashboard-page .chat-input {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.dashboard-page #chatInput {
  flex: 1;
  background: #f1ebff;
  border: 1px solid #d7c9ff;
  border-radius: 999px;
  padding: 12px 16px;
  color: #2d1b47;
  font-size: 14px;
}

.dashboard-page #chatInput::placeholder {
  color: #7a63b8;
}

.dashboard-page #sendBtn {
  background: linear-gradient(135deg, #7c5cff, #9f7cff);
  border: none;
  color: white;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-page #sendBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
   ADMIN PAGE — LIGHT THEME
   ========================= */

body.admin-page {
  background: #f3e8ff;
  color: #2e1a47;
}

/* Main content */
.admin-page .admin-main {
  padding: 3rem 1.5rem;
}

/* Dashboard cards */
.admin-page .dashboard-card {
  background: #ffffff;
  color: #2e1a47;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Headings */
.admin-page h1,
.admin-page h2,
.admin-page h3,
.admin-page h4 {
  color: #3b1c6e;
}

/* Inputs & selects */
.admin-page input,
.admin-page select,
.admin-page textarea {
  background: #ffffff;
  color: #2e1a47;
  border: 1px solid #d6c8f5;
  border-radius: 8px;
  padding: 8px 10px;
}

/* Buttons */
.admin-page button {
  background: #c4a7ff;
  color: #2e1a47;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.admin-page button:hover {
  background: #b392f0;
}

/* Chat */
.admin-page .chat-container {
  background: #faf7ff;
  border-radius: 10px;
  padding: 10px;
}

.admin-page .chat-message.admin {
  background: #d9c7ff;
  color: #2e1a47;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.admin-page .chat-message.client {
  background: #ffffff;
  border: 1px solid #e1d7f8;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
}

/* =========================
   ADMIN PAGE TEXT FIX
   ========================= */

.admin-page,
.admin-page * {
  color: #2e1a47 !important;
}

/* Headings stronger */
.admin-page h1,
.admin-page h2,
.admin-page h3,
.admin-page h4 {
  color: #3b1c6e !important;
}

/* Muted text that was invisible */
.admin-page p,
.admin-page span,
.admin-page label {
  opacity: 1 !important;
}

/* Nav text (Dashboard / Logout) */
.admin-page .main-nav a {
  color: #ffffff !important;
}

/* Fix selects & inputs text */
.admin-page input,
.admin-page select,
.admin-page textarea {
  color: #2e1a47 !important;
}

/* Chat messages */
.admin-page .chat-message {
  color: #2e1a47 !important;
}

/* Status dropdown */
.admin-page .project-status {
  color: #2e1a47 !important;
}

/* Admin project collapse behavior */
.admin-page .admin-project-details {
  display: none;
}

.admin-page .admin-project-details.open {
  display: block;
}

/* ===== ADMIN PROJECT COLLAPSE ===== */

/* Hide project body by default */
.admin-project-body {
  display: none;
}

/* Show when open */
.admin-project-body.open {
  display: block;
}

/* =========================
   MOBILE NAV — STEP 2
========================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* =========================
   MOBILE NAV — PHASE 2 (Slide Panel)
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #241e4e, #2b235a);
  padding: 120px 24px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .nav-links a {
  font-size: 1.2rem;
  color: white;
}
/* Show mobile menu when active */
.mobile-menu.open {
  right: 0;
}

/* =========================
   MOBILE NAV — FINAL (CLEAN)
   Logo centered, hamburger underneath left
========================= */
@media (max-width: 768px) {
  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: block;
    align-self: flex-start;
    margin-top: 8px;
    margin-left: 16px;
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }
}

/* =========================
   FOOTER NAV — MOBILE FIX
========================= */
@media (max-width: 768px) {
  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .footer-nav a {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .footer-container {
    padding: 24px 16px;
  }
}

/* =========================
   PROOF VIDEOS — MOBILE STACK FIX
========================= */
@media (max-width: 768px) {
  .proof-media {
    flex-direction: column;
    align-items: center;
  }

  .proof-media video {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

/* =========================
   BUILD TYPES — MOBILE STACK FIX
========================= */
@media (max-width: 768px) {
  .build-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .build-item {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* =========================
   DESKTOP NAV — FORCE VISIBLE (FINAL OVERRIDE)
========================= */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-icon {
  font-size: 2.8rem;
  color: #00c6ff;
  margin-bottom: 12px;
  display: block;
}

.service-card {
  text-align: center;
}

.service-icon {
  font-size: 2.4rem;
  color: #6b5cff;
  margin-bottom: 14px;
  display: block;
}

.service-icon {
  font-size: 3rem;
  color: #6b5cff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
