@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Oswald:wght@400;500;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

.font-display {
  font-family: "Oswald", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

/* â”€â”€ Nav â”€â”€ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .nav-inner {
    height: 80px;
    padding: 0 40px;
  }
}

.nav-logo {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.nav-logo:hover {
  color: #60a5fa;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #60a5fa;
}
.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3b82f6;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
    border-radius: 2px;
  }
  .nav-cta:hover {
    background: #60a5fa;
  }
}
.nav-cta svg {
  width: 14px;
  height: 14px;
}
.burger {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px;
}
@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.burger svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.6);
}
.mobile-overlay.open {
  display: block;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 288px;
  height: 100%;
  background: #0f172a;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 24px 24px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.mobile-panel.open {
  transform: translateX(0);
}
.mobile-panel a {
  padding: 12px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.mobile-panel a:hover,
.mobile-panel a.active {
  color: #60a5fa;
}
.mobile-divider {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* â”€â”€ Hero Sections â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-short {
  min-height: 70vh;
}
.hero-shorter {
  min-height: 60vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(15, 23, 42, 0.6) 40%,
    rgba(15, 23, 42, 0.9) 100%
  );
}
.hero-dark {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  padding: 128px 24px 80px;
}
.hero-content.wide {
  max-width: 1280px;
  width: 100%;
}
.hero-content.center {
  text-align: center;
  margin: 0 auto;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to top, #fff, transparent);
}

/* â”€â”€ Tech Grid SVG â”€â”€ */
.tech-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* â”€â”€ Typography â”€â”€ */
.label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}
.label-blue {
  color: #60a5fa;
}
.label-blue2 {
  color: #3b82f6;
}
.title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.title-white {
  color: #fff;
}
.title-xl {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .title-xl {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .title-xl {
    font-size: 3.75rem;
  }
}
.title-lg {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .title-lg {
    font-size: 2.25rem;
  }
}
.title-md {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .title-md {
    font-size: 1.875rem;
  }
}
.title-hero {
  font-weight: 300;
  line-height: 1.1;
}
.subtitle {
  color: #64748b;
  font-size: 14px;
  max-width: 640px;
}
.subtitle-lg {
  font-size: 18px;
}
.subtitle-white {
  color: rgba(255, 255, 255, 0.5);
}
.line {
  width: 48px;
  height: 1px;
  background: #3b82f6;
  margin-top: 24px;
}
.line-center {
  margin-left: auto;
  margin-right: auto;
}
.line-gradient {
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  width: 96px;
}

/* â”€â”€ Sections â”€â”€ */
.section {
  padding: 96px 0;
}
@media (min-width: 1024px) {
  .section {
    padding: 128px 0;
  }
}
.section-dark {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  position: relative;
  overflow: hidden;
}
.section-slate {
  background: #f8fafc;
}
.section-white {
  background: #fff;
}

/* â”€â”€ Grid â”€â”€ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-5 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.grid-gap-sm {
  gap: 1px;
}
.grid-gap-md {
  gap: 32px;
}
.grid-gap-lg {
  gap: 64px;
}
.grid-items-center {
  align-items: center;
}

/* â”€â”€ Cards â”€â”€ */
.card {
  padding: 40px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05);
}
.card-dark {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
}
.card-dark:hover {
  border-color: rgba(59, 130, 246, 0.2);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon-blue {
  background: #eff6ff;
}
.card-icon-slate {
  background: #f1f5f9;
}
.card-icon-amber {
  background: #fffbeb;
}
.card-icon-green {
  background: rgba(34, 197, 94, 0.1);
}
.card-icon-purple {
  background: rgba(168, 85, 247, 0.1);
}

/* â”€â”€ Stats â”€â”€ */
.stat-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.stat-box {
  padding: 24px 32px;
  text-align: center;
}
.stat-box-dark {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}
.stat-box-dark2 {
  background: rgba(30, 41, 59, 0.5);
}
.stat-value {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #60a5fa;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}
.stat-value-lg {
  font-size: 3rem;
}
@media (min-width: 768px) {
  .stat-value-lg {
    font-size: 3.75rem;
  }
}
.stat-value-white {
  color: #fff;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 8px;
}
.stat-sub {
  font-size: 10px;
  color: #60a5fa;
  margin-top: 4px;
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
}
.btn-primary {
  background: #3b82f6;
  color: #fff;
}
.btn-primary:hover {
  background: #60a5fa;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-dark {
  border: 1px solid #e2e8f0;
  color: #475569;
}
.btn-outline-dark:hover {
  border-color: #cbd5e1;
}
.btn-dark {
  background: #0f172a;
  color: #fff;
}
.btn-dark:hover {
  background: #1e293b;
}
.btn-lg {
  padding: 14px 32px;
}
.btn-full {
  width: 100%;
}
.btn svg {
  width: 16px;
  height: 16px;
}

/* â”€â”€ Check Items â”€â”€ */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon-blue {
  color: #60a5fa;
}
.check-icon-slate {
  color: #94a3b8;
}
.check-icon-amber {
  color: #fbbf24;
}

/* â”€â”€ Brand Grid â”€â”€ */
.brand-cell {
  background: #fff;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.brand-cell:hover {
  background: #f8fafc;
}
.brand-logo {
  display: block;
  width: 120px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 8px;
}
.brand-initial {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: #e2e8f0;
  margin-bottom: 4px;
}
.brand-name {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.05em;
}

/* â”€â”€ Category Tags â”€â”€ */
.tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #e2e8f0;
  color: #64748b;
  border-radius: 2px;
}
.tag-pill {
  border-radius: 999px;
  border-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.05);
  padding: 8px 20px;
}

/* â”€â”€ Timeline Bars â”€â”€ */
.timeline-bar {
  margin-bottom: 24px;
}
.timeline-label {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  margin-bottom: 8px;
}
.timeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.timeline-type {
  font-size: 12px;
  width: 80px;
  flex-shrink: 0;
}
.timeline-type-trad {
  color: #94a3b8;
}
.timeline-type-mg {
  color: #3b82f6;
  font-weight: 500;
}
.timeline-track {
  flex: 1;
  background: #f1f5f9;
  border-radius: 999px;
  height: 24px;
  overflow: hidden;
}
.timeline-fill {
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  transition: width 1s ease-out;
}
.timeline-fill-trad {
  background: #cbd5e1;
}
.timeline-fill-mg {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.timeline-val {
  font-size: 10px;
  font-weight: 500;
}
.timeline-val-trad {
  color: #475569;
}
.timeline-val-mg {
  color: #fff;
}

/* â”€â”€ Budget Bars â”€â”€ */
.budget-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.budget-type {
  font-size: 12px;
  width: 64px;
  flex-shrink: 0;
}
.budget-track {
  flex: 1;
  background: #1e293b;
  border-radius: 999px;
  height: 20px;
  overflow: hidden;
}
.budget-fill {
  height: 100%;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}
.budget-fill-before {
  background: #475569;
}
.budget-fill-after {
  background: linear-gradient(90deg, #10b981, #34d399);
}

/* â”€â”€ Gallery â”€â”€ */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: #f1f5f9;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.gallery-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  color: #fff;
}
.gallery-tag-retail {
  background: rgba(59, 130, 246, 0.8);
}
.gallery-tag-offices {
  background: rgba(71, 85, 105, 0.8);
}
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-dots {
  opacity: 1;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: all 0.2s;
}
.gallery-dot.active {
  background: #fff;
  transform: scale(1.25);
}
.gallery-info {
  margin-top: 16px;
}
.gallery-brand {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.gallery-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  color: #64748b;
}
.gallery-location svg {
  width: 14px;
  height: 14px;
  color: #94a3b8;
}

/* â”€â”€ Filter Tabs â”€â”€ */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
  background: #f1f5f9;
  color: #64748b;
}
.filter-btn:hover {
  background: #e2e8f0;
  color: #475569;
}
.filter-btn.active {
  background: #0f172a;
  color: #fff;
}

/* â”€â”€ Founder Cards â”€â”€ */
.founder-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  transition: background 0.3s;
}
.founder-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  color: #60a5fa;
}
.founder-name {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.founder-role {
  font-size: 14px;
  color: #60a5fa;
}
.founder-detail {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.founder-detail::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #60a5fa;
}

/* â”€â”€ Workforce â”€â”€ */
.workforce-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.workforce-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.workforce-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* â”€â”€ Form â”€â”€ */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  color: #1e293b;
  font-family: "Inter", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-input::placeholder {
  color: #cbd5e1;
}
.form-input:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
textarea.form-input {
  resize: none;
}

/* â”€â”€ Office Cards â”€â”€ */
.office-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}
.office-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.02);
}
.office-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.3s;
}
.office-card:hover .office-icon {
  background: rgba(59, 130, 246, 0.2);
}
.office-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* â”€â”€ Footer â”€â”€ */
.footer {
  position: relative;
  background: #020617;
  color: #fff;
  overflow: hidden;
  padding: 64px 0;
}
@media (min-width: 1024px) {
  .footer {
    padding: 80px 0;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 24px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: #64748b;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #60a5fa;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.footer-contact:hover {
  color: #60a5fa;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  color: #3b82f6;
  flex-shrink: 0;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-copy {
  font-size: 12px;
  color: #475569;
}

/* â”€â”€ Scroll Reveal â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* â”€â”€ Animations â”€â”€ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade-in-up {
  animation: fadeInUp 0.6s forwards;
  opacity: 0;
}
.anim-delay-1 {
  animation-delay: 0.2s;
}
.anim-delay-2 {
  animation-delay: 0.4s;
}
.anim-delay-3 {
  animation-delay: 0.6s;
}
.anim-delay-4 {
  animation-delay: 0.8s;
}

/* â”€â”€ Utilities â”€â”€ */
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.text-blue {
  color: #3b82f6;
}
.text-blue-light {
  color: #60a5fa;
}
.text-slate-400 {
  color: #94a3b8;
}
.text-slate-500 {
  color: #64748b;
}
.text-slate-700 {
  color: #334155;
}
.text-sm {
  font-size: 14px;
}
.text-xs {
  font-size: 12px;
}
.text-lg {
  font-size: 18px;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-10 {
  margin-bottom: 40px;
}
.mb-12 {
  margin-bottom: 48px;
}
.mb-16 {
  margin-bottom: 64px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-12 {
  margin-top: 48px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-lg {
  max-width: 512px;
}
.max-w-xl {
  max-width: 576px;
}
.max-w-2xl {
  max-width: 672px;
}
.max-w-3xl {
  max-width: 768px;
}
.max-w-4xl {
  max-width: 896px;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.gap-6 {
  gap: 24px;
}
.gap-8 {
  gap: 32px;
}
.gap-12 {
  gap: 48px;
}
.gap-16 {
  gap: 64px;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.w-full {
  width: 100%;
}
.rounded-lg {
  border-radius: 8px;
}
.rounded-xl {
  border-radius: 12px;
}
.rounded-2xl {
  border-radius: 16px;
}
.overflow-hidden {
  overflow: hidden;
}
.shadow-2xl {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.border-slate-100 {
  border: 1px solid #f1f5f9;
}
.bg-blue-gradient {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.bg-emerald-gradient {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(16, 185, 129, 0.1)
  );
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}
.p-6 {
  padding: 24px;
}
.p-8 {
  padding: 32px;
}
.p-10 {
  padding: 40px;
}
.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}
@media (min-width: 1024px) {
  .lg-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}
.space-y-3 > * + * {
  margin-top: 12px;
}
.space-y-4 > * + * {
  margin-top: 16px;
}
.space-y-5 > * + * {
  margin-top: 20px;
}
.space-y-6 > * + * {
  margin-top: 24px;
}

/* â”€â”€ Highlight Box â”€â”€ */
.highlight-box {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}
.highlight-box-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
}
.highlight-box-emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}

/* Map container */
.map-container {
  max-width: 576px;
  margin: 0 auto;
}
.map-container svg {
  width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .map-container {
    max-width: 540px;
  }
}

/* Schedule cards for maintain */
.schedule-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Insight card dark */
.insight-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s;
}
.insight-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

/* Service feature cards */
.feature-card {
  background: rgba(30, 41, 59, 0.5);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.5);
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

/* Build cards */
.build-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.build-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Key reduction items */
.reduction-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: border-color 0.3s;
}
.reduction-item:hover {
  border-color: #e2e8f0;
}

/* Platform screenshot cards */
.screen-card {
  transition: all 0.7s;
}
.screen-card .screen-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.screen-card:hover .screen-img {
  border-color: rgba(59, 130, 246, 0.2);
}
.screen-card:hover .screen-img img {
  transform: scale(1.02);
}
.screen-card .screen-img img {
  transition: transform 0.5s;
}

/* Contact info cards */
.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05);
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.contact-info-card:hover .contact-info-icon {
  background: #dbeafe;
}

/* Toast notification */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 200;
  background: #0f172a;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transform: translateX(120%);
  transition: transform 0.3s;
  font-size: 14px;
}
.toast.show {
  transform: translateX(0);
}

/* VC funding amount */
.funding-amount {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.funding-number {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .funding-number {
    font-size: 5rem;
  }
}
.funding-unit {
  padding-bottom: 12px;
}
.funding-cr {
  font-family: "Oswald", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1;
}