@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --text: #1d1f2b;
  --muted: #5a5f76;
  --primary: #5b6cf7;
  --primary-dark: #3a49c9;
  --mint: #bff0e2;
  --peach: #ffd6c2;
  --lilac: #cfd6ff;
  --border: rgba(29, 31, 43, 0.08);
  --shadow: 0 24px 60px rgba(48, 56, 109, 0.12);
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.auth-body {
  background: var(--bg);
}

.panel-body {
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}

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

button {
  font-family: 'Space Grotesk', sans-serif;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
}

.orb-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
  background: #ffe9d6;
}

.orb-2 {
  width: 420px;
  height: 420px;
  top: 20vh;
  right: -140px;
  background: #d6defe;
}

.orb-3 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: 40%;
  background: #d6f5ed;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(247, 247, 251, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.topbar.is-menu-open {
  background: #ffffff;
}

.topbar.is-scrolled {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  border-bottom-color: rgba(29, 31, 43, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.logo-image {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.actions {
  display: flex;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(91, 108, 247, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(91, 108, 247, 0.3);
}

.package-row .btn-primary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.package-row .btn-primary:hover,
.package-row:hover .btn-primary {
  background: var(--primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(91, 108, 247, 0.3);
}

.btn-ghost {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-danger {
  background: #e24141;
  color: white;
  border: 1px solid #e24141;
  box-shadow: 0 12px 24px rgba(226, 65, 65, 0.22);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(226, 65, 65, 0.3);
}

.mobile-actions .btn-danger {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.mobile-menu {
  display: block;
  background: rgba(247, 247, 251, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 0 0;
  position: fixed;
  top: var(--topbar-height, 72px);
  left: 0;
  right: 0;
  z-index: 999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.mobile-menu.is-open {
  max-height: calc(100vh - var(--topbar-height, 72px) - 16px);
  opacity: 1;
  transform: translateY(0);
  overflow-y: auto;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  padding: 0 4vw 16px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-start;
}

.mobile-logout {
  margin: 0;
  display: block;
}

.mobile-logout-btn {
  text-decoration: none;
  color: #c22121;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
}

.mobile-logout-btn i {
  margin-right: 10px;
}

.mobile-logout-btn:hover {
  background: rgba(226, 65, 65, 0.08);
}

.mobile-actions {
  display: flex;
  gap: 12px;
  padding: 0 4vw;
  flex-wrap: wrap;
}

.mobile-auth-btn {
  width: 100%;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-auth-btn:hover {
  background: rgba(91, 108, 247, 0.08);
}

.mobile-auth-btn.is-primary {
  color: var(--primary);
}

.mobile-auth-btn.is-primary:hover {
  background: rgba(91, 108, 247, 0.12);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 31, 0.25);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding: 40px 0 80px;
}

.auth-main {
  padding: 56px 0 100px;
}

.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.auth-info {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.auth-features {
  display: grid;
  gap: 14px;
}

.auth-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 26px rgba(20, 24, 51, 0.08);
}

.auth-feature i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(91, 108, 247, 0.12);
  color: var(--primary);
  font-size: 1rem;
}

.auth-feature strong {
  display: block;
  font-weight: 600;
}

.auth-feature span {
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
}

.auth-header h2 {
  margin-bottom: 6px;
}

.auth-header p {
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fbfbff;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  outline: none;
  border-color: rgba(91, 108, 247, 0.6);
  box-shadow: 0 0 0 3px rgba(91, 108, 247, 0.12);
}

.auth-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.auth-form textarea {
  resize: vertical;
  min-height: 90px;
}

.panel-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fbfbff;
}

.panel-input:focus {
  outline: none;
  border-color: rgba(91, 108, 247, 0.6);
  box-shadow: 0 0 0 3px rgba(91, 108, 247, 0.12);
}

.panel-input[type='file'] {
  padding: 10px 12px;
}

select.panel-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.options-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.option-group {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(91, 108, 247, 0.1);
  border: 1px solid rgba(91, 108, 247, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
}

.option-grid {
  display: grid;
  gap: 16px;
}

.option-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 992px) {
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-full {
    grid-column: 1 / -1;
  }
}

.dropzone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  border: 1.5px dashed rgba(91, 108, 247, 0.4);
  background: rgba(91, 108, 247, 0.06);
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

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

.dropzone-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.dropzone:hover {
  border-color: rgba(91, 108, 247, 0.7);
  background: rgba(91, 108, 247, 0.1);
}

.dropzone-multi-preview {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.dropzone-multi-preview .preview-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.dropzone-multi-preview img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.dropzone-multi-preview .preview-file {
  width: 100%;
  height: 80px;
  border-radius: 8px;
  background: rgba(91, 108, 247, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6px;
}

.dropzone-warning {
  margin-top: 6px;
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.portfolio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portfolio-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-images {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 220px);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.product-slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

.product-prev {
  left: 6px;
}

.product-next {
  right: 6px;
}

.portfolio-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(17, 24, 39, 0.6);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.portfolio-prev {
  left: 6px;
}

.portfolio-next {
  right: 6px;
}

.portfolio-images .gallery-item,
.product-gallery .gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  width: 100%;
  scroll-snap-align: start;
  min-width: 0;
}

.portfolio-images img,
.product-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.product-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 220px);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  margin: 16px 0;
  overscroll-behavior-x: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 27, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1200;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(90vw, 980px);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(12, 16, 32, 0.4);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

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

  .portfolio-images {
    grid-auto-columns: minmax(140px, 180px);
  }

  .product-gallery {
    grid-auto-columns: minmax(140px, 180px);
  }

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

  .payment-info {
    grid-template-columns: 1fr;
  }

  .bank-cards {
    grid-template-columns: 1fr;
  }
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--muted);
}

.checkbox input {
  width: 16px;
  height: 16px;
}

.checkbox span {
  display: inline-block;
  line-height: 1;
}

.auth-link {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
}

.auth-footer {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.pricing-hero {
  padding-top: 56px;
}

.pricing-hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.pricing-highlight {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.highlight-title {
  font-weight: 600;
  color: var(--primary-dark);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.detail-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.detail-list li::before {
  content: '•';
  margin-right: 8px;
  color: var(--primary);
}

.panel-header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 247, 251, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.panel-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-header-actions {
  display: flex;
  gap: 16px;
}

.panel-sidebar .panel-header-actions {
  flex-direction: column;
  gap: 12px;
}

.header-card {
  background: white;
  border-radius: 18px;
  padding: 12px 18px;
  display: grid;
  gap: 4px;
  box-shadow: 0 12px 26px rgba(20, 24, 51, 0.08);
  min-width: 140px;
}

.header-auth-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-auth-link {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-auth-link.is-login {
  color: var(--text);
  border-color: rgba(29, 31, 43, 0.2);
}

.header-auth-link.is-register {
  color: var(--primary);
  border-color: rgba(91, 108, 247, 0.6);
}

.header-auth-link:hover {
  background: rgba(91, 108, 247, 0.08);
  transform: translateY(-1px);
}

.header-title {
  color: var(--muted);
  font-size: 0.85rem;
}

.panel-main {
  padding: 32px 0 80px;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: 24px;
  align-items: start;
}

.panel-sidebar {
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.panel-menu {
  display: grid;
  gap: 10px;
}

.panel-link {
  text-decoration: none;
  color: var(--text);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  background: rgba(91, 108, 247, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-link-button {
  width: 100%;
  border: none;
  cursor: pointer;
  background: rgba(91, 108, 247, 0.06);
  text-align: left;
  font: inherit;
}

.panel-link.is-active {
  background: var(--primary);
  color: white;
}

.panel-link-danger {
  background: rgba(234, 76, 76, 0.12);
  color: #c22121;
}

.panel-link-danger:hover {
  background: rgba(234, 76, 76, 0.18);
}

.panel-link-danger i {
  color: #c22121;
}

.panel-content {
  display: grid;
  gap: 24px;
  overflow-x: hidden;
}

.panel-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-options {
  display: grid;
  gap: 12px;
}

.payment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.payment-card-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.06);
}

.payment-option input {
  width: 18px;
  height: 18px;
}

.payment-option small {
  color: var(--muted);
  display: block;
}

.payment-detail {
  margin-top: 0;
}

.payment-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.bank-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.bank-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(91, 108, 247, 0.04);
  display: grid;
  gap: 4px;
}

.bank-card .btn.btn-sm {
  padding: 6px 10px;
  border-radius: 10px;
}

.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.orders {
  display: grid;
  gap: 16px;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(25, 33, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.order-card-link {
  color: inherit;
  text-decoration: none;
}

.order-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: rgba(91, 108, 247, 0.35);
}

.order-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(25, 33, 61, 0.1);
}

.order-item[data-status="review"]::before {
  background: rgba(255, 193, 7, 0.45);
}

.order-item[data-status="preparing"]::before {
  background: rgba(255, 159, 67, 0.45);
}

.order-item[data-status="revision_waiting"]::before {
  background: rgba(255, 107, 107, 0.5);
}

.order-item[data-status="completed"]::before {
  background: rgba(22, 180, 120, 0.45);
}

.order-item-compact {
  padding: 14px 16px;
}

.order-item-compact::before {
  width: 4px;
}

.order-left,
.order-right {
  display: grid;
  gap: 6px;
}

.order-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.order-product {
  font-weight: 700;
  font-size: 1rem;
  color: #1f2a44;
}

.order-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e9edff;
  overflow: hidden;
  width: 100%;
  max-width: 240px;
}

.order-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c7bff 0%, #4f5df7 100%);
  transition: width 0.3s ease;
}

.order-item[data-status="review"] .order-progress-bar {
  background: linear-gradient(90deg, #f7c948 0%, #f0a500 100%);
}

.order-item[data-status="preparing"] .order-progress-bar {
  background: linear-gradient(90deg, #ffb36b 0%, #ff8f3a 100%);
}

.order-item[data-status="revision_waiting"] .order-progress-bar {
  background: linear-gradient(90deg, #ff8a8a 0%, #ff5a5a 100%);
}

.order-item[data-status="completed"] .order-progress-bar {
  background: linear-gradient(90deg, #2fd07d 0%, #16b478 100%);
}

.order-item h3 {
  font-size: 1.1rem;
}

.order-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.order-badge {
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
}

.order-payment {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.order-payment.is-paid {
  background: rgba(22, 180, 120, 0.18);
  color: #167a56;
}

.order-payment.is-partial {
  background: rgba(255, 159, 67, 0.2);
  color: #b35b12;
}

.order-payment.is-pending {
  background: rgba(91, 108, 247, 0.16);
  color: #3849c9;
}

.deliverables-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.deliverable-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  border: 1px solid rgba(91, 108, 247, 0.12);
  box-shadow: 0 10px 20px rgba(25, 33, 61, 0.06);
  display: grid;
  gap: 8px;
}

.deliverable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deliverable-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deliverable-badge.is-file {
  background: rgba(79, 93, 247, 0.18);
  color: #2f3bd1;
}

.deliverable-badge.is-link {
  background: rgba(56, 189, 248, 0.2);
  color: #0b6fa1;
}

.deliverable-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.deliverable-title {
  font-weight: 700;
  color: #1f2a44;
  margin-top: 2px;
}

.deliverable-meta {
  font-size: 0.85rem;
  color: var(--muted);
  word-break: break-all;
  line-height: 1.5;
}

.deliverable-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.deliverable-link-row .deliverable-action {
  margin-top: 0;
  flex-shrink: 0;
}

.deliverable-link-row .deliverable-meta {
  max-width: 420px;
}

.deliverable-url {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

.deliverable-action {
  margin-top: 10px;
}

.panel-section-space {
  margin-bottom: 24px;
}

.panel-card-soft {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(91, 108, 247, 0.12);
  box-shadow: 0 12px 24px rgba(25, 33, 61, 0.08);
}

.panel-card-soft + .panel-card-soft {
  margin-top: 20px;
}

.section-card-gap {
  margin-top: 18px;
}

.btn-back-orders {
  background: linear-gradient(135deg, #5f6bff 0%, #4452f2 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(68, 82, 242, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-back-orders:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(68, 82, 242, 0.35);
  filter: brightness(1.02);
  color: #fff;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 14px;
}

.section-title i {
  color: #4f5df7;
  font-size: 1rem;
}

.btn-link-go {
  background: linear-gradient(135deg, #5f6bff 0%, #4452f2 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(68, 82, 242, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-link-go:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(68, 82, 242, 0.35);
  filter: brightness(1.02);
  color: #fff;
}

.deliverable-link {
  color: #3e4bd9;
  font-weight: 600;
  word-break: break-all;
}

.order-status-badge {
  margin-top: 8px;
}

.btn-order-detail {
  background: #ffffff;
  border: 1px solid rgba(79, 93, 247, 0.25);
  color: #3f4cdc;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  box-shadow: 0 8px 16px rgba(63, 76, 220, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.order-card-link:hover .btn-order-detail {
  background: rgba(79, 93, 247, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(63, 76, 220, 0.2);
}

.btn-order-detail i {
  font-size: 0.85rem;
}

.order-status {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-progress {
  background: rgba(91, 108, 247, 0.12);
  color: var(--primary-dark);
}

.status-review {
  background: rgba(255, 193, 7, 0.18);
  color: #b07600;
}

.status-done {
  background: rgba(22, 180, 120, 0.18);
  color: #1a7a57;
}

@media (max-width: 520px) {
  .auth-row {
    flex-wrap: wrap;
  }
}

.hero-inner {
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.slider-nav:hover {
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.slider-nav-prev {
  left: 14px;
}

.slider-nav-next {
  right: 14px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px;
}

.slide-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 34, 60, 0.15);
}

.slide-media img,
.slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-content h1 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.1;
}

.slide-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.slider-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 16px 0 24px;
  background: white;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d4d8ef;
  cursor: pointer;
}

.dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}

.section {
  padding: 20px 0;
}

.services-page-hero {
  padding-top: 72px;
  padding-bottom: 48px;
}

.packages-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-showcase-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  display: grid;
}

.product-showcase-media {
  height: 210px;
  background: #f8f9fc;
}

.product-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-showcase-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
}

.product-showcase-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.product-showcase-body h3 {
  margin: 0;
  font-size: 1.18rem;
}

.product-showcase-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f5df7;
}

.product-showcase-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-showcase-items li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #475569;
  font-size: 0.92rem;
}

.product-showcase-items i {
  color: #16a34a;
  margin-top: 3px;
}

.product-showcase-desc {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.product-showcase-actions {
  margin-top: 6px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.7);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
  display: grid;
  gap: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.section-head p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-card.reverse {
  direction: rtl;
}

.service-card.reverse .service-text,
.service-card.reverse .service-media {
  direction: ltr;
}

.service-text {
  display: grid;
  gap: 16px;
}

.service-text h3 {
  font-size: 1.6rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.service-list li::before {
  content: '•';
  margin-right: 8px;
  color: var(--primary);
}

.service-media {
  border-radius: 24px;
  padding: 28px;
  min-height: 240px;
  display: grid;
  gap: 16px;
  align-content: center;
  color: #1b233d;
  position: relative;
  overflow: hidden;
}

.media-lilac {
  background: linear-gradient(135deg, var(--lilac), #eef1ff);
}

.media-peach {
  background: linear-gradient(135deg, var(--peach), #fff1e8);
}

.media-mint {
  background: linear-gradient(135deg, var(--mint), #e9fbf6);
}

.badge {
  background: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.text-bg-primary {
  background: rgba(79, 93, 247, 0.18);
  color: #2f3bd1;
}

.text-bg-info {
  background: rgba(56, 189, 248, 0.2);
  color: #0b6fa1;
}

.text-bg-warning {
  background: rgba(245, 158, 11, 0.22);
  color: #b45309;
}

.text-bg-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

.text-bg-success {
  background: rgba(16, 185, 129, 0.2);
  color: #047857;
}

.text-bg-secondary {
  background: rgba(148, 163, 184, 0.25);
  color: #475569;
}

.text-bg-dark {
  background: rgba(15, 23, 42, 0.2);
  color: #0f172a;
}

.media-stack {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}

.media-shot {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2b3353;
  box-shadow: 0 12px 26px rgba(26, 32, 68, 0.12);
  display: grid;
  align-content: end;
  min-height: 90px;
  position: relative;
  overflow: hidden;
}

.media-shot-asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-shot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(15, 23, 42, 0.16));
  z-index: 0;
}

.media-shot-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
}

.media-shot.has-media {
  padding: 0;
  align-content: stretch;
}

.media-shot.has-media::after {
  display: none;
}

.media-shot.has-media .media-shot-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.media-shot.has-media video.media-shot-asset {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  object-fit: fill;
}

.media-shot::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px dashed rgba(43, 51, 83, 0.18);
  z-index: 1;
}

.shot-wide {
  grid-column: span 6;
  min-height: 120px;
}

.shot-tall {
  grid-column: span 3;
  min-height: 160px;
}

.shot-square {
  grid-column: span 3;
  min-height: 160px;
}

.shot-hero {
  grid-column: span 6;
  min-height: 140px;
}

.shot-card {
  grid-column: span 3;
  min-height: 120px;
}

.shot-grid {
  grid-column: span 2;
  min-height: 120px;
}

.package-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.package-card {
  background: white;
  padding: 28px;
  border-radius: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.package-card.highlight {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
}

.package-list {
  display: grid;
  gap: 16px;
}

.package-thumb {
  width: 140px;
  min-width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
}

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

.package-thumb-empty {
  font-size: 0.85rem;
  color: var(--muted);
}

.package-row {
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.package-row.highlight {
  border: 2px solid var(--primary);
}

.package-row:hover {
  border-color: var(--primary);
}

.package-row:active {
  transform: translateY(1px);
  box-shadow: 0 14px 32px rgba(48, 56, 109, 0.14);
}

.package-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(91, 108, 247, 0.18), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.package-row.is-pressed::after {
  opacity: 1;
  animation: package-ripple 0.6s ease-out;
}

@keyframes package-ripple {
  0% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1.08);
  }
}

.package-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.package-info p {
  color: var(--muted);
}

.package-description {
  margin: 12px 0 6px;
  color: var(--muted);
}

.package-action {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.panel-note {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(91, 108, 247, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
}

.package-contents {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.product-card-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.package-description-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.package-description-card .package-description {
  margin: 0;
  color: var(--muted);
}

.package-contents-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.package-contents-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.package-contents-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-contents-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(91, 108, 247, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.checkout-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(48, 56, 109, 0.08);
  color: var(--muted);
}

.checkout-step .step-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(91, 108, 247, 0.12);
  color: var(--primary-dark);
}

.checkout-step .step-icon svg {
  width: 22px;
  height: 22px;
}

.checkout-step .step-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.checkout-step .step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.checkout-step.is-active {
  border-color: rgba(91, 108, 247, 0.5);
  box-shadow: 0 18px 34px rgba(91, 108, 247, 0.18);
  color: var(--text);
}

.checkout-step.is-active .step-icon {
  background: var(--primary);
  color: #fff;
}

.checkout-step.is-upcoming {
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 720px) {
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .package-row {
    grid-template-columns: 1fr;
  }

  .package-action {
    width: 100%;
    justify-items: start;
  }

  .package-thumb {
    width: 100%;
    height: 220px;
  }
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.package-card ul li::before {
  content: '—';
  margin-right: 8px;
  color: var(--primary);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo-marquee {
  overflow: hidden;
  padding: 20px 0 40px;
}

.logo-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.logo-track .logo {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 600;
  white-space: nowrap;
}

.logo-item {
  min-width: 130px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer {
  padding: 48px 0 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-title {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}

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

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  box-shadow: 0 10px 24px rgba(20, 24, 51, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 24, 51, 0.16);
}

.social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-link.behance {
  background: #1769ff;
}

.social-link.linkedin {
  background: #0a66c2;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  color: var(--muted);
}

.footer-inner a,
.footer-inner span {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .nav,
  .actions {
    display: none;
  }

  .landing-body .panel-header-actions {
    display: none;
  }

  .landing-body .topbar,
  .landing-body .header-card,
  .landing-body .panel-header-actions {
    background: transparent;
    box-shadow: none;
  }

  .landing-body .topbar.is-scrolled {
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card.reverse {
    direction: ltr;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-inner {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    position: static;
  }

  .panel-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: 12px;
  }

  .topbar .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .topbar {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    box-shadow: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .topbar.is-menu-open {
    background: #ffffff;
  }

  .topbar.is-scrolled {
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 24, 51, 0.08);
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .topbar .logo-text {
    font-size: 24px;
  }

  .panel-header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 12px;
  }

  .panel-header-actions .header-card {
    height: 100%;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .panel-header-actions .header-card {
    min-width: 0;
    margin: 0;
    flex: 1;
  }

  .panel-header-actions .header-card:nth-child(1) {
    justify-self: start;
  }

  .panel-header-actions .header-card:nth-child(2) {
    justify-self: start;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .topbar-inner {
    padding: 16px 0;
  }

  .slide {
    padding: 24px;
  }

  .hero {
    padding: 24px 0 64px;
  }

  .section {
    padding: 64px 0;
  }

  .auth-card {
    padding: 24px;
  }

  .panel-header-actions {
    width: 100%;
  }

  .slider-controls {
    padding-bottom: 16px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 10px;
    transform: none;
  }

  .slider-nav-prev {
    left: 10px;
  }

  .slider-nav-next {
    right: 10px;
  }

  .package-card.highlight {
    transform: none;
  }

  .packages-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .packages-page-grid {
    grid-template-columns: 1fr;
  }
}

.logo-text,
.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.logo-text {
  font-size: 26px;
}

.footer-logo-text {
  font-size: 24px;
}

.auth-alert {
  background: rgba(255, 96, 96, 0.12);
  color: #b42318;
  border: 1px solid rgba(255, 96, 96, 0.35);
  padding: 12px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
