/* ─── Lincc Landing Page — Static CSS ─── */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ─── Utilities ─── */

.section-inner, .landing-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) { .section-inner, .landing-container { padding: 0 24px; } }
@media (min-width: 1024px) { .section-inner, .landing-container { padding: 0 32px; } }

.gradient-text {
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: block;
  color: #845EF7;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* ─── Nav ─── */

.nav, .page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243,244,246,0.5);
}

.nav-inner, .page-nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 640px) { .nav-inner, .page-nav-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .nav-inner, .page-nav-inner { padding: 0 32px; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

@media (min-width: 640px) { .nav-links { display: flex; } }
.nav-links a:hover { color: #845EF7; }

.nav-cta {
  padding: 10px 20px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  box-shadow: 0 8px 24px rgba(132,94,247,0.25);
  transform: translateY(-2px);
}

/* ─── Hero ─── */

.hero {
  padding-top: 112px;
  padding-bottom: 80px;
  text-align: center;
}

@media (min-width: 640px) { .hero { padding-top: 144px; } }

.hero-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) { .hero-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .hero-inner { padding: 0 32px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(255,107,107,0.1), rgba(132,94,247,0.1), rgba(92,124,250,0.1));
  border: 1px solid rgba(132,94,247,0.2);
  color: #845EF7;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 640px) { .hero h1 { font-size: 48px; } }
@media (min-width: 768px) { .hero h1 { font-size: 60px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 72px; } }

.hero-sub {
  font-size: 18px;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (min-width: 640px) { .hero-sub { font-size: 20px; } }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.hero-cta:hover {
  box-shadow: 0 16px 40px rgba(132,94,247,0.3);
  transform: translateY(-2px);
}

.hero-note {
  font-size: 14px;
  color: #9ca3af;
}

/* ─── Preview Cards ─── */

.preview-cards {
  margin-top: 64px;
}

@media (min-width: 640px) { .preview-cards { margin-top: 80px; } }

.preview-cards.desktop-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: linear-gradient(135deg, #f9fafb, #fff);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(229,231,235,0.6);
  box-shadow: 0 24px 48px rgba(229,231,235,0.5);
}

@media (min-width: 640px) { .preview-cards.desktop-grid { display: grid; } }
@media (min-width: 1024px) { .preview-cards.desktop-grid { grid-template-columns: repeat(3, 1fr); } }

.preview-cards.mobile-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.preview-cards.mobile-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 640px) { .preview-cards.mobile-scroll { display: none; } }

.preview-cards.mobile-scroll .preview-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.preview-card {
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.preview-card-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-card-title {
  font-size: 18px;
  font-weight: 600;
}

.preview-card-location {
  font-size: 14px;
  opacity: 0.8;
}

.preview-card-time {
  font-size: 14px;
  font-weight: 500;
}

.preview-card-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 500;
  width: fit-content;
}

/* ─── Why Lincc ─── */

.why-lincc {
  padding: 48px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: rgba(249,250,251,0.5);
  text-align: center;
}

.why-lincc h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 640px) { .why-lincc h2 { font-size: 30px; } }
@media (min-width: 1024px) { .why-lincc h2 { font-size: 36px; } }

.why-lincc .tagline {
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 640px) { .why-lincc .tagline { font-size: 24px; } }

/* ─── How It Works ─── */

.how-it-works {
  padding: 80px 0;
  text-align: center;
}

@media (min-width: 640px) { .how-it-works { padding: 112px 0; } }

.how-it-works h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 64px;
}

@media (min-width: 640px) { .how-it-works h2 { font-size: 36px; } }
@media (min-width: 1024px) { .how-it-works h2 { font-size: 48px; } }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

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

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.step-card p {
  color: #6b7280;
  line-height: 1.7;
}

/* ─── Features ─── */

.features {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

@media (min-width: 640px) { .features { padding: 112px 0; } }

.features > .section-inner > h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 640px) { .features > .section-inner > h2 { font-size: 36px; } }
@media (min-width: 1024px) { .features > .section-inner > h2 { font-size: 48px; } }

.features > .section-inner > p {
  font-size: 18px;
  color: #6b7280;
  max-width: 640px;
  margin: 16px auto 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #f3f4f6;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(132,94,247,0.2);
  box-shadow: 0 8px 24px rgba(132,94,247,0.05);
}

.feature-card > [data-lucide],
.feature-card > svg {
  color: #845EF7;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* ─── For Businesses ─── */

.for-businesses {
  padding: 80px 0;
}

@media (min-width: 640px) { .for-businesses { padding: 112px 0; } }

.biz-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) { .biz-layout { grid-template-columns: 1fr 1fr; gap: 80px; } }

.biz-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

@media (min-width: 640px) { .biz-left h2 { font-size: 36px; } }
@media (min-width: 1024px) { .biz-left h2 { font-size: 48px; } }

.biz-desc {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.7;
}

.biz-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biz-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-card {
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.biz-card-name {
  font-weight: 600;
  font-size: 16px;
}

.biz-card-type {
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 500;
}

.biz-card-offer {
  width: 100%;
  font-size: 14px;
  opacity: 0.9;
}

/* ─── Categories ─── */

.categories {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

@media (min-width: 640px) { .categories { padding: 112px 0; } }

.categories h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 48px;
}

@media (min-width: 640px) { .categories h2 { font-size: 36px; } }

.category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  cursor: default;
  transition: all 0.2s;
}

.category-tag:hover {
  border-color: #845EF7;
  color: #845EF7;
  background: rgba(132,94,247,0.05);
}

/* ─── The Problem ─── */

.the-problem {
  padding: 80px 0;
}

@media (min-width: 640px) { .the-problem { padding: 112px 0; } }

.problem-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) { .problem-layout { grid-template-columns: 1fr 1fr; gap: 80px; } }

.problem-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

@media (min-width: 640px) { .problem-left h2 { font-size: 36px; } }
@media (min-width: 1024px) { .problem-left h2 { font-size: 48px; } }

.problem-right { position: relative; }

.problem-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #f3f4f6;
}

.problem-card > [data-lucide]:first-child,
.problem-card > svg:first-child {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  color: #fff;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-weight: 600;
  color: #111827;
  font-size: 18px;
  margin-bottom: 4px;
}

.problem-card-subtitle {
  display: block;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
}

.problem-card p {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.7;
}

.problem-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #845EF7;
  font-weight: 600;
  transition: gap 0.2s;
}

.problem-card-link:hover { gap: 12px; }

/* ─── CTA Banner ─── */

.cta-banner {
  padding: 80px 0;
}

.cta-banner > .section-inner {
  max-width: 1024px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) { .cta-banner > .section-inner { padding: 48px; } }
@media (min-width: 1024px) { .cta-banner > .section-inner { padding: 64px; } }

.cta-banner h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 640px) { .cta-banner h2 { font-size: 36px; } }
@media (min-width: 1024px) { .cta-banner h2 { font-size: 48px; } }

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) { .cta-banner p { font-size: 20px; } }

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: #fff;
  color: #845EF7;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s;
}

.cta-banner-btn:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* ─── Waitlist ─── */

.waitlist {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

@media (min-width: 640px) { .waitlist { padding: 112px 0; } }

.waitlist h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 640px) { .waitlist h2 { font-size: 36px; } }

.waitlist > .section-inner > p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 40px;
}

#waitlist-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  max-width: 448px;
  margin: 0 auto;
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  outline: none;
  font-size: 16px;
  color: #111827;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #845EF7;
  box-shadow: 0 0 0 3px rgba(132,94,247,0.15);
}

.form-group select {
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #845EF7;
  cursor: pointer;
}

.business-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
}

.form-submit:hover {
  box-shadow: 0 8px 24px rgba(132,94,247,0.3);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin-top: 0;
}

.waitlist-success {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  max-width: 448px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #f3f4f6;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.waitlist-success h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.waitlist-success p {
  color: #6b7280;
  font-size: 16px;
}

.waitlist-error p {
  color: #ef4444;
  font-size: 14px;
  background: #fef2f2;
  padding: 8px 16px;
  border-radius: 8px;
  max-width: 448px;
  margin: 12px auto 0;
  text-align: left;
}

/* ─── Footer ─── */

.footer, .landing-footer {
  padding: 64px 0;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.footer-inner, .landing-footer > .landing-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) { .footer-inner, .landing-footer > .landing-container { padding: 0 24px; } }
@media (min-width: 1024px) { .footer-inner, .landing-footer > .landing-container { padding: 0 32px; } }

.footer-top, .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top, .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #6b7280;
  transition: color 0.2s;
}

.footer-col a:hover { color: #845EF7; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom span,
.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
}

.footer-social, .footer-socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social a, .footer-socials a {
  color: #d1d5db;
  transition: color 0.2s;
}

.footer-social a:hover, .footer-socials a:hover { color: #845EF7; }

/* ─── Sub-pages (About, Privacy, Terms, Contact) ─── */

.page-hero {
  padding-top: 128px;
  padding-bottom: 64px;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) { .page-hero { padding-top: 144px; padding-left: 24px; padding-right: 24px; } }

.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.1;
}

@media (min-width: 640px) { .page-hero h1 { font-size: 48px; } }

.page-hero .subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

.page-content {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

@media (min-width: 640px) { .page-content { padding: 0 24px 80px; } }

.page-content p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  margin-top: 40px;
}

.page-content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content li {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content a {
  color: #845EF7;
}

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

.page-date {
  color: #9ca3af;
  margin-bottom: 48px;
  font-size: 16px;
}

/* Values grid (About page) */
.values-section {
  padding: 80px 0;
  background: #f9fafb;
}

.values-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .values-grid { padding: 0 24px; } }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f3f4f6;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(132,94,247,0.1));
  color: #845EF7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f3f4f6;
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  margin-top: 0;
}

.contact-card p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 16px;
}

.contact-card a {
  color: #845EF7;
  font-weight: 600;
}

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

/* CTA box (Contact/About pages) */
.page-cta-box {
  background: linear-gradient(135deg, rgba(255,107,107,0.05), rgba(132,94,247,0.05), rgba(92,124,250,0.05));
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(132,94,247,0.1);
  text-align: center;
}

@media (min-width: 640px) { .page-cta-box { padding: 48px; } }

.page-cta-box h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  margin-top: 0;
}

.page-cta-box p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

.page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FF6B6B 0%, #845EF7 100%);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.2s;
}

.page-cta-btn:hover {
  box-shadow: 0 16px 40px rgba(132,94,247,0.3);
  transform: translateY(-2px);
}

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

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