/* Lightweight styling for API-rendered auth/payment pages. */
:root {
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: #0b1220;
  color: #e5e7eb;
}
a {
  color: inherit;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.main {
  flex: 1;
}
.main.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(229, 231, 235, 0.65);
  font-size: 12px;
}
.card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.center {
  text-align: center;
}
.title {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.muted {
  margin: 0;
  color: rgba(229, 231, 235, 0.75);
  line-height: 1.5;
}
.small {
  font-size: 12px;
}
.callout {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.form {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.label {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.input {
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #e5e7eb;
  outline: none;
}
.input:focus {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}
.row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.button.primary {
  background: #2563eb;
  border-color: #2563eb;
}
.button.primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
.icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.icon.ok {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}
.icon.bad {
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
}

/* Admin analytics */
.analytics-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 72px;
}
.analytics-hero {
  margin-bottom: 24px;
}
.analytics-hero h1 {
  margin: 0 0 8px;
  font-size: 40px;
  letter-spacing: -0.03em;
}
.eyebrow {
  margin: 0 0 8px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.analytics-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.analytics-card,
.analytics-panel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.analytics-card {
  padding: 18px;
}
.analytics-card-label {
  color: rgba(229, 231, 235, 0.7);
  font-size: 13px;
}
.analytics-card-value {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.analytics-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.analytics-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.analytics-panel {
  padding: 18px;
  overflow: hidden;
}
.analytics-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.analytics-panel-header h2 {
  margin: 0;
  font-size: 18px;
}
.analytics-panel-header span {
  color: rgba(229, 231, 235, 0.55);
  font-size: 12px;
}
.analytics-chart {
  display: block;
  width: 100%;
  height: 220px;
}
.analytics-chart rect {
  fill: #60a5fa;
}
.analytics-chart line {
  stroke: rgba(229, 231, 235, 0.2);
}
.analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.analytics-table th,
.analytics-table td {
  padding: 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.analytics-table th {
  color: rgba(229, 231, 235, 0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.analytics-table code {
  color: #bfdbfe;
}
@media (max-width: 760px) {
  .analytics-cards,
  .analytics-grid.two {
    grid-template-columns: 1fr;
  }
}

/* Marketing Landing Page Styles */
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.85);
  margin: 0 0 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  color: rgba(229, 231, 235, 0.6);
  font-size: 14px;
  margin: 0;
}

.section {
  width: 100%;
  padding: 80px 24px;
}
.section.alt {
  background: rgba(255, 255, 255, 0.02);
}
.section-content {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}
.section-subtitle {
  font-size: 18px;
  color: rgba(229, 231, 235, 0.75);
  text-align: center;
  margin: 0 0 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.feature {
  text-align: center;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin: 0 auto 18px;
}
.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}
.feature-desc {
  color: rgba(229, 231, 235, 0.75);
  line-height: 1.6;
  margin: 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.benefit {
  text-align: center;
}
.benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #60a5fa;
}
.benefit-desc {
  color: rgba(229, 231, 235, 0.75);
  line-height: 1.6;
  margin: 0;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0 16px;
}
.download-note {
  color: rgba(229, 231, 235, 0.6);
  font-size: 14px;
  margin: 0 0 48px;
}
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}
.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: rgba(229, 231, 235, 0.8);
}
.pricing-price {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
  color: rgba(229, 231, 235, 0.6);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  padding: 12px 0;
  color: rgba(229, 231, 235, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-features li:last-child {
  border-bottom: none;
}

.button.large {
  padding: 14px 28px;
  font-size: 16px;
}
.button.huge {
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 800;
}
.button-icon {
  font-size: 20px;
  margin-right: 8px;
}

.link {
  color: #60a5fa;
  text-decoration: underline;
}
.link:hover {
  color: #93c5fd;
}

/* Navigation */
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.85);
  transition: color 0.2s;
}
.nav-link:hover {
  color: #fff;
}
.header {
  display: flex;
  align-items: center;
}

/* Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  text-decoration: none;
  font-size: 12px;
  color: rgba(229, 231, 235, 0.65);
  transition: color 0.2s;
}
.footer-link:hover {
  color: rgba(229, 231, 235, 0.9);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 18, 32, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.9);
  line-height: 1.5;
}
.cookie-banner-link {
  color: #60a5fa;
  text-decoration: underline;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button.small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal-content {
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.cookie-modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}
.cookie-modal-text {
  color: rgba(229, 231, 235, 0.75);
  margin: 0 0 24px;
  line-height: 1.5;
}
.cookie-option {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
}
.cookie-option-label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: flex-start;
}
.cookie-option-checkbox {
  margin-top: 4px;
  cursor: pointer;
}
.cookie-option-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-option-desc {
  font-size: 13px;
  color: rgba(229, 231, 235, 0.6);
  margin: 4px 0 0;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}
.policy-content h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
}
.policy-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: #60a5fa;
}
.policy-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 8px;
}
.policy-content p {
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.85);
  margin: 0 0 16px;
}
.policy-content ul,
.policy-content ol {
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.85);
  margin: 0 0 16px;
  padding-left: 24px;
}
.policy-content li {
  margin-bottom: 8px;
}
.policy-content a {
  color: #60a5fa;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.policy-content a:hover {
  color: #93c5fd;
}
.policy-content code {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
}
.cookie-table th {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cookie-table tr:last-child td {
  border-bottom: none;
}
.policy-updated {
  color: rgba(229, 231, 235, 0.6);
  font-size: 14px;
  margin-bottom: 32px;
}

/* App Screenshot Carousel */
#app-preview {
  padding-top: 24px;
  padding-bottom: 56px;
  overflow: visible;
}
.carousel-header {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.carousel-header .section-title {
  text-align: left;
  margin: 0;
}
.carousel-nav {
  display: flex;
  gap: 8px;
}
.carousel-nav-btn {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e7eb;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}
.carousel-viewport {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 16px max(1rem, calc(50vw - 550px));
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: min(90vw, 1100px);
  margin: 0;
}
.carousel-zoom-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.carousel-zoom-btn:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
.carousel-zoom-btn img {
  display: block;
  width: 100%;
  height: auto;
}
.carousel-caption {
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  color: rgba(229, 231, 235, 0.8);
  text-align: center;
  transition: opacity 0.3s;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}
.carousel-dot.active {
  background: #60a5fa;
}

/* Carousel Lightbox */
.carousel-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  align-items: center;
  justify-content: center;
}
.carousel-lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.carousel-lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.carousel-lightbox-btn {
  position: absolute;
  z-index: 10;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e7eb;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.carousel-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}
.carousel-lightbox-close {
  top: 16px;
  right: 16px;
}
.carousel-lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-lightbox-inner {
  max-width: min(94vw, 1200px);
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.carousel-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 7rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b1220;
  object-fit: contain;
}
.carousel-lightbox-caption {
  max-width: min(92vw, 900px);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 14px;
  color: rgba(229, 231, 235, 0.8);
}

/* No-Hassle Grid */
.no-hassle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.no-hassle-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.no-hassle-item:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.no-hassle-item svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 9px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.22);
}
.no-hassle-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
.no-hassle-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(229, 231, 235, 0.72);
}

/* Workflow Steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.workflow-step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.workflow-step:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.3);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.workflow-step-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.workflow-step-desc {
  color: rgba(229, 231, 235, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* Pricing CTA */
.pricing-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.pricing-button {
  width: 100%;
}
.pricing-cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(229, 231, 235, 0.5);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .carousel-header {
    flex-direction: column;
    align-items: center;
  }
  .carousel-header .section-title {
    text-align: center;
  }
  .carousel-zoom-btn {
    border-radius: 8px;
  }
  .no-hassle-grid {
    grid-template-columns: 1fr;
  }
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-buttons {
    justify-content: stretch;
  }
  .cookie-banner-buttons .button {
    flex: 1;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

