:root {
  --bg: #0f1419;
  --bg-elevated: #1a1f2e;
  --ink: #f5f5f7;
  --ink-muted: #a8adb8;
  --line: #2d3142;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-soft: rgba(59, 130, 246, 0.12);
  --accent-2: #0f172a;
  --accent-glow: rgba(59, 130, 246, 0.25);
  /* Vibrant accent colors for sections */
  --accent-emerald: #10b981;
  --accent-coral: #ff6b35;
  --accent-purple: #7c3aed;
  --accent-teal: #0891b2;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --dark: #080b12;
  --dark-line: rgba(248, 250, 252, 0.06);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 24px 48px -12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --space-section: clamp(4rem, 10vw, 7rem);
  --container: min(1120px, 100% - 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes mesh-shift {
  0% {
    opacity: 0.55;
  }
  100% {
    opacity: 0.85;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(59, 130, 246, 0.08), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  background-position: center top, center center, center center;
  -webkit-font-smoothing: antialiased;
}

/* Scroll-triggered & stagger (shared motion language) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.reveal-stagger.is-inview > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-inview > *:nth-child(1) {
  transition-delay: 0.04s;
}
.reveal-stagger.is-inview > *:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger.is-inview > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.is-inview > *:nth-child(4) {
  transition-delay: 0.22s;
}
.reveal-stagger.is-inview > *:nth-child(5) {
  transition-delay: 0.28s;
}
.reveal-stagger.is-inview > *:nth-child(6) {
  transition-delay: 0.34s;
}
.reveal-stagger.is-inview > *:nth-child(7) {
  transition-delay: 0.4s;
}
.reveal-stagger.is-inview > *:nth-child(8) {
  transition-delay: 0.46s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-inview {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-stagger > *,
  .reveal-stagger.is-inview > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy > *,
  .hero-visual--motion,
  .hero-card--float {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .work-thumb::after {
    display: none;
  }

  .hero--mesh::before {
    animation: none;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 40px -24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #6366f1 100%);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav ul a {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #6366f1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.site-nav ul a:hover {
  color: var(--ink);
}

.site-nav ul a:hover::after {
  transform: scaleX(1);
}

/* Active navigation styling */
.nav-link.active {
  color: var(--ink);
  font-weight: 700;
}

.nav-link.active::after {
  transform: scaleX(1) !important;
  background: linear-gradient(90deg, var(--accent), #6366f1) !important;
  height: 3px !important;
  bottom: -6px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.35rem;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 4.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 1.75rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .site-nav .btn {
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 8px 24px -6px var(--accent-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 12px 28px -8px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--accent);
  background: #fff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

a.btn-primary,
a.btn-primary:hover {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding-block: clamp(3.25rem, 8vw, 5.75rem);
  overflow: hidden;
}

.hero--mesh::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: min(72vh, 640px);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37, 99, 235, 0.14), transparent 70%);
  pointer-events: none;
  animation: mesh-shift 8s ease-in-out infinite alternate;
}

.hero-copy > * {
  opacity: 0;
  animation: fade-up 0.75s var(--ease-out) forwards;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 0.04s;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.28s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.36s;
}
.hero-copy > *:nth-child(6) {
  animation-delay: 0.44s;
}

.hero-visual--motion {
  opacity: 0;
  animation: fade-up 0.85s var(--ease-out) 0.18s forwards;
}

.hero-card--float {
  animation: float-card 6s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.045em;
  margin: 0 0 1.25rem;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, #2563eb 0%, #6366f1 45%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 0 0 0.35rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 520px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero-card-header {
  display: flex;
  gap: 6px;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.95);
}

.hero-card-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.hero-card-header span:nth-child(1) {
  background: #e8988a;
}

.hero-card-header span:nth-child(2) {
  background: #e6c16a;
}

.hero-card-header span:nth-child(3) {
  background: #8fc98f;
}

.hero-card-body {
  padding: 1.5rem;
}

.mock-line {
  height: 10px;
  border-radius: 6px;
  background: var(--line);
  margin-bottom: 0.65rem;
}

.mock-line.w-40 {
  width: 40%;
}

.mock-line.w-70 {
  width: 70%;
}

.mock-line.w-full {
  width: 100%;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.mock-grid div {
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  border: 1px solid var(--line);
}

.mock-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.hero-glow {
  position: absolute;
  inset: 20% -20% -30%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(37, 99, 235, 0.22),
    transparent 62%
  );
  z-index: 0;
  pointer-events: none;
}

/* Logos strip */
.logos {
  padding-block: 2rem;
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(8px);
}

.logos-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logos-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.75;
}

/* Sections */
.section {
  padding-block: var(--space-section);
}

.section-tint {
  background: rgba(30, 35, 45, 0.55);
  backdrop-filter: blur(6px);
}

/* Vibrant section accents */
#product {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(8, 145, 178, 0.04) 100%);
}

#features {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(37, 99, 235, 0.04) 100%);
}

#location {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(244, 63, 94, 0.04) 100%);
}

#pillars {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.06) 0%, rgba(124, 58, 237, 0.04) 100%);
}

#surfaces {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(245, 158, 11, 0.04) 100%);
}

#pricing {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(8, 145, 178, 0.04) 100%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head-row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.title-accent {
  color: var(--accent);
}

.section-intro {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

.section-intro.tight {
  max-width: 42ch;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}

.text-link:hover {
  color: var(--accent-hover);
  transform: translateX(3px);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.25rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  border-top-color: #1d4ed8;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

@media (min-width: 901px) {
  .card h3 {
    font-size: 1.1rem;
  }
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--line);
  overflow: hidden;
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 96%
  );
  opacity: 0;
  pointer-events: none;
}

.work-card:hover .work-thumb::after {
  animation: shine 0.95s var(--ease-out);
}

.work-a {
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 55%, #2563eb 100%);
}

.work-b {
  background: linear-gradient(145deg, #312e81 0%, #4338ca 50%, #6366f1 100%);
}

.work-c {
  background: linear-gradient(145deg, #0f172a 0%, #134e4a 45%, #0d9488 100%);
}

.work-meta {
  padding: 1.25rem 1.35rem 1.5rem;
}

.work-meta h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.15rem;
}

.work-meta p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.work-card:nth-child(1) .pill {
  background: rgba(16, 185, 129, 0.15);
  color: #065f46;
}

.work-card:nth-child(2) .pill {
  background: rgba(124, 58, 237, 0.15);
  color: #5b21b6;
}

.work-card:nth-child(3) .pill {
  background: rgba(255, 107, 53, 0.15);
  color: #7c2d12;
}

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

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

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1.25rem 0 1.25rem 3.25rem;
  border-bottom: 1px solid var(--line);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.15rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.steps strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.steps span {
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* Testimonial */
.section-dark {
  background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(37, 99, 235, 0.15), transparent 55%),
    linear-gradient(165deg, #020617 0%, #0f172a 40%, #020617 100%);
  color: #f8fafc;
  border-block: 1px solid rgba(148, 163, 184, 0.12);
}

.testimonial-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.testimonial {
  margin: 0;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 600;
  line-height: 1.38;
  margin: 0 0 2rem;
  letter-spacing: -0.03em;
  color: #f1f5f9;
}

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

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial .role {
  display: block;
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.95);
  margin-top: 0.15rem;
}

/* CTA / form */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 800px) {
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

.cta-title {
  margin-bottom: 0.75rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

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

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

/* Footer */
.site-footer {
  padding-block: 3rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.logo-footer .logo-mark {
  box-shadow: none;
}

.footer-tagline {
  margin: 1rem 0 0;
  max-width: 32ch;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* —— Product marketing additions —— */

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.hero-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-2);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.hero-tag:hover {
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.hero-card-product {
  padding-top: 1.25rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.mock-thumb {
  width: 40px;
  height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--line), #cfc8ba);
}

.mock-row-lines {
  flex: 1;
  min-width: 0;
}

.mock-row-lines .mock-line {
  margin-bottom: 0.35rem;
}

.mock-row-lines .mock-line:last-child {
  margin-bottom: 0;
}

.mock-line.w-28 {
  width: 28%;
}

.mock-line.w-30 {
  width: 30%;
}

.mock-line.w-35 {
  width: 35%;
}

.mock-line.w-45 {
  width: 45%;
}

.mock-line.w-50 {
  width: 50%;
}

.mock-line.w-55 {
  width: 55%;
}

.mock-pill {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.mock-pill.sale {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.mock-pill.buy {
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
}

.mock-pill.stock {
  background: rgba(15, 23, 42, 0.06);
  color: var(--ink-muted);
}

.mock-pill.tow {
  background: rgba(14, 165, 233, 0.14);
  color: #0369a1;
}

.card-platform .platform-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.08));
  color: var(--accent);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.card-platform:nth-child(1) .platform-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(8, 145, 178, 0.1));
  color: #10b981;
}

.card-platform:nth-child(1):hover .platform-icon {
  box-shadow: 0 8px 20px -10px rgba(16, 185, 129, 0.4);
}

.card-platform:nth-child(2) .platform-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(99, 102, 241, 0.1));
  color: #7c3aed;
}

.card-platform:nth-child(2):hover .platform-icon {
  box-shadow: 0 8px 20px -10px rgba(124, 58, 237, 0.4);
}

.card-platform:nth-child(3) .platform-icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(245, 158, 11, 0.1));
  color: #ff6b35;
}

.card-platform:nth-child(3):hover .platform-icon {
  box-shadow: 0 8px 20px -10px rgba(255, 107, 53, 0.4);
}

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

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.pricing-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-emerald);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.pricing-card:nth-child(1) {
  border-top-color: #10b981;
}

.pricing-card:nth-child(2) {
  border-top-color: #2563eb;
}

.pricing-card:nth-child(3) {
  border-top-color: #7c3aed;
}

.pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 24px 56px -16px rgba(37, 99, 235, 0.22);
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .pricing-card-featured {
    transform: none;
  }
}

@media (min-width: 901px) {
  .pricing-card-featured:hover {
    transform: scale(1.02) translateY(-3px);
  }
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  box-shadow: 0 6px 20px -4px var(--accent-glow);
}

.pricing-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.pricing-for {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.pricing-price {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pricing-period {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}

.checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.85;
}

.pricing-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-inline: auto;
}

.contact-form select {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Product screenshots */
.section-screenshots {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--bg) 55%);
  border-block: 1px solid var(--line);
}

.inline-code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.84em;
  font-weight: 600;
  padding: 0.12em 0.45em;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-hover);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: 1.5rem;
  align-items: start;
}

.shot-span-full {
  grid-column: 1 / -1;
}

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

.shot-frame {
  margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;
}

.shot-frame:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--line);
}

.shot-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.shot-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.shot-dots span:nth-child(1) {
  background: #f87171;
}

.shot-dots span:nth-child(2) {
  background: #fbbf24;
}

.shot-dots span:nth-child(3) {
  background: #4ade80;
}

.shot-url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-media {
  position: relative;
  background: #0f172a;
  line-height: 0;
}

.shot-media img {
  width: 100%;
  height: auto;
  display: block;
}

.shot-caption {
  margin: 0;
  padding: 0.9rem 1.1rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: rgba(248, 250, 252, 0.95);
  border-top: 1px solid var(--line);
}

.shot-frame--device {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.75rem;
}

.shot-device-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.shot-media--phone {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 56px -16px rgba(15, 23, 42, 0.45);
}

.shot-media--phone img {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .shot-frame:hover {
    transform: none;
  }
}

/* Location transparency band */
.section-location {
  background: linear-gradient(135deg, #020617 0%, #0f172a 38%, #1e3a8a 100%);
  color: #f8fafc;
  border-block: 1px solid rgba(148, 163, 184, 0.12);
}

.section-location .eyebrow {
  color: #93c5fd;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

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

.location-title {
  color: #f8fafc;
}

.location-lead {
  color: rgba(226, 232, 240, 0.9) !important;
  max-width: 48ch;
}

.location-benefits {
  margin: 0;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.checklist--light li {
  color: rgba(241, 245, 249, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.checklist--light li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.checklist--light li::before {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  opacity: 1;
}

/* Hero detail list */
.hero-highlights {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 42ch;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.hero-highlights li:last-child {
  margin-bottom: 0;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6366f1);
}

/* Module cards — numbered + bullets */
.card-module {
  position: relative;
  padding-top: 2.25rem;
}

.module-index {
  position: absolute;
  top: 1.35rem;
  left: 1.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.card-module h3 {
  padding-right: 2rem;
}

/* Vibrant colors for module cards */
.card-module:nth-child(1) {
  border-top-color: #10b981;
}

.card-module:nth-child(2) {
  border-top-color: #7c3aed;
}

.card-module:nth-child(3) {
  border-top-color: #ff6b35;
}

.card-module:nth-child(4) {
  border-top-color: #0891b2;
}

.card-module:nth-child(5) {
  border-top-color: #f59e0b;
}

.card-module:nth-child(6) {
  border-top-color: #f43f5e;
}

.module-bullets {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.module-bullets li {
  margin-bottom: 0.35rem;
}

.module-bullets li:last-child {
  margin-bottom: 0;
}

/* Pillars / value props */
.section-pillars .section-intro {
  max-width: 52ch;
}

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

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

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

.pillar-card {
  padding: 1.5rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pillar-card:nth-child(1) {
  border-left-color: #10b981;
}

.pillar-card:nth-child(2) {
  border-left-color: #7c3aed;
}

.pillar-card:nth-child(3) {
  border-left-color: #ff6b35;
}

.pillar-card:nth-child(4) {
  border-left-color: #0891b2;
}

.pillar-card:nth-child(5) {
  border-left-color: #f59e0b;
}

.pillar-card:nth-child(6) {
  border-left-color: #f43f5e;
}

.pillar-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow);
}

.pillar-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pillar-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* FAQ */
.section-faq .section-intro {
  max-width: 46ch;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  background: var(--bg-elevated);
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.9375rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 0.9rem 1.15rem 1.15rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.62;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item {
    transition: none;
  }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  color: white;
  padding: clamp(1.5rem, 8vw, 3rem) 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0 0 0.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
  font-weight: 500;
}

/* ===== FEATURE DETAILS ===== */
.feature-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-item {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin: 1rem 0 0.75rem;
  color: var(--ink);
}

.feature-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.gallery-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.15);
  transform: translateY(-6px);
}

.gallery-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.08);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.gallery-item h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.1rem;
  color: var(--ink);
}

.gallery-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== UPLOAD SECTION ===== */
.upload-section {
  margin-top: 3rem;
}

.upload-area {
  background: var(--bg-elevated);
  border: 2px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.upload-area h3 {
  margin: 1rem 0 0.5rem;
  color: var(--ink);
}

.upload-area p {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
}

.uploaded-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

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

.photo-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}

.photo-thumb:hover .photo-remove {
  opacity: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-vertical {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: 1.75rem;
}

.contact-form {
  background: var(--bg-elevated);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  width: 100%;
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.5rem;
}

.contact-info {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.contact-info h2 {
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* ===== FORM STYLES ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink);
  background: var(--bg-elevated);
  transition: all 0.3s ease;
}

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

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
}

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid #86efac;
}

.form-message.error {
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
  border: 1px solid #fb7185;
}

/* ===== CONTACT INFO BLOCKS ===== */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.info-block {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-row .info-block:last-child {
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  border-bottom: none;
}

.info-row:last-child .info-block {
  border-bottom: none;
}

.info-block h3 {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.info-block p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.4;
  font-size: 0.85rem;
}

.info-block a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.info-block a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.highlight-block {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-soft);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: none;
}

.quick-links {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quick-links a {
  color: var(--accent);
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-links a:hover {
  color: var(--accent-hover);
  padding-left: 0.5rem;
}

/* ===== FAQ GRID ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ===== SECTION CTA ===== */
.section-cta {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  color: white;
  padding: clamp(3rem, 10vw, 5rem) 0;
}

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

.cta-content h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: white;
}

.cta-content p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.btn-md {
  font-size: 0.95rem !important;
  padding: 0.75rem 1.5rem !important;
}

.btn-lg {
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  margin-top: clamp(3rem, 10vw, 5rem);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--ink);
}

.footer-section p {
  margin: 0 0 0.75rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: var(--ink-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

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

.footer-bottom a {
  color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: var(--accent-hover);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .feature-details {
    grid-template-columns: 1fr;
  }

  .section-cta .cta-content {
    padding: 0 1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .contact-vertical {
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

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

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

  .info-row .info-block:last-child {
    border-bottom: none;
  }
}
