.legal-page {
  background: var(--bg-primary);
  min-height: 100vh;
  padding-top: var(--nav-height);
  color: var(--text-primary);
}

.legal-hero {
  padding: 6rem 10% 4rem;
  background: radial-gradient(circle at 50% 0%, rgba(0, 163, 255, 0.05) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.legal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero-icon {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.legal-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.legal-content {
  padding: 5rem 10%;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  color: var(--text-primary);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-container h2:first-child {
  margin-top: 0;
}

.legal-container p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.legal-container ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-container li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.legal-container li strong {
  color: var(--text-primary);
  font-weight: 500;
}

.legal-container a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.legal-container a:hover {
  opacity: 0.8;
}

.legal-footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-footer svg {
  color: var(--accent-blue);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 4rem 5% 3rem;
  }
  .legal-content {
    padding: 3rem 5%;
  }
}
/* ——— Admin shell ——— */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
}

.admin-sidebar {
  width: 280px;
  min-height: 100vh;
  border-right: 1px solid var(--border-subtle);
  padding: 0;
  display: flex;
  flex-direction: column;
  background: rgba(10, 12, 16, 0.95);
  z-index: 40;
  flex-shrink: 0;
}

.admin-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  padding: 1.75rem 1.25rem;
}

.admin-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}

.admin-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.25), rgba(0, 86, 255, 0.15));
  border: 1px solid rgba(0, 163, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
}

.admin-logo-text .admin-logo-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.admin-logo-text .admin-logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.45;
  margin-top: 0.15rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.admin-nav-item.active {
  background: rgba(0, 163, 255, 0.1);
  color: var(--accent-blue);
  border-color: rgba(0, 163, 255, 0.25);
}

.admin-nav-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.admin-sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.admin-env-pill {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.35;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.5rem;
}

.admin-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #07080c 100%);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 12, 16, 0.6);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.admin-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.admin-breadcrumb {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.admin-breadcrumb-path {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.4;
}

.admin-breadcrumb-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-topbar-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.admin-topbar-actions a:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.admin-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.admin-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.admin-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

@media (min-width: 1024px) {
  .admin-inner {
    padding: 2.5rem 2.5rem 4rem;
  }
}

.admin-page-header {
  margin-bottom: 2rem;
}

.admin-page-header h1 {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.admin-page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

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

  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-backdrop {
    display: block;
  }
}

/* ——— Dashboard ——— */
.admin-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .admin-grid-layout {
    grid-template-columns: 1fr;
  }
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card.glass:hover {
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analytics-card {
  height: 100%;
  position: relative;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 3s ease-out forwards;
}

@keyframes drawChart {
  to {
    stroke-dashoffset: 0;
  }
}

.lead-row {
  transition: var(--transition-smooth);
}

.lead-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ——— Data table ——— */
.data-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.data-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.status-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}

.status-new {
  background: rgba(0, 163, 255, 0.2);
  color: #00a3ff;
}

.status-contacted {
  background: rgba(0, 255, 133, 0.2);
  color: #00ff85;
}

/* ——— CMS two-column ——— */
.grid-2-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 2rem;
  align-items: start;
}

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

.cms-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-search {
  flex: 1;
  min-width: 160px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  font-size: 0.9rem;
}

.admin-search:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.15);
}

.cms-list-panel {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 220px);
}

.cms-list-panel-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.5;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cms-list-scroll {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cms-list-scroll::-webkit-scrollbar {
  width: 6px;
}

.cms-list-scroll::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 10px;
}

.cms-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
}

.cms-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.cms-card.active {
  border-color: rgba(0, 163, 255, 0.5);
  background: rgba(0, 163, 255, 0.08);
}

.cms-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.cms-card-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.cms-card-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cms-card-meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

.cms-thumb {
  width: 64px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.cms-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-panel {
  min-height: 320px;
}

.editor-panel .glass {
  border-radius: var(--radius-lg);
}

.editor-card {
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.editor-card.editor-sticky {
  position: sticky;
  top: 1rem;
}

.editor-card-highlight {
  border-color: rgba(0, 163, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.12);
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.editor-header h2 {
  font-size: 1.25rem;
  margin: 0;
}

.editor-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  padding: 3rem 2rem;
  opacity: 0.5;
  border-radius: var(--radius-lg);
}

.editor-empty-icon {
  margin-bottom: 1.25rem;
  color: var(--accent-blue);
  opacity: 0.6;
}

/* ——— Forms ——— */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: white;
  font-family: inherit;
  font-size: 0.92rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* Admin-only: do not span extra columns like contact form */
.admin-inner .form-grid .form-group {
  grid-column: auto;
}

.admin-input {
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid var(--border-subtle) !important;
  font-size: 14px !important;
}

.admin-input:focus {
  border-color: var(--accent-blue) !important;
  background: rgba(0, 163, 255, 0.06) !important;
}

.form-sections {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.features-edit-list {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.features-edit-list::-webkit-scrollbar {
  width: 4px;
}

.features-edit-list::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 10px;
}

.feature-edit-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-edit-row .admin-input {
  flex: 1;
}

.status-pill {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 800;
}

.status-pill.live {
  background: rgba(0, 255, 133, 0.12);
  color: #00ff85;
  border: 1px solid rgba(0, 255, 133, 0.35);
}

.status-pill.draft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

/* ——— Buttons ——— */
.btn-icon-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 100, 100, 0.75);
  transition: var(--transition-smooth);
}

.btn-icon-danger:hover {
  background: rgba(255, 60, 60, 0.12);
  border-color: rgba(255, 60, 60, 0.35);
  color: #ff6b6b;
}

.admin-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 133, 0.12);
  border: 1px solid rgba(0, 255, 133, 0.35);
  color: #b8ffd9;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: toast-in 0.35s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.confirm-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: toast-in 0.2s ease;
}

.confirm-modal {
  width: 100%;
  max-width: 400px;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.confirm-modal h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.confirm-modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.btn-danger {
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.45);
  color: #ff9a9a;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
}

.btn-danger:hover {
  background: rgba(255, 60, 60, 0.25);
}

.pipeline-steps .pipeline-step:last-child {
  margin-bottom: 0 !important;
}

.animate-spin-slow {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.scale-in-center {
  animation: scale-in-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes scale-in-center {
  0% {
    transform: scale(0.97);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ——— Login (admin) ——— */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 163, 255, 0.12), transparent),
    var(--bg-primary);
}

.admin-login-card {
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.admin-login-card .form-group input {
  text-align: left;
}

.filter-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.08);
}

.hidden-lg {
  display: flex;
}

@media (min-width: 1024px) {
  .hidden-lg {
    display: none;
  }
}

.img-preview-lg {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.35);
  margin-top: 0.5rem;
}

.img-preview-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mono-muted {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  opacity: 0.45;
  word-break: break-all;
}

/* ——— Email Manager ——— */
.em-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.em-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.em-tab:hover {
  color: var(--text-main);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.em-tab.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.em-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(10, 12, 16, 0.4);
  max-width: 800px;
}

.em-card-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.em-icon {
  color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.1);
  padding: 8px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 163, 255, 0.2);
  flex-shrink: 0;
}

.em-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.em-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.em-alert {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.6;
}

.em-alert code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--accent-blue);
}

.em-alert-info {
  background: rgba(0, 163, 255, 0.08);
  border: 1px solid rgba(0, 163, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.em-alert-icon {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.em-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.em-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.em-field-group {
  display: flex;
  flex-direction: column;
}

.em-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.em-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.em-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: white;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.em-textarea {
  resize: vertical;
  min-height: 100px;
}

.em-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.12);
  background: rgba(0, 163, 255, 0.04);
}

.em-input[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}

.em-toggle-btn {
  position: absolute;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: var(--transition-smooth);
}

.em-toggle-btn:hover {
  color: white;
}

.em-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.em-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.em-switch {
  width: 40px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.em-switch-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.em-switch.active {
  background: var(--accent-blue);
}

.em-switch.active .em-switch-thumb {
  left: 21px;
}

.em-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.em-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
}

.em-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.em-btn-test {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  color: white;
  transition: var(--transition-smooth);
}

.em-btn-test:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.em-result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.em-result-ok {
  background: rgba(0, 255, 133, 0.08);
  border: 1px solid rgba(0, 255, 133, 0.25);
  color: #00ff85;
}

.em-result-err {
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff6b6b;
}

.spin {
  animation: spin 1s linear infinite;
}
/* App.css */

.app {
  padding-top: 80px; /* Navbar height */
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.8;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-blue);
}

/* Hero */
/* Active Frame */
.active-frame-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.frame-line {
  position: absolute;
  background: linear-gradient(90deg, var(--accent-blue), transparent, var(--accent-blue));
  background-size: 200% 100%;
  animation: frame-pulse 4s linear infinite;
}

.frame-top, .frame-bottom {
  height: 2px;
  width: 100%;
}

.frame-top { top: 0; }
.frame-bottom { bottom: 0; }

.frame-left, .frame-right {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-blue), transparent, var(--accent-blue));
  background-size: 100% 200%;
}

.frame-left { left: 0; }
.frame-right { right: 0; }

@keyframes frame-pulse {
  0% { opacity: 0.3; background-position: 0% 0%; }
  50% { opacity: 1; background-position: 100% 100%; }
  100% { opacity: 0.3; background-position: 0% 0%; }
}

/* Parallax Shapes */
.parallax-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05), transparent);
  border: 1px solid rgba(0, 163, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -5%;
}

.shape-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  background: linear-gradient(135deg, rgba(0, 86, 255, 0.05), transparent);
}

.shape-3 {
  width: 500px;
  height: 500px;
  top: 80%;
  left: 30%;
  opacity: 0.5;
}

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Interactive BG */
.interactive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

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

.btn-secondary {
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: var(--transition-smooth);
}

.glow-effect {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Asymmetric Grid */
.services-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 2rem;
}

.service-card.size-large,
.service-card.size-medium,
.service-card.size-small {
  grid-column: span 1;
  grid-row: auto;
}

.services-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 1.5rem;
}

.service-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card:hover {
  border-color: var(--accent-blue);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 20px rgba(0, 163, 255, 0.2);
  --ease-luxury: cubic-bezier(0.83, 0, 0.17, 1);
}

/* App Production */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.app-features {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.app-features li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.8rem;
  background: rgba(0, 163, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 163, 255, 0.2);
}

.iphone-mockup {
  width: 300px;
  height: 600px;
  border-radius: 40px;
  padding: 12px;
  margin: 0 auto;
  border: 4px solid var(--border-subtle);
  background: #000;
  position: relative;
  z-index: 2;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #050505;
}

.app-ui-preview {
  padding: 20px;
}

.ui-header {
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.ui-chart {
  height: 150px;
  background: linear-gradient(to top, rgba(0, 163, 255, 0.2), transparent);
  border-radius: 15px;
  margin-bottom: 20px;
}

.ui-cards div {
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  margin-bottom: 15px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

/* Footer Bottom Enhancement */
.acknowledgement {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}

.copyright {
  font-size: 0.9rem;
}

/* Services Page Pillars */
.services-pillars {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.pillars-grid-subset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pillar-card {
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.pillar-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 1rem 0;
}

.pillar-list {
  margin-top: 2rem;
}

.pillar-list li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.pillar-visual {
  font-size: 5rem;
  opacity: 0.1;
}

/* About Page Timeline */
.about-hero {
  text-align: center;
  margin-bottom: 8rem;
}

.about-mission {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--text-muted);
}

.methodology-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  width: 50%;
  position: relative;
}

.timeline-item.left { left: 0; padding-right: 3rem; text-align: right; }
.timeline-item.right { left: 50%; padding-left: 3rem; }

.timeline-content {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

/* Accelerator Page */
.accelerator-hero {
  padding: 6rem;
  text-align: center;
}

.pitch {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  margin: 2rem 0;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.inclusion-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

/* Responsive updates for asymmetric grid */
@media (min-width: 769px) {
  .services-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 2rem;
  }

  .service-card.size-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .service-card.size-medium {
    grid-column: span 2;
  }

  .service-card.size-small {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .services-pillars { gap: 2rem; }
  .pillars-grid-subset { grid-template-columns: 1fr; }
  .methodology-timeline::before { left: 0; }
  .timeline-item { width: 100%; left: 0 !important; padding: 0 0 0 2rem !important; text-align: left !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .accelerator-hero { padding: 3rem 1.5rem; }
  
  .iphone-mockup {
    width: 260px;
    height: 520px;
  }
  
  .app-visual {
    margin-top: 3rem;
  }
}

.service-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.service-card.featured {
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-blue);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 2.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.bullet {
  color: var(--accent-blue);
  margin-right: 0.5rem;
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
}

.enterprise-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-top: 4rem;
}

/* Advantage */
.advantage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
}

.advantage-icon {
  font-size: 2rem;
}

.advantage-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.advantage-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.advantage-visual {
  height: 400px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
}

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

.stat-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}

.portfolio-img-wrapper {
  position: relative;
  height: 100%;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category {
  font-size: 0.8rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: #07080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.legal-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-muted);
}

.footer-links ul li a:hover {
  color: var(--accent-blue);
}

.footer-email {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .advantage-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 3rem;
  }
  
  .advantage-visual {
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .enterprise-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

section.fade-in {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) { transition-delay: 0.3s; }

/* Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gap-8 { gap: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-20 { margin-top: 5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.sticky { position: sticky; }
.top-10 { top: 2.5rem; }

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

.min-height-screen { min-height: 100vh; }
.max-width-400 { max-width: 400px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   HOME: SERVICES GRID (4-col, 2-col mobile)
   ============================================= */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* =============================================
   PORTFOLIO EXPANDED
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Portfolio Filter Buttons */
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.08);
}

/* Case Study page */
.case-study-page h1 {
  font-family: var(--font-heading);
}

.project-hero-viz {
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0, 163, 255, 0.2);
}

/* =============================================
   FOOTER V2
   ============================================= */
.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

@media (max-width: 1200px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-grid-v2 { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-main);
}

.footer-contact-col .footer-contact-items {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
}

/* Partner Trust Strip */
.footer-partner-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  background: rgba(255,255,255,0.02);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
}

/* =============================================
   SERVICES PAGE: PROCESS + TECH CAP GRIDS
   ============================================= */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.07;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.process-step-icon {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.process-step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tech-cap-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.tech-cap-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-cap-card ul {
  display: grid;
  gap: 0.6rem;
}

.tech-cap-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* =============================================
   WHITE LABEL PAGE
   ============================================= */
.white-label-page .section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wl-hero {
  padding-top: 8rem;
}

.wl-trust-bar {
  border-radius: 100px;
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.wl-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wl-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.wl-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.tier-card.featured {
  border-color: rgba(0, 163, 255, 0.45);
  background: rgba(0, 163, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(0, 163, 255, 0.12),
    0 28px 70px -28px rgba(0, 163, 255, 0.45);
}

@media (min-width: 900px) {
  .tier-card.featured {
    transform: translateY(-4px);
  }
}

.wl-tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.wl-tech-aside {
  position: sticky;
  top: 120px;
}

@media (max-width: 900px) {
  .wl-tech-split {
    grid-template-columns: 1fr;
  }

  .wl-tech-aside {
    position: static;
  }
}

.text-accent-blue {
  color: var(--accent-blue);
}

/* Responsive utilities */
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.justify-center { justify-content: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.inline { display: inline; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.gap-8 { gap: 2rem; }
.items-start { align-items: flex-start; }
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }

@media (max-width: 900px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

:root {
  --bg-primary: #0A0C10;
  --bg-secondary: #0F1218;
  --bg-glass: rgba(15, 18, 24, 0.8);
  --accent-blue: #00A3FF;
  --accent-blue-glow: rgba(0, 163, 255, 0.4);
  --text-main: #FFFFFF;
  --text-muted: #8E9AAF;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --gradient-blue: linear-gradient(135deg, #00A3FF 0%, #0056FF 100%);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --radius-lg: 16px;
  --radius-md: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 20px rgba(0, 163, 255, 0.2);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 100px 0;
}

.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-blue);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 163, 255, 0.4);
}

/* Hero Styles */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
}

.play-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.hero-visual-wrapper {
  position: relative;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 163, 255, 0.15);
  top: -20%;
  right: -10%;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(123, 97, 255, 0.1);
  bottom: -10%;
  left: -10%;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.glow-effect {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.floating-badge-1 { top: 10%; left: -20px; }
.floating-badge-2 { top: 40%; right: -30px; }
.floating-badge-3 { bottom: 15%; left: 10%; }

.badge-icon {
  color: var(--accent-blue);
}

.badge-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Styles */
.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Home Services */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.home-service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-top: 1rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.process-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 163, 255, 0.1);
  font-family: var(--font-heading);
  line-height: 1;
}

.process-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-blue);
  transition: width 0.5s ease;
}

.process-card:hover .process-line {
  width: 100%;
}

/* Tech Stack */
.tech-section {
  background: var(--bg-secondary);
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-desc {
  margin: 1.5rem 0 2rem;
  line-height: 1.7;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tech-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.tech-name {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tech-category {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA Section */
.home-cta-section {
  padding-bottom: 100px;
}

.cta-inner {
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-desc {
  max-width: 500px;
  margin: 1rem auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Advantage Section */
.advantage-list {
  display: grid;
  gap: 1.5rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-blue);
  flex-shrink: 0;
}

.advantage-text h4 {
  margin-bottom: 0.5rem;
}

.advantage-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.advantage-visual {
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.advantage-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  filter: blur(40px);
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portfolio-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-overlay.visible {
  opacity: 1;
}

.portfolio-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
  transform: translateY(0);
}

.portfolio-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0.75rem 0;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.portfolio-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
}

.portfolio-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.portfolio-info {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-category-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-year {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer Styles */
.footer-newsletter {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.newsletter-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
}

.newsletter-input-wrapper input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border-radius: var(--radius-md);
  color: white;
  min-width: 250px;
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.8rem;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.footer-email {
  color: var(--accent-blue) !important;
  font-weight: 600;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.acknowledgement {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.form-group.focused .form-icon {
  color: var(--accent-blue);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width 0.3s ease;
}

.form-group.focused .form-line {
  width: 100%;
}

.form-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.success-message {
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 255, 133, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00FF85;
}

.success-message h3 {
  margin-bottom: 0.5rem;
}

.success-btn {
  margin-top: 1.5rem;
  display: inline-flex;
}

/* Contact Page */
.contact-hero {
  padding: 80px 0;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contact-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.contact-info-card h3 {
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-top: 0.5rem;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-desc {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step-num {
  width: 40px;
  height: 40px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-map-section {
  padding-bottom: 100px;
}

.contact-map-wrapper {
  padding: 3rem;
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
}

.map-content h3 {
  margin-bottom: 0.5rem;
}

.map-dots {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 2rem;
}

.map-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dot-pulse {
  width: 12px;
  height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dot-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About Page */
.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero .hero-badge {
  margin-bottom: 1rem;
}

.about-mission {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.about-stat-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.methodology-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}

.timeline-content {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 350px;
}

.timeline-year {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent-blue);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.methodology-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.methodology-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 163, 255, 0.1);
}

.methodology-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-specialty {
  font-size: 0.9rem;
}

.about-cta {
  padding: 4rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-cta-icon {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.about-cta .cta-desc {
  max-width: 500px;
  margin: 1rem auto 2rem;
}

/* Accelerator Page */
.acc-hero {
  padding: 80px 0;
}

.acc-pitch {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.acc-price-wrapper {
  display: inline-block;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  max-width: 400px;
}

.acc-price-inner {
  text-align: center;
  margin-bottom: 1.5rem;
}

.acc-price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.acc-price-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.acc-price-currency {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.acc-price-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.acc-price-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.acc-hero-cta {
  display: inline-flex;
  gap: 0.5rem;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.inclusion-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.inclusion-card.featured {
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-blue);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.inclusion-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.inclusion-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inclusion-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.acc-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acc-timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.acc-timeline-day {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.acc-timeline-day span {
  font-weight: 600;
  font-size: 0.9rem;
}

.acc-timeline-content {
  flex: 1;
}

.acc-timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-connector {
  position: absolute;
  left: 80px;
  bottom: -1rem;
  width: 2px;
  height: 1rem;
  background: var(--border-subtle);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.guarantee-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.guarantee-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  cursor: pointer;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.05rem;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

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

.faq-answer.visible {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
}

.acc-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.acc-cta-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.acc-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.acc-cta-stat span:first-child {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Services Page */
.services-hero {
  padding: 80px 0;
  text-align: center;
}

.page-header {
  max-width: 700px;
  margin: 0 auto;
}

.services-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card-glow.active {
  opacity: 1;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.process-step-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0, 163, 255, 0.1);
  margin-bottom: 0.5rem;
}

.process-step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.process-step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tech-cap-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.tech-cap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.tech-cap-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-cap-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-content .section-badge {
  margin-bottom: 0.5rem;
}

.app-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-features li {
  display: flex;
  gap: 1rem;
}

.app-features .feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 163, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.app-features h4 {
  margin-bottom: 0.25rem;
}

.app-features p {
  font-size: 0.9rem;
}

.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  border: 4px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.iphone-notch {
  width: 40%;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
}

.iphone-screen {
  width: 100%;
  height: calc(100% - 30px);
  border-radius: 30px;
  background: #0a0a0a;
  overflow: hidden;
  padding: 1rem;
}

.app-ui-preview .ui-header {
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.app-ui-preview .ui-chart {
  height: 80px;
  background: linear-gradient(to top, rgba(0, 163, 255, 0.2), transparent);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0.5rem;
}

.chart-bar {
  width: 12%;
  background: var(--gradient-blue);
  border-radius: 4px 4px 0 0;
}

.ui-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ui-card-item {
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 500;
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-blue);
}

.admin-content {
  flex: 1;
  padding: 3rem;
  overflow-y: auto;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.data-table-wrapper {
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 1rem;
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-new {
  background: rgba(0, 163, 255, 0.2);
  color: var(--accent-blue);
}

.status-contacted {
  background: rgba(0, 255, 133, 0.2);
  color: #00FF85;
}

.services-list {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.services-list h2 {
  margin-bottom: 1.5rem;
}

.editor-panel .glass {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  max-width: 400px;
  width: 100%;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

/* 404 Page */
.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.notfound-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 163, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.notfound-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.notfound-code {
  font-size: 8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

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

.notfound-desc {
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.notfound-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .advantage-grid, .tech-layout, 
  .contact-form-layout, .app-grid, .acc-cta-layout {
    grid-template-columns: 1fr;
  }
  
  .services-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps-grid, .tech-capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-asymmetric-grid,
  .process-steps-grid,
  .tech-capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .methodology-timeline::before {
    display: none;
  }
  
  .timeline-item {
    padding: 0 !important;
    justify-content: flex-start !important;
  }
  
  .timeline-dot {
    display: none;
  }
  
  .iphone-mockup {
    width: 240px;
    height: 480px;
  }
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 1rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

.mobile-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: rgba(0, 163, 255, 0.1);
  color: var(--accent-blue);
}

.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

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

/* Footer booking */
.footer-book-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: clamp(1.75rem, 2vw, 2.4rem);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 10% 10%, rgba(0,163,255,0.06), transparent 35%),
              radial-gradient(circle at 80% 20%, rgba(123,97,255,0.05), transparent 35%),
              rgba(255,255,255,0.04);
}

.footer-book-info h3 {
  line-height: 1.2;
}

.footer-book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-book-tags .tag {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-book-tags .tag.active,
.footer-book-tags .tag:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px var(--accent-blue);
  color: var(--accent-blue);
}

.footer-book-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-book-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}

.footer-book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.footer-book-form input,
.footer-book-form select,
.footer-book-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-main);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}

.footer-book-form textarea {
  resize: vertical;
}

.footer-book .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.success-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* =============================================
   UTILITY CLASSES (Tailwind Parity)
   ============================================= */

/* Layout */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.hidden { display: none; }
.inline { display: inline; }
.shrink-0 { flex-shrink: 0; }

/* Spacing */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }

/* Typography */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-6xl { font-size: 3.75rem; }
.font-bold { font-weight: 700; }
.font-mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tighter { letter-spacing: -0.05em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Colors & Helpers */
.text-accent-blue { color: var(--accent-blue); }
.text-muted { color: var(--text-muted); }
.opacity-10 { opacity: 0.1; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-black\/20 { background: rgba(0, 0, 0, 0.2); }
.bg-black\/40 { background: rgba(0, 0, 0, 0.4); }
.border-subtle { border: 1px solid var(--border-subtle); }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-3xl { border-radius: 24px; }
.overflow-hidden { overflow: hidden; }
.aspect-video { aspect-ratio: 16 / 9; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* =============================================
   COMPONENTS & SPECIALIZED STYLES
   ============================================= */

/* Success States */
.success-message {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon-wrapper {
  color: #00FF85;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.success-btn {
  margin-top: 2rem;
}

/* Forms Utility */
.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.form-group.focused .form-line,
.form-group.has-value .form-line {
  width: 100%;
}

.form-icon.textarea-icon {
  align-self: flex-start;
  margin-top: 1rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}

/* White Label Page Grids */
.wl-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .wl-use-cases-grid {
    grid-template-columns: 1fr;
  }
}

.wl-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 163, 255, 0.4);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.faq-chevron {
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent-blue);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-answer.visible {
  height: auto;
  padding: 0 2rem 2rem;
  opacity: 1;
}

/* Admin Dashboard Specifics */
.admin-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.em-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  gap: 2rem;
}

.em-tab {
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all 0.3s ease;
}

.em-tab.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

/* Animations */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
