:root {
  --bg: #07111f;
  --bg-soft: #0d1b2a;
  --panel: #101f33;
  --panel-alt: #152b42;
  --card: rgba(17, 27, 40, 0.9);
  --text: #ecf2ff;
  --muted: #a6b4c6;
  --line: rgba(161, 176, 196, 0.18);
  --accent: #2f8cff;
  --accent-2: #7cf1d4;
  --success: #76d7b2;
  --shadow: 0 30px 60px rgba(8, 16, 30, 0.45);
  --radius: 22px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(47, 140, 255, 0.14), transparent 40%),
    radial-gradient(circle at 90% 12%, rgba(60, 255, 150, 0.1), transparent 42%),
    radial-gradient(circle at 50% 105%, rgba(255, 35, 60, 0.12), transparent 50%),
    linear-gradient(180deg, #05070a 0%, #080a0f 55%, #05070a 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}

/* ── Backgrounds: each page gets ONE distinct treatment, colors never mixed together ── */

/* Home — plain black, no color */
body.page-home {
  background: linear-gradient(180deg, #030303 0%, #060606 50%, #020202 100%);
  background-attachment: fixed;
}

/* About — blue neon only */
body.page-about {
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 140, 255, 0.18), transparent 48%),
    radial-gradient(circle at 92% 90%, rgba(47, 140, 255, 0.08), transparent 45%),
    linear-gradient(180deg, #05070d 0%, #070b16 55%, #05070d 100%);
  background-attachment: fixed;
}

/* Services — green neon only */
body.page-services {
  background:
    radial-gradient(circle at 88% 5%, rgba(60, 255, 150, 0.16), transparent 46%),
    radial-gradient(circle at 8% 92%, rgba(60, 255, 150, 0.07), transparent 45%),
    linear-gradient(180deg, #040a07 0%, #061410 55%, #040a07 100%);
  background-attachment: fixed;
}

/* Work — red neon only */
body.page-work {
  background:
    radial-gradient(circle at 15% 95%, rgba(255, 35, 60, 0.16), transparent 46%),
    radial-gradient(circle at 90% 8%, rgba(255, 35, 60, 0.07), transparent 45%),
    linear-gradient(180deg, #0a0505 0%, #150708 55%, #0a0505 100%);
  background-attachment: fixed;
}

/* Process — plain black again, different tone/vignette than Home */
body.page-process {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 55%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #030303 100%);
  background-attachment: fixed;
}

/* Contact — the one page where red, blue and green neon appear together */
body.page-contact {
  background:
    radial-gradient(circle at 15% 10%, rgba(47, 140, 255, 0.13), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(60, 255, 150, 0.12), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 35, 60, 0.12), transparent 46%),
    linear-gradient(180deg, #05070a 0%, #080b0e 55%, #05070a 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.section-header h2 {
  font-size: clamp(3rem, 5.5vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  max-width: 100%;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text > span:first-child {
  font-size: 1rem;
}

.brand-owner {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.brand-mark {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(47, 140, 255, 0.4);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  color: #062516;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
}

.nav-highlight {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  background: rgba(47, 140, 255, 0.16);
  border: 1px solid rgba(47, 140, 255, 0.4);
  transition: transform 0.28s cubic-bezier(0.22, 0.85, 0.32, 1),
    width 0.28s cubic-bezier(0.22, 0.85, 0.32, 1), height 0.28s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #4ea1ff);
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(47, 140, 255, 0.35);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 140, 255, 0.26), transparent 32%),
    radial-gradient(circle at bottom left, rgba(124, 241, 212, 0.12), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 1.2rem;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-btn,
.secondary-btn,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn,
.cta-link {
  background: linear-gradient(135deg, var(--accent), #4ea1ff);
  color: white;
  box-shadow: 0 18px 28px rgba(47, 140, 255, 0.25);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--line);
}

.whatsapp-btn {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  background: #2fe07a;
  border-color: #2fe07a;
  color: white;
}

.primary-btn:hover,
.secondary-btn:hover,
.cta-link:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible,
.cta-link:focus-visible {
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.dashboard-card {
  width: min(100%, 520px);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(12, 22, 35, 0.88);
  box-shadow: var(--shadow);
}

.preview-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
  box-sizing: border-box;
  justify-content: center;
  padding: 1.1rem 1.8rem;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.18);
}

.preview-whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.32);
}

.preview-whatsapp strong {
  color: #8ff0c0;
  font-size: 1.45rem;
}

.preview-whatsapp .whatsapp-mark {
  width: 54px;
  height: 54px;
  font-size: 0.9rem;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dots span:nth-child(1) { background: #ff5f57; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #28c840; }

.stat-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0;
}

.stat-box {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(47, 140, 255, 0.5);
  box-shadow: 0 0 24px rgba(47, 140, 255, 0.2);
}

.stat-box strong {
  display: block;
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.85rem;
}

.mockup {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(24, 39, 58, 0.75), rgba(11, 18, 30, 0.9));
  border-radius: 22px;
  padding: 1rem;
}

.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.7rem;
  border-bottom: 1px solid rgba(47, 140, 255, 0.6);
  box-shadow: 0 1px 10px rgba(47, 140, 255, 0.55), 0 1px 22px rgba(47, 140, 255, 0.3);
  color: var(--muted);
  font-size: 0.8rem;
}

.mockup-surface {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
}

.widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(47, 140, 255, 0.18);
  border: 1px solid rgba(47, 140, 255, 0.25);
  border-radius: 999px;
  min-height: 28px;
  padding: 0.2rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.bar-graph {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  align-items: end;
  height: 88px;
}

.bar-graph span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--accent), #5dd0ff);
}

.bar-graph span:nth-child(1) { height: 35%; }
.bar-graph span:nth-child(2) { height: 52%; }
.bar-graph span:nth-child(3) { height: 72%; }
.bar-graph span:nth-child(4) { height: 100%; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(7, 17, 31, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(118, 215, 178, 0.55);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 25px 60px rgba(7, 17, 31, 0.18), 0 0 0 1px rgba(118, 215, 178, 0.3),
    0 0 32px rgba(118, 215, 178, 0.2);
}

.card:hover .value-icon {
  transform: scale(1.12) rotate(-4deg);
  border-color: rgba(118, 215, 178, 0.5);
}

.value-icon {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(47, 140, 255, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(47, 140, 255, 0.35);
}

.price-card .tag {
  align-self: flex-start;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(124, 241, 212, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(124, 241, 212, 0.2);
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.price-card h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
}

.price {
  margin: 1rem 0 1.2rem;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price small {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.price-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.6rem;
}

.price-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.portfolio-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.meeting-cta-card {
  align-self: center;
  min-height: 250px;
  padding: 2.6rem;
  border: 1px solid rgba(118, 215, 178, 0.4);
  border-radius: 24px;
  background: rgba(17, 54, 53, 0.42);
  box-shadow: 0 0 38px rgba(50, 220, 149, 0.24), inset 0 0 30px rgba(50, 220, 149, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.meeting-cta-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(118, 215, 178, 0.65);
  box-shadow: 0 0 48px rgba(50, 220, 149, 0.34), inset 0 0 30px rgba(50, 220, 149, 0.1);
}

.contact-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
}

.meeting-cta-card h3 {
  margin: 0.7rem 0 0.8rem;
  font-size: 1.8rem;
}

.meeting-cta-card p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.meeting-cta-button {
  background: #25d366;
  border-color: #25d366;
  color: #062516;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.55);
}

.meeting-cta-button:hover {
  background: #5be58b;
  border-color: #5be58b;
  color: #062516;
  box-shadow: 0 0 36px rgba(37, 211, 102, 0.7);
}

.meeting-cta-hint {
  margin-top: 0.7rem;
  text-align: left;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.meeting-cta-hint:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
}

.thumb {
  min-height: 240px;
  border-radius: 22px 22px 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  background: rgba(9, 17, 28, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.browser-window {
  width: 100%;
  background: rgba(6, 16, 28, 0.96);
  border: 1px solid rgba(168, 181, 200, 0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(3, 9, 17, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-item:hover .browser-window {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(27, 66, 108, 0.32);
  border-color: rgba(92, 164, 255, 0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: rgba(18, 28, 41, 0.9);
  border-bottom: 1px solid rgba(170, 185, 204, 0.12);
}

.browser-dot {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2f; }
.browser-dot.green { background: #28c840; }

.browser-screen {
  padding: 0.9rem;
  min-height: 180px;
  background: linear-gradient(180deg, rgba(12, 23, 36, 0.96), rgba(18, 30, 42, 0.92));
}

.portfolio-image {
  display: block;
  width: 100%;
  margin-bottom: 0.9rem;
  object-fit: contain;
  border-radius: 12px;
}

.portfolio-logo-image {
  width: 110px;
  height: 110px;
  margin-right: auto;
  margin-left: auto;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.portfolio-profile-image {
  width: 110px;
  height: 110px;
  margin-right: auto;
  margin-left: auto;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #f0d8d5;
  object-fit: contain;
  object-position: center;
}

.portfolio-image-details {
  display: grid;
  gap: 0.2rem;
  margin: -0.2rem 0 0.85rem;
  text-align: center;
}

.portfolio-image-details strong {
  color: #15283a;
  font-size: 0.9rem;
}

.portfolio-image-details span {
  color: #587086;
  font-size: 0.72rem;
}

.portfolio-image-details p {
  margin: 0;
  color: #587086;
  font-size: 0.7rem;
  line-height: 1.45;
}

.screen-terma {
  background: linear-gradient(180deg, #f8f5ef 0%, #edf2f6 100%);
}

.screen-cheapshop {
  background: linear-gradient(180deg, #f3f7fb 0%, #edf2f8 100%);
}

.screen-custom {
  background: linear-gradient(180deg, #f7f7fb 0%, #eef2f7 100%);
}

.screen-topline,
.mockup-nav,
.mockup-hero,
.mockup-product-row,
.shop-header,
.shop-banner,
.shop-grid,
.profile-header,
.stats-row,
.project-cards {
  width: 100%;
}

.screen-topline {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.screen-topline span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(120, 138, 159, 0.38);
}

.screen-topline .short {
  width: 34%;
}

.screen-topline .wide {
  width: 58%;
}

.mockup-nav {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.nav-pill {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(123, 141, 165, 0.34);
}

.nav-pill.dark {
  width: 24%;
  background: rgba(53, 67, 80, 0.74);
}

.nav-pill.light {
  width: 18%;
}

.nav-pill.long {
  width: 40%;
}

.mockup-hero {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.95rem;
}

.hero-copy-block {
  display: grid;
  gap: 0.45rem;
}

.hero-copy-block span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(125, 140, 168, 0.38);
}

.hero-copy-block .short {
  width: 70%;
}

.hero-copy-block .tiny {
  width: 42%;
  height: 8px;
}

.hero-cta {
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d6bdd, #79d4c7);
}

.mockup-product-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.55rem;
}

.product-card {
  height: 80px;
  border-radius: 12px;
  background: rgba(177, 191, 205, 0.2);
}

.product-card.warm {
  background: linear-gradient(135deg, rgba(251, 185, 121, 0.6), rgba(226, 152, 98, 0.2));
}

.product-card.soft {
  background: linear-gradient(135deg, rgba(128, 175, 154, 0.38), rgba(125, 146, 181, 0.16));
}

.shop-header {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.shop-badge {
  display: block;
  height: 11px;
  border-radius: 999px;
  width: 22%;
  background: rgba(32, 82, 124, 0.24);
}

.shop-badge.short {
  width: 12%;
}

.shop-banner {
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(86, 151, 233, 0.4), rgba(103, 217, 188, 0.18));
  margin-bottom: 0.8rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.6rem;
}

.shop-item {
  height: 76px;
  border-radius: 12px;
  background: rgba(132, 151, 177, 0.22);
}

.shop-item.feature {
  background: linear-gradient(135deg, rgba(250, 177, 96, 0.48), rgba(136, 152, 172, 0.2));
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 93, 150, 0.78), rgba(104, 156, 212, 0.3));
}

.profile-meta {
  display: grid;
  gap: 0.35rem;
  width: 100%;
}

.profile-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(122, 136, 160, 0.38);
}

.profile-line.big {
  width: 52%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.stats-row span {
  display: block;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(108, 170, 234, 0.32), rgba(89, 123, 174, 0.14));
}

.project-cards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.65rem;
}

.project-card {
  height: 74px;
  border-radius: 12px;
  background: rgba(128, 139, 160, 0.2);
}

.project-card.feature {
  background: linear-gradient(135deg, rgba(36, 102, 168, 0.38), rgba(96, 186, 181, 0.18));
}

.portfolio-item .card {
  flex: 1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover .card {
  border-color: rgba(92, 164, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(92, 164, 255, 0.18);
}

.portfolio-item h3 {
  margin-bottom: 0.6rem;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(180deg, rgba(47, 140, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(47, 140, 255, 0.28);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.highlight-box:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(47, 140, 255, 0.5);
  box-shadow: 0 0 30px rgba(47, 140, 255, 0.22);
}

.highlight-box .mini-label {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.72rem;
}

.process-step {
  position: relative;
  padding: 1.3rem 1.25rem 1.5rem;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #4ea1ff);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-panel {
  padding: 2rem;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 140, 255, 0.12);
  border: 1px solid rgba(47, 140, 255, 0.22);
  color: var(--accent-2);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
  max-width: 100%;
}

.socials a {
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 140, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.social-icon-tiktok {
  background: #010101;
}

.social-icon-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon-facebook {
  background: #1877f2;
}

@media (max-width: 480px) {
  .socials {
    gap: 0.5rem;
  }

  .socials a {
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    font-size: 0.8rem;
  }
}

.form-box {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background-color: rgba(10, 17, 27, 0.9);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(47, 140, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.14);
}

.field select.is-locked {
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: not-allowed;
}

/* Professional, theme-matched dropdowns instead of the plain browser default */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(10, 17, 27, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%237cf1d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.7rem !important;
  cursor: pointer;
}

select:hover {
  border-color: rgba(47, 140, 255, 0.5);
}

select:focus {
  outline: none;
  border-color: rgba(47, 140, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.14);
}

select option {
  background: #0c1623;
  color: var(--text);
}

select:invalid,
select option[value=""] {
  color: var(--muted);
}

/* Compact form fields inside popup modals so more fits on screen at once */
.modal-form {
  gap: 0.7rem;
}

.modal-form .field {
  gap: 0.35rem;
}

.modal-form .field input,
.modal-form .field select,
.modal-form .field textarea {
  min-height: 46px;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.modal-form textarea {
  min-height: 80px;
}

.footer {
  padding: 1.5rem 0 2.2rem;
  border-top: 1px solid var(--line);
  background: rgba(6, 13, 22, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-wrap,
  .contact-grid,
  .portfolio-grid,
  .process-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    transform: scaleY(0.8);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }
}

.hidden {
  display: none !important;
}

.form-message {
  margin-top: 0.9rem;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-message.success {
  background: rgba(118, 215, 178, 0.12);
  border: 1px solid rgba(118, 215, 178, 0.2);
  color: #d9fff0;
}

.form-message.error {
  background: rgba(255, 100, 100, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
  color: #ffd7d7;
}

.confirmation-message {
  padding: 1rem;
  animation: confirmation-reveal 0.35s ease both;
}

.confirmation-message strong {
  display: block;
  color: #effff8;
  font-size: 1rem;
}

.confirmation-message p {
  margin: 0.65rem 0 1rem;
  color: #c9e8dd;
  font-size: 0.9rem;
  line-height: 1.65;
}

.confirmation-done {
  min-width: 96px;
  justify-content: center;
}

.confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.confirmation-modal.open {
  display: flex;
}

.confirmation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.8);
  backdrop-filter: blur(8px);
}

.confirmation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2rem;
  border: 1px solid rgba(118, 215, 178, 0.35);
  border-radius: 24px;
  background: #0c1b2a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  animation: confirmation-reveal 0.35s ease both;
}

.confirmation-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #76d7b2;
  color: #082319;
  font-size: 1.8rem;
  font-weight: 900;
}

.confirmation-dialog h3 {
  margin: 0.5rem 0 0;
}

.confirmation-dialog p {
  margin: 1rem 0 1.5rem;
  color: #c9e8dd;
  font-size: 0.95rem;
  line-height: 1.7;
}

.confirmation-dialog .confirmation-done {
  margin: 0 auto;
}

@keyframes confirmation-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.72);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: rgba(12, 22, 35, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-header {
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.modal-header h3 {
  margin-top: 0.5rem;
}

.meeting-date-fields {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 0.8rem;
}

.meeting-time-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.8rem;
}

.optional-label {
  color: var(--muted);
  font-size: 0.75em;
  font-weight: 500;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.65rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  accent-color: #25d366;
}

body.modal-open {
  overflow: hidden;
}

.admin-page-body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 140, 255, 0.2), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(124, 241, 212, 0.16), transparent 45%),
    radial-gradient(circle at 50% 105%, rgba(255, 70, 70, 0.1), transparent 55%),
    linear-gradient(180deg, #05090f 0%, #0a1526 50%, #05090f 100%);
}

.admin-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(161, 176, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 176, 196, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 25%, black, transparent 72%);
  mask-image: radial-gradient(circle at 50% 25%, black, transparent 72%);
}

.auth-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem;
}

.auth-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.auth-brand-panel {
  padding: 1rem;
}

.brand-panel-inner {
  display: grid;
  gap: 1.1rem;
}

.brand-panel-tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-top: 0.4rem;
}

.brand-feature-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.brand-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-size: 1rem;
}

.auth-form-panel {
  display: grid;
  place-items: center;
}

.auth-header-brand {
  margin-bottom: 0.2rem;
}

.admin-welcome {
  text-align: center;
  margin-bottom: 2.4rem;
}

.admin-welcome-eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.admin-hero-name {
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.auth-brand-panel .admin-hero-name {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.name-glow-green {
  color: #c7ffe6;
  animation: name-glow-pulse-green 2.6s ease-in-out infinite;
}

.name-glow-red {
  color: #ffd3cf;
  animation: name-glow-pulse-red 2.6s ease-in-out infinite;
  animation-delay: 0.25s;
}

@keyframes name-glow-pulse-green {
  0%, 100% {
    text-shadow: 0 0 12px rgba(76, 240, 170, 0.75), 0 0 28px rgba(76, 240, 170, 0.55), 0 0 58px rgba(76, 240, 170, 0.38);
  }
  50% {
    text-shadow: 0 0 22px rgba(76, 240, 170, 1), 0 0 48px rgba(76, 240, 170, 0.9), 0 0 100px rgba(76, 240, 170, 0.65);
  }
}

@keyframes name-glow-pulse-red {
  0%, 100% {
    text-shadow: 0 0 12px rgba(255, 70, 70, 0.75), 0 0 28px rgba(255, 70, 70, 0.55), 0 0 58px rgba(255, 70, 70, 0.38);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 70, 70, 1), 0 0 48px rgba(255, 70, 70, 0.9), 0 0 100px rgba(255, 70, 70, 0.65);
  }
}

.admin-card {
  position: relative;
  width: min(100%, 460px);
  padding: 2.2rem 2rem 2rem;
  border: 1px solid rgba(118, 215, 178, 0.28);
  border-radius: 24px;
  background: rgba(11, 21, 33, 0.92);
  box-shadow: var(--shadow), 0 0 50px rgba(47, 140, 255, 0.1);
  overflow: hidden;
}

.admin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #ff5a5a);
}

.auth-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.auth-icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.2), rgba(124, 241, 212, 0.14));
  border: 1px solid rgba(118, 215, 178, 0.35);
  margin-bottom: 1rem;
}

.auth-card h2 {
  font-size: clamp(1.6rem, 3.4vw, 2rem);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--accent-2);
  outline: none;
}

.caps-lock-warning {
  display: block;
  margin-top: 0.5rem;
  color: #ffb4b4;
  font-size: 0.78rem;
  font-weight: 700;
}

.auth-footer-note {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.admin-back-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.admin-back-link:hover,
.admin-back-link:focus-visible {
  color: var(--accent-2);
}

/* ── Dashboard shell: sidebar + content ─────────────────── */
.dash-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px 1fr;
}

.dash-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem 1.3rem;
  border-right: 1px solid var(--line);
  background: rgba(7, 14, 25, 0.75);
  backdrop-filter: blur(18px);
}

.dash-sidebar-top {
  display: grid;
  gap: 2.2rem;
}

.dash-nav {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dash-nav-item .nav-icon {
  font-size: 1rem;
}

.dash-nav-item:hover,
.dash-nav-item:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.dash-nav-item.active {
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.22), rgba(124, 241, 212, 0.12));
  color: var(--text);
  border: 1px solid rgba(124, 241, 212, 0.25);
}

.dash-sidebar-bottom {
  display: grid;
  gap: 0.9rem;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.dash-user-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06101e;
  font-weight: 800;
}

.dash-user-info {
  display: grid;
  line-height: 1.3;
  min-width: 0;
}

.dash-user-info strong {
  font-size: 0.88rem;
}

.dash-user-info span {
  font-size: 0.76rem;
  color: var(--muted);
}

.dash-logout-btn {
  width: 100%;
}

.dash-content {
  min-width: 0;
}

.dash-topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 16, 30, 0.7);
  backdrop-filter: blur(18px);
}

.dash-topbar-eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-topbar h2 {
  font-size: 1.15rem;
}

.dash-datetime {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.dashboard-welcome-banner {
  text-align: left;
  padding: 2.4rem 0 0.4rem;
}

.dashboard-welcome-banner .admin-hero-name {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.dashboard-subtitle {
  color: var(--muted);
  margin-top: 0.6rem;
  font-size: 1rem;
}

.dashboard-main {
  padding: 0 0 3rem;
}

.dashboard-wrap {
  display: grid;
  gap: 1.5rem;
  max-width: 100%;
  padding: 0 2rem;
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.summary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 241, 212, 0.3);
}

.summary-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.summary-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.05rem;
}

.summary-trend {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.summary-trend.trend-up {
  color: #9df5c7;
  background: rgba(118, 215, 178, 0.14);
}

.summary-trend.trend-down {
  color: #ffb4b4;
  background: rgba(255, 100, 100, 0.12);
}

.summary-trend.trend-flat {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.accent-card {
  background: linear-gradient(180deg, rgba(47, 140, 255, 0.14), rgba(255, 255, 255, 0.02));
  border-color: rgba(47, 140, 255, 0.25);
}

.summary-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.summary-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.05em;
}

.dashboard-toolbar {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.6fr 0.7fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.toolbar-field {
  display: grid;
  gap: 0.45rem;
}

.toolbar-field label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.toolbar-field input,
.toolbar-field select,
.lead-status-select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(11, 19, 29, 0.9);
  color: var(--text);
}

.toolbar-actions-field .secondary-btn {
  width: 100%;
}

.table-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

th,
td {
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  position: sticky;
  top: 0;
}

.sortable-th {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease;
}

.sortable-th:hover {
  color: var(--text);
}

.sortable-th::after {
  content: "↕";
  margin-left: 0.35rem;
  opacity: 0.4;
  font-size: 0.72rem;
}

.sortable-th.sort-asc::after {
  content: "↑";
  opacity: 1;
  color: var(--accent-2);
}

.sortable-th.sort-desc::after {
  content: "↓";
  opacity: 1;
  color: var(--accent-2);
}

td {
  color: var(--text);
  font-size: 0.92rem;
}

tbody tr {
  transition: background 0.15s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.lead-name-cell {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.lead-avatar {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 140, 255, 0.16);
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.8rem;
}

.message-cell {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.status-pill.status-new { background: rgba(47, 140, 255, 0.16); color: #bfe0ff; }
.status-pill.status-contacted { background: rgba(255, 200, 87, 0.16); color: #ffe3a8; }
.status-pill.status-quoted { background: rgba(190, 120, 255, 0.16); color: #e3c6ff; }
.status-pill.status-advance-paid { background: rgba(118, 215, 178, 0.18); color: #b7ffe0; }
.status-pill.status-in-progress { background: rgba(124, 241, 212, 0.16); color: #c7fff0; }
.status-pill.status-completed { background: rgba(76, 240, 170, 0.18); color: #c9ffe6; }
.status-pill.status-lost { background: rgba(255, 100, 100, 0.14); color: #ffd0d0; }

.lead-status-select {
  min-width: 150px;
  cursor: pointer;
  font-weight: 700;
}

.lead-status-select.status-new { border-color: rgba(47, 140, 255, 0.4); color: #bfe0ff; }
.lead-status-select.status-contacted { border-color: rgba(255, 200, 87, 0.4); color: #ffe3a8; }
.lead-status-select.status-quoted { border-color: rgba(190, 120, 255, 0.4); color: #e3c6ff; }
.lead-status-select.status-advance-paid { border-color: rgba(118, 215, 178, 0.4); color: #b7ffe0; }
.lead-status-select.status-in-progress { border-color: rgba(124, 241, 212, 0.4); color: #c7fff0; }
.lead-status-select.status-completed { border-color: rgba(76, 240, 170, 0.4); color: #c9ffe6; }
.lead-status-select.status-lost { border-color: rgba(255, 100, 100, 0.4); color: #ffd0d0; }

.action-cell {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  background: rgba(47, 140, 255, 0.12);
  border: 1px solid rgba(47, 140, 255, 0.3);
  color: #bfe0ff;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  font-weight: 700;
}

.delete-btn {
  background: rgba(255, 100, 100, 0.12);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ffd7d7;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  font-weight: 700;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.pagination-info {
  color: var(--muted);
  font-size: 0.85rem;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pagination-page {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.small-btn {
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.small-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Lead detail drawer ──────────────────────────────────── */
.lead-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.lead-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.lead-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lead-drawer.open .lead-drawer-backdrop {
  opacity: 1;
}

.lead-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100%);
  background: rgba(11, 21, 33, 0.98);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 60px rgba(8, 16, 30, 0.5);
  padding: 2rem 1.6rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.lead-drawer.open .lead-drawer-panel {
  transform: translateX(0);
}

.lead-drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
}

.drawer-header {
  margin-bottom: 1.4rem;
}

.drawer-eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.drawer-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.drawer-field-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.drawer-field {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.drawer-field-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.drawer-notes-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.drawer-notes-textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11, 19, 29, 0.9);
  color: var(--text);
  font-family: inherit;
  resize: vertical;
  margin-bottom: 0.8rem;
}

/* ── Toasts ───────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 80;
  display: grid;
  gap: 0.6rem;
}

.toast {
  min-width: 240px;
  max-width: 340px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: toast-in 0.25s ease both;
  border: 1px solid var(--line);
  background: rgba(16, 26, 40, 0.96);
  color: var(--text);
}

.toast.toast-success {
  border-color: rgba(118, 215, 178, 0.4);
  color: #d9fff0;
}

.toast.toast-error {
  border-color: rgba(255, 100, 100, 0.4);
  color: #ffd7d7;
}

.toast.toast-fade-out {
  animation: toast-out 0.25s ease both;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(24px); }
}

@media (max-width: 980px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    text-align: center;
    padding: 0.5rem 1rem;
  }

  .brand-panel-inner {
    justify-items: center;
  }

  .brand-feature-list li {
    text-align: left;
  }

  .dash-shell {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    position: relative;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .dash-sidebar-top {
    gap: 1rem;
  }

  .dash-nav {
    flex-direction: row;
    margin-top: 0;
  }

  .dashboard-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn,
  .cta-link {
    width: 100%;
  }

  .stat-panel,
  .dashboard-summary {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar {
    grid-template-columns: 1fr;
  }

  .pagination-controls .secondary-btn {
    width: auto;
  }

  .table-pagination {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Sub-page hero ─────────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(47, 140, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Wider hero with a visual card beside the copy (e.g. services.html) */
.page-hero .container.hero-grid {
  max-width: 1120px;
}

.page-hero .hero-visual .dashboard-card {
  border-color: rgba(118, 215, 178, 0.55);
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 140, 255, 0.28), transparent 55%),
    radial-gradient(circle at 88% 20%, rgba(255, 80, 90, 0.14), transparent 45%),
    radial-gradient(circle at 65% 90%, rgba(47, 140, 255, 0.2), transparent 55%),
    rgba(12, 22, 35, 0.9);
  animation: hero-card-float 6s ease-in-out infinite, service-frame-glow 3s ease-in-out infinite;
}

@keyframes hero-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes service-frame-glow {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(118, 215, 178, 0.5),
      0 0 18px rgba(118, 215, 178, 0.45),
      0 0 42px rgba(118, 215, 178, 0.26),
      var(--shadow);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(118, 215, 178, 0.85),
      0 0 30px rgba(118, 215, 178, 0.75),
      0 0 65px rgba(118, 215, 178, 0.46),
      var(--shadow);
  }
}

.page-hero h1 {
  margin-top: 1rem;
}

.page-hero p {
  max-width: 620px;
  margin-top: 1.1rem;
  font-size: 1.08rem;
}

.page-hero .hero-actions {
  margin-top: 1.8rem;
}

/* ── FAQ accordion ─────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0 1.3rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  border-color: rgba(118, 215, 178, 0.4);
  box-shadow: 0 0 20px rgba(118, 215, 178, 0.12);
}

.faq-item[open] {
  border-color: rgba(47, 140, 255, 0.4);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.1rem;
  color: var(--accent-2);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 1.15rem;
  margin: 0;
  font-size: 0.96rem;
}

/* ── Process timeline (process.html) ──────────────────── */
.timeline {
  position: relative;
  display: grid;
  gap: 2.2rem;
  max-width: 760px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(47, 140, 255, 0.05));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.3rem;
  border-radius: 18px;
  padding: 0.6rem 0.8rem;
  margin: -0.6rem -0.8rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.timeline-step:hover {
  background: rgba(255, 255, 255, 0.025);
  transform: translateX(6px);
}

.timeline-step .step-number {
  position: relative;
  z-index: 1;
  margin: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(47, 140, 255, 0.5);
}

.timeline-step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}

.timeline-step .step-body {
  padding-top: 0.35rem;
}

/* ── Work cards (work.html) — compact, one card per project ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.work-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.work-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.work-logo-round {
  border-radius: 50%;
}

.work-card h3 {
  font-size: 1.1rem;
  margin-top: 0.15rem;
  letter-spacing: -0.03em;
}

.work-card p {
  font-size: 0.9rem;
}

.work-highlights {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.work-highlights li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.work-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.work-card .meta {
  margin-top: auto;
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.tech-badges span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Values grid (about.html) ─────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.value-card {
  text-align: left;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 140, 255, 0.12);
  border: 1px solid rgba(47, 140, 255, 0.25);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.92rem;
}

/* ── Services grid (services.html) ────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card .value-icon {
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.service-card ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* ── Contact page inline form ─────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

@media (max-width: 900px) {
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study,
  .case-study.reverse {
    grid-template-columns: 1fr;
  }

  .case-study.reverse .case-visual,
  .case-study.reverse .case-copy {
    order: initial;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-step {
    grid-template-columns: 42px 1fr;
  }
}

/* ── Packages Section ─────────────────────────────────── */
.packages-section {
  background: var(--bg);
}

.packages-section h2 {
  margin-bottom: 2.5rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  position: relative;
  background: var(--card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 1.25rem;
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(118, 215, 178, 0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 0 30px rgba(118, 215, 178, 0.2);
}

.package-popular {
  border-color: var(--accent, #6c63ff);
  box-shadow: 0 0 0 2px var(--accent, #6c63ff), 0 8px 32px rgba(108,99,255,0.18);
}

.package-badge {
  display: inline-block;
  background: var(--accent, #6c63ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

.package-label {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--muted, #aaa);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

.package-name {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted, #aaa);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.package-features li {
  font-size: 0.95rem;
  color: var(--muted, #bbb);
  padding-left: 1.4rem;
  position: relative;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.package-card .primary-btn,
.package-card .secondary-btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Mobile hardening ─────────────────────────────────────
   background-attachment: fixed renders badly on mobile browsers
   (iOS Safari especially) — glitchy, mispositioned, or janky while
   scrolling. Drop it below tablet width across every background rule. */
@media (max-width: 900px) {
  body,
  body.page-home,
  body.page-about,
  body.page-services,
  body.page-work,
  body.page-process,
  body.page-contact,
  .admin-page-body {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 64px;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text > span:first-child {
    font-size: 0.95rem;
  }

  .brand-owner {
    font-size: 0.6rem;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 5rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 3.2rem 0 2.4rem;
  }

  .admin-card {
    padding: 1.6rem 1.3rem 1.5rem;
  }

  .auth-shell {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 640px) {
  .dash-sidebar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .dash-sidebar-top {
    gap: 1rem;
  }

  .dash-nav {
    flex-direction: column;
  }

  .dash-topbar {
    padding: 0 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .dashboard-wrap {
    padding: 0 1.2rem;
  }

  .dashboard-welcome-banner {
    padding-top: 1.6rem;
    text-align: left;
  }
}