@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --background: #ffffff;
  --foreground: #14192b;
  --border: #d7dde6;
  --card: #ffffff;
  --primary: #1a41ad;
  --primary-foreground: #ffffff;
  --secondary: #eaeef4;
  --secondary-foreground: #38445c;
  --muted-foreground: #626c80;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 2px rgba(20, 25, 43, 0.06);
  --shadow-md: 0 4px 10px rgba(20, 25, 43, 0.08);
  --shadow-lg: 0 10px 25px rgba(20, 25, 43, 0.12);
  --shadow-xl: 0 20px 40px rgba(20, 25, 43, 0.14);
  --container-max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.text-primary {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 9999px;
  padding: 0.55rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}

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

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

.btn-primary:hover {
  background: #163890;
}

.btn-outline {
  background: transparent;
  border-color: rgba(20, 25, 43, 0.15);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
}

.btn-secondary:hover {
  background: #eef1f8;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.6rem 1rem;
}

.btn-ghost:hover {
  background: rgba(26, 65, 173, 0.06);
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

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

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

.brand img {
  height: 1.5rem;
  width: auto;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

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

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 43, 0.4);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background: var(--background);
  border-left: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-menu-links a.active {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .mobile-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.bg-muted {
  background: rgba(234, 238, 244, 0.35);
}

.bg-muted-strong {
  background: rgba(234, 238, 244, 0.6);
}

.bg-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.border-y {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-dot::before,
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
}

.pulse-dot::before {
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

h1.display {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  h1.display {
    font-size: 4.5rem;
  }
}

h2.heading {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h2.heading {
    font-size: 2.25rem;
  }
}

.lede {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.muted {
  color: var(--muted-foreground);
}

/* Hero */
.hero {
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-copy {
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(26, 65, 173, 0.2), transparent);
  pointer-events: none;
}

/* Grids */
.grid-2 {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.specialties-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

.tech-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 48rem;
  margin: 0 auto;
}

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

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
}

.reason-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--foreground);
  color: var(--accent, #2fb8c6);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.reason-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reason-item p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .reason-item {
    align-items: center;
  }
}

.card {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  height: 100%;
}

.card.bordered {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Featured work */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
  }
}

.work-grid {
  display: grid;
  gap: 2rem;
}

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

.work-thumb {
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-thumb img {
  transform: scale(1.05);
}

.work-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.work-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.work-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA */
.cta {
  text-align: center;
  padding: 6rem 0;
}

.cta h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

.cta p {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.feature-list svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.tag {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.eyebrow-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.sub-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.work-image-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.columns-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

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

.columns-2 h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.columns-2 ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.columns-2 li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.columns-2 svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.advantages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

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

.advantage-card .icon-box {
  margin: 0 auto 0.75rem;
}

.quote-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: #facc15;
  margin-bottom: 1.5rem;
}

.stars svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.testimonial-card .review {
  font-style: italic;
  color: var(--foreground);
  flex-grow: 1;
  margin-bottom: 2rem;
}

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

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid rgba(26, 65, 173, 0.2);
  flex-shrink: 0;
}

.testimonial-person h4 {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-person p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* Mission / Vision */
.mission-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.mission-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.mv-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 68rem;
  margin: 0 auto;
}

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

.mv-card {
  padding: 2.5rem;
  border-radius: 1.5rem;
}

.mv-card.mission {
  background: rgba(234, 238, 244, 0.4);
  border: 1px solid var(--secondary);
}

.mv-card.vision {
  background: var(--primary);
  color: var(--primary-foreground);
}

.mv-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mv-card-head svg {
  width: 2rem;
  height: 2rem;
}

.mv-card-head h2 {
  font-size: 1.75rem;
  font-weight: 800;
}

.mv-card .statement {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
}

.mv-card .desc {
  margin-top: 1.5rem;
  line-height: 1.7;
}

.mv-card.mission .desc {
  color: var(--muted-foreground);
}

.mv-card.vision .desc {
  color: rgba(255, 255, 255, 0.8);
}

.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 64rem;
  margin: 0 auto;
}

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

.value-card {
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.value-icon {
  display: inline-block;
  background: rgba(234, 238, 244, 0.6);
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon-circle {
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  padding: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item .icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-item .label {
  font-weight: 600;
  color: var(--foreground);
}

.contact-item .value {
  color: var(--muted-foreground);
}

.contact-info-below {
  max-width: 56rem;
  margin: 4rem auto 0;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.contact-info-below h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

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

.contact-row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.contact-row-item .icon-circle {
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  padding: 0.85rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.contact-row-item .icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-row-item .label {
  font-weight: 600;
  color: var(--foreground);
}

.contact-row-item .value {
  color: var(--muted-foreground);
}

.contact-social {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

input, textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--foreground);
  background: var(--background);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 65, 173, 0.12);
}

textarea {
  min-height: 150px;
  resize: none;
}

.field-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.field-error.show {
  display: block;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: rgba(26, 65, 173, 0.08);
  color: var(--primary);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-success.show {
  display: flex;
}

/* Footer */
.footer {
  background: rgba(234, 238, 244, 0.5);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

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

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.footer ul a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* 404 */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.notfound .card {
  max-width: 28rem;
  text-align: center;
}

.notfound-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.notfound-icon svg {
  width: 2rem;
  height: 2rem;
  color: #dc2626;
}

.notfound h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Download page */
.download-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.download-card {
  max-width: 26rem;
  text-align: center;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.download-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(26, 65, 173, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.download-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.download-card > p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.download-checklist {
  width: 100%;
  background: rgba(234, 238, 244, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.download-checklist div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-checklist svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-20px);
}

.reveal-left.in-view {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(20px);
}

.reveal-right.in-view {
  transform: translateX(0);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-scale.in-view {
  transform: scale(1);
}
