@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --charcoal:    #1E3020;
  --charcoal-85: rgba(30,48,32,0.85);
  --dark-mid:    #2f4337;
  --dark-card:   rgba(30,48,32,0.82);
  --dark-card-lo: rgba(30,48,32,0.60);
  --accent:      #48a84b;
  --accent-lo:   rgba(72,168,75,0.20);
  --warm-gray:   #607060;
  --white:       #ffffff;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --btn-gradient: linear-gradient(to right, #065f46, #047857, #16a34a);
  --btn-gradient-hover: linear-gradient(to right, #047857, #059669, #22c55e);
  --radius-card: 1.75rem;
  --radius-inner: 1rem;
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography helpers ─────────────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  background: var(--btn-gradient);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 24px rgba(39,94,72,0.18);
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(39,94,72,0.24);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(0,0,0,0.30); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: border-color 0.2s;
}
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.40); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-sm { padding: 0.625rem 1.25rem; }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) { .navbar-wrap { padding: 0.75rem 1.5rem; } }

.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.navbar-logo img { height: 2.75rem; width: auto; }

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar-links { display: flex; } }

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--charcoal); }
.navbar-links a.active { color: var(--accent); }

.navbar-cta {
  background: var(--charcoal);
  color: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  transition: opacity 0.2s;
}
.navbar-cta:hover { opacity: 0.85; color: #fff !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
  color: var(--charcoal);
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1.25rem 1.5rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--charcoal); }
.mobile-menu a.active { color: var(--accent); }

.mobile-cta {
  background: var(--charcoal);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  text-align: center;
  display: block;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: #fff;
  padding: 3.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0,1.5fr) 1fr 1fr;
    align-items: start;
  }
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; max-width: 20rem; }
.footer-logo img { height: 2rem; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; color: var(--warm-gray); line-height: 1.6; }
.footer-brand a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-brand a:hover { color: #fff; }

.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-bottom p, .footer-bottom a { font-size: 0.75rem; color: var(--warm-gray); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ── Hero sections ──────────────────────────────────────────────────────────── */
.page-hero-wrap {
  background: var(--charcoal);
  padding: 0.75rem;
  padding-top: 0.75rem;
}

.page-hero-card {
  position: relative;
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
}

@media (max-width: 640px) {
  .page-hero-wrap { padding: 0; }
  .page-hero-card { border-radius: 0; }
}

.blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(5px);
}

.blob-1 { left: -8%; top: 2%;   width: clamp(280px,30vw,560px); height: clamp(260px,28vw,520px); background: linear-gradient(135deg, rgba(134,239,172,0.78), rgba(45,212,191,0.72)); animation: blob1 14s ease-in-out infinite; border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
.blob-2 { right: -4%; top: -6%; width: clamp(300px,32vw,600px); height: clamp(280px,30vw,560px); background: linear-gradient(135deg, rgba(74,222,128,0.85), rgba(163,230,53,0.80));  animation: blob2 18s ease-in-out infinite; animation-delay:-4s; border-radius: 40% 60% 60% 40%/70% 30% 60% 40%; }
.blob-3 { left: 10%; bottom:10%; width: clamp(220px,24vw,460px); height: clamp(210px,23vw,440px); background: linear-gradient(135deg, rgba(45,212,191,0.74), rgba(99,102,241,0.60));  animation: blob3 12s ease-in-out infinite; animation-delay:-8s; border-radius: 70% 30% 50% 50%/40% 60% 40% 60%; }
.blob-4 { right:28%; bottom:8%; width: clamp(160px,18vw,340px); height: clamp(150px,17vw,320px); background: linear-gradient(135deg, rgba(99,102,241,0.65), rgba(45,212,191,0.62));  animation: blob4 20s ease-in-out infinite; animation-delay:-2s; border-radius: 50% 50% 30% 70%/60% 40% 70% 30%; }
.blob-5 { left: 34%; top: 10%;  width: clamp(200px,22vw,420px); height: clamp(190px,21vw,400px); background: linear-gradient(135deg, rgba(72,168,75,0.70), rgba(134,239,172,0.65));  animation: blob5 16s ease-in-out infinite; animation-delay:-6s; border-radius: 45% 55% 60% 40%/55% 45% 40% 60%; }

.hero-fog {
  position: absolute;
  inset: -3rem;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 50% 40%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 30%, rgba(255,255,255,0.35) 60%, rgba(255,255,255,0) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 7rem 2rem 3rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.hero-h1 .block { display: block; }

.hero-sub {
  color: var(--warm-gray);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 28rem;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0 0.5rem;
}
.hero-link:hover { color: var(--charcoal); }

/* ── Bento grid (home) ──────────────────────────────────────────────────────── */
.bento-wrap {
  position: relative;
  z-index: 10;
  padding: 0 1rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr 1fr;
    height: 660px;
  }
}

.bento-card {
  position: relative;
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  min-height: 220px;
  transition: border-color 0.2s;
  text-decoration: none;
}
.bento-card:hover { border-color: rgba(255,255,255,0.25); }

.bento-card img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(1px);
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,22,12,0.52) 0%, rgba(20,40,22,0.42) 100%);
}

.bento-card .bento-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.bento-card h3 { font-family: var(--font-display); font-weight: 700; color: #fff; }
.bento-card .bento-body { position: relative; z-index: 1; font-size: 0.875rem; color: rgba(255,255,255,0.50); line-height: 1.6; }

.bento-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, #047857, #16a34a);
  box-shadow: 0 10px 20px rgba(39,94,72,0.24);
  transition: all 0.3s;
}
.bento-arrow.lg { width: 2.5rem; height: 2.5rem; }
.bento-arrow.sm { width: 2rem; height: 2rem; }
.bento-card:hover .bento-arrow { transform: translateY(-2px); }

.bento-tall {
  min-height: 280px;
}
@media (min-width: 640px) { .bento-tall { grid-column: span 2; } }
@media (min-width: 768px) { .bento-tall { grid-column: 1; grid-row: span 2; min-height: 0; } }

.bento-wide {
  min-height: 220px;
}
@media (min-width: 768px) { .bento-wide { grid-column: span 2; } }

.bento-h3-lg { font-size: 1.875rem; line-height: 1.2; }
.bento-h3-md { font-size: 1.5rem; }
.bento-h3-sm { font-size: 1.25rem; }

/* ── Marquee ────────────────────────────────────────────────────────────────── */
.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.5rem;
  background: var(--charcoal);
}
.marquee-fade-l {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6rem;
  background: linear-gradient(to right, var(--charcoal), transparent);
  z-index: 10; pointer-events: none;
}
.marquee-fade-r {
  position: absolute; right: 0; top: 0; bottom: 0; width: 6rem;
  background: linear-gradient(to left, var(--charcoal), transparent);
  z-index: 10; pointer-events: none;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
}
.marquee-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 9999px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Stats strip ────────────────────────────────────────────────────────────── */
.stats-section { padding: 3rem 1.5rem; background: var(--dark-mid); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-color: rgba(255,255,255,0.10);
}
.stat-cell {
  padding: 1.5rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-cell:last-child { border-right: none; }
@media (min-width: 640px) { .stat-cell { padding: 1.5rem 3rem; } }

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-value .accent { color: var(--accent); font-size: 0.5em; vertical-align: super; margin-left: 0.25rem; }
.stat-label { color: rgba(255,255,255,0.40); font-size: 0.875rem; letter-spacing: 0.05em; }

/* ── Section headers ────────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.section-h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.section-h2 .accent { color: var(--accent); }
.section-h2 .dim { color: rgba(255,255,255,0.40); }

.section-sub { color: rgba(255,255,255,0.40); font-size: 0.875rem; max-width: 18rem; line-height: 1.6; }
@media (min-width: 640px) { .section-sub { text-align: right; } }

/* ── Work cards ─────────────────────────────────────────────────────────────── */
.work-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .work-grid { grid-template-columns: 1fr 1fr; } }

.work-card {
  position: relative;
  border-radius: var(--radius-inner);
  overflow: hidden;
  height: 520px;
  cursor: pointer;
}
.work-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s; }
.work-card:hover img { transform: scale(1.05); }
.work-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 50%, transparent 100%); }
.work-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.work-category {
  display: inline-block;
  color: rgba(255,255,255,0.70);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 1rem;
}
.work-card h3 { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; line-height: 1.2; }
.work-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; max-width: 28rem; }

/* ── Team / about profile ───────────────────────────────────────────────────── */
.white-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.white-fog {
  position: absolute;
  inset: -3rem;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.65) 35%, rgba(255,255,255,0.20) 65%, rgba(255,255,255,0) 100%);
}

.two-col { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .two-col.reverse > :first-child { order: 1; } }

/* ── Profile card ───────────────────────────────────────────────────────────── */
.profile-card {
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
}
.profile-card-img {
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.7s; }
.profile-card:hover .profile-card-img img { transform: scale(1.08); }
.profile-card-body { padding: 0; }
.profile-card-name { font-family: var(--font-display); font-weight: 600; color: var(--charcoal); }
.profile-card-role { color: var(--accent); font-size: 0.75rem; margin-top: 0.125rem; }

/* ── Glass cards ────────────────────────────────────────────────────────────── */
.glass-card {
  border-radius: var(--radius-inner);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-card-lo {
  border-radius: var(--radius-inner);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card-lo);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Feature check items ────────────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon {
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: var(--accent-lo);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { color: var(--accent); }
.check-item span { font-size: 0.875rem; color: var(--warm-gray); }

/* ── Pricing package card ───────────────────────────────────────────────────── */
.package-card {
  border-radius: var(--radius-inner);
  background: #fff;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.package-bar { height: 0.375rem; background: linear-gradient(to right, var(--accent), rgba(72,168,75,0.50)); }
.package-body { padding: 2.5rem; display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .package-body { grid-template-columns: 1fr 1fr; } }

.package-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); }
.package-badge {
  display: inline-block;
  background: rgba(72,168,75,0.10);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.package-desc { color: var(--warm-gray); font-size: 0.875rem; line-height: 1.6; margin: 1rem 0; }
.price-row { display: flex; align-items: flex-end; gap: 1rem; padding-bottom: 1.75rem; border-bottom: 1px solid rgba(0,0,0,0.06); margin-bottom: 1.75rem; }
.price-main { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--charcoal); }
.price-main-label { color: var(--warm-gray); font-size: 0.875rem; margin-left: 0.5rem; }
.price-plus { color: rgba(0,0,0,0.20); font-size: 1.125rem; margin-bottom: 0.25rem; }
.price-monthly { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent); }
.price-monthly-label { display: block; font-size: 0.75rem; color: var(--warm-gray); }

/* ── Addon cards ─────────────────────────────────────────────────────────────── */
.addon-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .addon-grid { grid-template-columns: repeat(3,1fr); } }

.addon-card {
  border-radius: var(--radius-inner);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.addon-card.dimmed { opacity: 0.60; }

.addon-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.75rem; }
.addon-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: #fff; padding-right: 0.75rem; }
.addon-badge {
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 9999px; flex-shrink: 0;
  background: rgba(72,168,75,0.20); color: var(--accent);
}
.addon-badge.soon { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.40); }
.addon-desc { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.addon-price { display: flex; align-items: flex-end; gap: 0.5rem; margin-bottom: 1.25rem; }
.addon-price-main { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: #fff; }
.addon-price-label { color: rgba(255,255,255,0.40); font-size: 0.875rem; margin-bottom: 0.25rem; }
.addon-check-list { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.5rem; }
.addon-check-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.addon-check-item svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.addon-check-item span { font-size: 0.875rem; color: rgba(255,255,255,0.60); }
.addon-btn {
  display: block;
  text-align: center;
  font-weight: 600;
  padding: 0.625rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  background: var(--accent);
  color: #fff;
  transition: opacity 0.2s;
}
.addon-btn:hover { opacity: 0.9; }
.addon-btn.disabled { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.30); cursor: default; }

/* ── Horizontal scroll cards ────────────────────────────────────────────────── */
.scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 1.5rem;
  scroll-snap-type: x mandatory;
}
.scroll-row::-webkit-scrollbar { display: none; }

.scroll-card {
  flex-shrink: 0;
  width: 18rem;
  height: 24rem;
  border-radius: var(--radius-inner);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
}
.scroll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.scroll-card:hover img { transform: scale(1.05); }
.scroll-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.20), transparent); }
.scroll-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; }
.scroll-card-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.125rem; line-height: 1.2; }
.scroll-card-sub { color: rgba(255,255,255,0.60); font-size: 0.75rem; margin-top: 0.25rem; }

.scroll-controls { display: flex; gap: 0.5rem; }
.scroll-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  transition: border-color 0.2s, color 0.2s;
}
.scroll-btn:hover { border-color: rgba(255,255,255,0.30); color: #fff; }

/* ── Comparison table ───────────────────────────────────────────────────────── */
.compare-table {
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(12px);
}
.compare-head { display: grid; grid-template-columns: 1fr 1fr 1fr; background: var(--charcoal); }
.compare-head div { padding: 1rem 1.5rem; font-size: 0.875rem; font-weight: 600; }
.compare-head .col-feature { color: rgba(255,255,255,0.40); }
.compare-head .col-us { color: var(--accent); }
.compare-head .col-agency { color: rgba(255,255,255,0.40); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.compare-row:nth-child(even) { background: rgba(255,255,255,0.50); }
.compare-row:nth-child(odd) { background: rgba(255,255,255,0.20); }
.compare-row div { padding: 1rem 1.5rem; font-size: 0.875rem; }
.compare-row .col-feature { color: var(--charcoal); font-weight: 500; }
.compare-row .col-us { color: var(--accent); font-weight: 600; }
.compare-row .col-agency { color: var(--warm-gray); }

/* ── Values grid ────────────────────────────────────────────────────────────── */
.values-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3,1fr); } }

.value-card {
  border-radius: var(--radius-inner);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.value-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--accent-lo);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.value-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: #fff; }
.value-desc { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; }

/* ── Stats grid (2×2) ───────────────────────────────────────────────────────── */
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-square {
  border-radius: var(--radius-inner);
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
}
.stat-square-val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #fff; }
.stat-square-label { color: rgba(255,255,255,0.40); font-size: 0.875rem; }

/* ── Stat strip (4 cols, hero bottom) ──────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
}
.stat-strip-cell { padding: 1.25rem 0.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.10); }
.stat-strip-cell:last-child { border-right: none; }
.stat-strip-val { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.stat-strip-label { color: rgba(255,255,255,0.40); font-size: 0.75rem; margin-top: 0.25rem; }

@media (min-width: 640px) {
  .stat-strip-cell { padding: 1.25rem 1.5rem; }
}

/* ── Stat strip 3-col ───────────────────────────────────────────────────────── */
.stat-strip-3 { grid-template-columns: repeat(3,1fr); }

/* ── Process steps ──────────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4,1fr); } }
.process-card {
  border-radius: var(--radius-inner);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card-lo);
}
.process-step { color: var(--accent); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; }
.process-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0.75rem 0 0.5rem; }
.process-desc { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; }

/* ── Portfolio featured card ────────────────────────────────────────────────── */
.featured-card {
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.featured-card:hover { border-color: rgba(255,255,255,0.20); }
.featured-inner { display: grid; }
@media (min-width: 768px) { .featured-inner { grid-template-columns: 1fr 1fr; } }

.featured-preview {
  position: relative;
  min-height: 18rem;
  background: #f0f4f0;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: #e8e8e8;
}
.browser-dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; }
.browser-url {
  flex: 1;
  background: #fff;
  border-radius: 0.25rem;
  padding: 0.125rem 0.75rem;
  font-size: 0.625rem;
  color: #999;
}
.featured-screenshot { width: 100%; height: calc(100% - 2rem); object-fit: cover; object-position: top; }

.featured-badge-cat, .featured-badge-tag {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.featured-badge-cat { top: 1.25rem; left: 1.25rem; background: rgba(255,255,255,0.9); color: var(--charcoal); }
.featured-badge-tag { top: 1.25rem; right: 1.25rem; background: var(--accent); color: #fff; }

.featured-content { padding: 2rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.featured-tagline { color: rgba(255,255,255,0.40); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.75rem; }
.featured-name { font-family: var(--font-display); font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.featured-desc { color: rgba(255,255,255,0.60); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }
.featured-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.featured-tag { font-size: 0.75rem; color: rgba(255,255,255,0.50); padding: 0.375rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.10); }

/* ── Portfolio grid cards ────────────────────────────────────────────────────── */
.portfolio-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: 1fr 1fr 1fr; } }

.portfolio-card {
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.portfolio-card:hover { border-color: rgba(255,255,255,0.20); transform: translateY(-4px); }

.mockup-wrap { position: relative; height: 13rem; padding: 1rem; }
.portfolio-card-cat { position: absolute; top: 1rem; left: 1rem; z-index: 10; background: rgba(255,255,255,0.9); color: var(--charcoal); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.portfolio-card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.portfolio-card-tagline { color: rgba(255,255,255,0.30); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.375rem; }
.portfolio-card-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; line-height: 1.2; }
.portfolio-card-desc { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; flex: 1; }
.portfolio-card-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin: 1rem 0; }
.portfolio-card-tag { font-size: 0.75rem; color: rgba(255,255,255,0.40); padding: 0.25rem 0.625rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.10); }
.portfolio-card-link { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--accent); font-size: 0.875rem; font-weight: 600; }
.portfolio-card-link:hover { text-decoration: underline; }

.portfolio-empty {
  border-radius: var(--radius-inner);
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; text-align: center; min-height: 22rem;
}

/* ── Filter bar ─────────────────────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; padding: 1.5rem; }
.filter-btn {
  font-size: 0.875rem; font-weight: 500; padding: 0.5rem 1.25rem; border-radius: 9999px;
  color: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.30); }
.filter-btn.active { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ── CTA section ────────────────────────────────────────────────────────────── */
.cta-wrap {
  background: var(--charcoal);
  padding: 0 1rem 1rem;
}
.cta-card {
  position: relative;
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
}

@media (max-width: 640px) {
  .cta-wrap { padding: 0; }
  .cta-card { border-radius: 0; }
}
.cta-content {
  position: relative;
  z-index: 10;
  padding: 5rem 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) { .cta-row { flex-direction: row; align-items: center; justify-content: space-between; } }

.cta-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,4vw,3rem); color: var(--charcoal); line-height: 1.1; margin-bottom: 0.75rem; }
.cta-h2 .accent { color: var(--accent); }
.cta-p { color: var(--warm-gray); font-size: 1rem; line-height: 1.6; max-width: 28rem; }
.cta-btns { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

/* ── Check row items (about why us) ────────────────────────────────────────── */
.check-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.check-row-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius-inner);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card-lo);
}
.check-row-icon {
  width: 2rem; height: 2rem;
  border-radius: 0.75rem;
  background: var(--accent-lo);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.125rem;
}
.check-row-icon svg { color: var(--accent); }
.check-row-label { font-weight: 600; font-size: 0.875rem; color: #fff; }
.check-row-sub { color: rgba(255,255,255,0.40); font-size: 0.75rem; margin-top: 0.125rem; }

/* ── Contact form ───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }

.form-label { display: block; color: rgba(255,255,255,0.70); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-label .req { color: var(--accent); }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.30); }
.form-input:focus { border-color: rgba(72,168,75,0.50); box-shadow: 0 0 0 2px rgba(72,168,75,0.15); }
.form-input.error { border-color: rgba(248,113,113,0.60); }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-error { color: #f87171; font-size: 0.75rem; margin-top: 0.25rem; }
.form-server-error { color: #f87171; font-size: 0.875rem; }
.form-footer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; gap: 0.75rem; }
.form-phone-icon { width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,0.10); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.success-box { text-align: center; padding: 2rem 0; }
.success-icon { width: 3.5rem; height: 3.5rem; background: var(--accent-lo); border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.success-h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.success-p { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.success-link { color: var(--accent); font-size: 0.875rem; font-weight: 500; cursor: pointer; background: none; border: none; }
.success-link:hover { text-decoration: underline; }

/* ── Info cards (contact page) ──────────────────────────────────────────────── */
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  border-radius: var(--radius-inner);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--dark-card-lo);
}
.info-card-head { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.5rem; }
.info-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
.info-card-title { font-weight: 600; font-size: 0.875rem; color: #fff; }
.info-card-body { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.6; }

/* ── Divider in white section ───────────────────────────────────────────────── */
.white-divider { border-top: 1px solid rgba(0,0,0,0.07); margin: 0 2rem; position: relative; z-index: 10; }

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.section-dark { background: var(--charcoal); }
.section-mid { background: var(--dark-mid); }
.section-border { border-top: 1px solid rgba(255,255,255,0.06); }

@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2.25rem 1.25rem; }
}

/* ── Scroll reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-bottom { transform: translateY(36px); }
.reveal.from-left   { transform: translateX(-36px); }
.reveal.from-right  { transform: translateX(36px); }
.reveal.visible { opacity: 1; transform: translate(0,0); }

/* ── Word reveal animation ──────────────────────────────────────────────────── */
@keyframes wordReveal {
  0%   { opacity: 0; transform: translateY(110%); }
  100% { opacity: 1; transform: translateY(0); }
}
.word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-top: 0.12em;
  margin-top: -0.12em;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}
.word-inner {
  display: inline-block;
  animation: wordReveal 0.85s cubic-bezier(0.16,1,0.3,1) both;
}

/* ── Blob animations ────────────────────────────────────────────────────────── */
@keyframes blob1 {
  0%,100%{ transform:translate(0,0) scale(1); border-radius:60% 40% 30% 70%/60% 30% 70% 40%; }
  25%    { transform:translate(70px,-90px) scale(1.1); border-radius:30% 60% 70% 40%/50% 60% 30% 60%; }
  50%    { transform:translate(-30px,60px) scale(0.95); border-radius:50% 50% 40% 60%/40% 50% 60% 50%; }
  75%    { transform:translate(-60px,-20px) scale(1.05); border-radius:40% 60% 55% 45%/60% 40% 40% 60%; }
}
@keyframes blob2 {
  0%,100%{ transform:translate(0,0) scale(1); border-radius:40% 60% 60% 40%/70% 30% 60% 40%; }
  33%    { transform:translate(-90px,60px) scale(1.12); border-radius:60% 40% 30% 70%/40% 70% 30% 60%; }
  66%    { transform:translate(70px,-70px) scale(0.9); border-radius:30% 70% 60% 40%/50% 40% 70% 50%; }
}
@keyframes blob3 {
  0%,100%{ transform:translate(0,0) scale(1); border-radius:70% 30% 50% 50%/40% 60% 40% 60%; }
  25%    { transform:translate(60px,90px) scale(1.08); border-radius:40% 60% 30% 70%/60% 40% 70% 30%; }
  75%    { transform:translate(-80px,-50px) scale(0.92); border-radius:50% 50% 70% 30%/30% 70% 50% 50%; }
}
@keyframes blob4 {
  0%,100%{ transform:translate(0,0) scale(1); border-radius:50% 50% 30% 70%/60% 40% 70% 30%; }
  40%    { transform:translate(-70px,-80px) scale(1.15); border-radius:30% 70% 60% 40%/40% 60% 30% 70%; }
  80%    { transform:translate(50px,60px) scale(0.88); border-radius:60% 40% 40% 60%/50% 50% 60% 40%; }
}
@keyframes blob5 {
  0%,100%{ transform:translate(0,0) scale(1); border-radius:45% 55% 60% 40%/55% 45% 40% 60%; }
  50%    { transform:translate(80px,-60px) scale(1.1); border-radius:60% 40% 45% 55%/40% 60% 55% 45%; }
}

/* ── Marquee animation ──────────────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Pulse animation ────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}

/* ── Skill tags ─────────────────────────────────────────────────────────────── */
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.skill-tag { font-size: 0.75rem; font-weight: 500; color: var(--warm-gray); padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(0,0,0,0.08); background: rgba(30,48,32,0.03); }

/* ── Utility ────────────────────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-dim { color: rgba(255,255,255,0.40); }
.text-muted { color: rgba(255,255,255,0.55); }
.text-warm { color: var(--warm-gray); }
.text-charcoal { color: var(--charcoal); }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.w-full { width: 100%; }
.gap-3 { gap: 0.75rem; }
