/* Samtech Computers — Static Export Styles */
:root {
  --radius: 0.375rem;
  --background: #fbfaf9;
  --foreground: #182033;
  --ink: #131a2b;
  --surface: #ffffff;
  --surface-2: #f4f3f2;
  --accent: #b33625;
  --accent-foreground: #fbfaf9;
  --muted-foreground: #5e6b7f;
  --border: #e0dee0;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; border-color: var(--border); }

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

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

.text-accent { color: var(--accent); }
.text-foreground { color: var(--foreground); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: var(--surface); }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }

.bg-accent { background-color: var(--accent); color: var(--accent-foreground); }
.bg-surface { background-color: var(--surface); }
.bg-surface-2 { background-color: var(--surface-2); }
.bg-foreground { background-color: var(--foreground); color: var(--background); }
.bg-background { background-color: var(--background); }

.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-border { border-color: var(--border); }

.rounded-md { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Header / Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251, 250, 249, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img { width: 2.25rem; height: 2.25rem; object-fit: contain; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.brand-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.desktop-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-links { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  color: var(--muted-foreground);
}

.nav-link:hover,
.nav-link.active { color: var(--foreground); }

.nav-link.active { font-weight: 500; }

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover { opacity: 0.9; }

.btn-outline {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--surface);
  background: transparent;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 0.875rem 1.5rem; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.25rem;
}

.mobile-menu.open { display: block; }

.mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--border);
}

.mobile-link:last-child { border-bottom: none; }

/* Hero */
.hero-section {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(24, 32, 51, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 80%);
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; padding-top: 7rem; padding-bottom: 8rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(179, 54, 37, 0.4);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 999px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .hero-title { font-size: 4rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 5rem; }
}

.hero-lead {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.6;
}

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

.identity-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 20px 60px -30px rgba(30, 41, 59, 0.25);
}

@media (min-width: 768px) {
  .identity-card { padding: 2.5rem; }
}

.identity-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.identity-header img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.identity-name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.identity-meta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

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

.stat-n {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.stat-l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.credentials-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.credential svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Section utilities */
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-family: var(--font-display);
  max-width: 22ch;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.section-lead {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.6;
}

.section-py { padding-top: 6rem; padding-bottom: 6rem; }

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

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

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -25px rgba(30, 41, 59, 0.35);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.service-footer svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.service-card:hover .service-footer svg {
  transform: translateX(4px);
}

/* Check grid */
.check-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.check-cell {
  background: var(--surface);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-cell svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.check-cell span {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* CTA */
.cta-box {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--foreground);
  color: var(--background);
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .cta-box { padding: 4rem; }
}

.cta-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Footer */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

.footer-list li,
.footer-list a {
  font-size: 0.875rem;
}

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

.footer-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-tag {
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Icon helpers */
.icon { display: inline-block; vertical-align: middle; }

/* About page */
.page-header {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .page-header { padding: 8rem 0; }
}

.page-title {
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-family: var(--font-display);
  max-width: 18ch;
}

@media (min-width: 768px) {
  .page-title { font-size: 4rem; }
}

@media (min-width: 1024px) {
  .page-title { font-size: 5rem; }
}

.accent-line {
  margin-top: 2rem;
  width: 4rem;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
}

.pillar-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.pillar-cell {
  background: var(--surface);
  padding: 2rem;
}

@media (min-width: 768px) {
  .pillar-cell { padding: 2.5rem; }
}

.pillar-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  gap: 1rem;
}

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

.cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  transition: border-color 0.2s ease;
}

.cert-card:hover { border-color: var(--accent); }

.cert-card svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.cert-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.cert-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Services page */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.service-nav a {
  font-size: 11px;
  letter-spacing: 0.025em;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.service-nav a:hover { border-color: var(--accent); color: var(--accent); }

.service-section {
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 6rem;
}

.service-section.alt { background: var(--surface-2); }

.service-section-inner {
  display: grid;
  gap: 3rem;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .service-section-inner { grid-template-columns: 1fr 1.5fr; }
}

.service-section-sticky {
  position: sticky;
  top: 6rem;
}

.service-section-num {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-display);
}

.service-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0.375rem;
}

.service-section-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-section-title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  margin: 1rem 0 0.75rem;
}

@media (min-width: 768px) {
  .service-section-title { font-size: 2.25rem; }
}

.service-section-desc {
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.6;
}

.service-item {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--surface);
}

.service-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-item-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Contact page */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

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

.email-card {
  display: block;
  padding: 2rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  transition: opacity 0.2s ease;
}

.email-card:hover { opacity: 0.95; }

.email-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.email-label svg {
  width: 1rem;
  height: 1rem;
}

.email-address {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  line-height: 1.15;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .email-address { font-size: 1.5rem; }
}

.email-hint {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-list {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--surface);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

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

.contact-info-item:hover { background: var(--surface-2); }

.contact-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: 0 20px 60px -30px rgba(30, 41, 59, 0.25);
}

@media (min-width: 768px) {
  .form-card { padding: 2.5rem; }
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: block;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(179, 54, 37, 0.15);
}

.form-input.error,
.form-textarea.error { border-color: var(--accent); }

.form-error {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-alt {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-alt a { color: var(--accent); font-weight: 600; }

.success-box {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 2rem;
  height: 2rem;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .success-title { font-size: 1.875rem; }
}

.success-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-24 { margin-top: 6rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.6; }
.leading-tight { line-height: 1.25; }

.tracking-tight { letter-spacing: -0.02em; }
.tracking-wide { letter-spacing: 0.025em; }

.hidden { display: none; }

@media (min-width: 640px) {
  .sm\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .md\\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\\:grid-cols-\\[1fr_1\\.5fr\\] { grid-template-columns: 1fr 1.5fr; }
  .md\\:grid-cols-\\[1fr_1\\.4fr\\] { grid-template-columns: 1fr 1.4fr; }
}

@media (min-width: 1024px) {
  .lg\\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.inline-flex { display: inline-flex; }
.block { display: block; }
.self-start { align-self: start; }

/* Arrow icon hover */
.arrow-hover svg {
  transition: transform 0.2s ease;
}
.arrow-hover:hover svg {
  transform: translateX(4px);
}
