/* Astrum Landing - Static CSS */
:root {
  --background: 0 0% 100%;
  --foreground: 220 15% 15%;
  --primary: 355 85% 56%;
  --primary-foreground: 0 0% 100%;
  --muted-foreground: 220 9% 45%;
  --border: 220 15% 88%;
  --glass-bg: 220 15% 97% / 0.7;
  --glass-bg-strong: 220 15% 97% / 0.85;
  --glass-border: 220 15% 15% / 0.08;
  --glass-shadow: 220 15% 15% / 0.06;
  --footer-bg: 220 20% 12%;
  --footer-fg: 220 14% 92%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: 'Roboto', sans-serif; line-height: 1.15; }

/* Utility */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.container-xl { max-width: 1600px; margin: 0 auto; padding: 0 1rem; }
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.muted { color: hsl(var(--muted-foreground)); }
.center { text-align: center; }

/* Glass */
.glass {
  background: hsl(var(--glass-bg));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--glass-border));
  box-shadow: 0 8px 32px hsl(var(--glass-shadow));
  border-radius: 0.75rem;
}
.glass-strong {
  background: hsl(var(--glass-bg-strong));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid hsl(355 85% 56% / 0.15);
  border-radius: 1rem;
}

/* Film grain */
.film-grain { position: relative; }
.film-grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* Section base */
section { position: relative; overflow: hidden; }
.section-bg {
  position: absolute; inset: 0;
}
.section-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  opacity: 0.5;
}
.section-bg .overlay {
  position: absolute; inset: 0;
  background: hsl(var(--background) / 0.9);
}
.section-content { position: relative; z-index: 2; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
  font-size: 1rem;
}
.btn-primary:hover { background: hsl(var(--primary) / 0.9); }
.btn-primary-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; white-space: nowrap; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}
.hero .section-bg .overlay {
  background: linear-gradient(to bottom,
    hsl(var(--background) / 0.7) 0%,
    hsl(var(--background) / 0.85) 50%,
    hsl(var(--background)) 100%);
}
.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.hero-header img { height: 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-header img { height: 64px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 48px; }
}
.hero p.lead {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
}
@media (min-width: 768px) {
  .hero p.lead { font-size: 1.25rem; }
  
}

/* Form */
.form-card { padding: 2rem; opacity: 0.95; }
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }
.form-head { text-align: center; margin-bottom: 1.5rem; }
.form-head h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.form-head p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.field label { font-size: 0.875rem; font-weight: 500; }
.field label .req { color: hsl(var(--primary)); }
.field input, .field select {
  font: inherit;
  padding: 0.625rem 0.75rem;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus { border-color: hsl(var(--primary)); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-submit {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 3rem; font-weight: 600; font-size: 1rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  border-radius: 0.5rem; transition: background 0.2s;
}
@media (min-width: 768px) { .form-submit { padding: 0 4rem; margin: 0 auto; } }
.form-submit:hover { background: hsl(var(--primary) / 0.9); }
.form-foot { text-align: center; font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.5rem; }
.email-foot { text-align: center; font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 1.5rem; }

/* ===== STATS / TIMELINE ===== */
.timeline-section { padding: 2.5rem 0; }
@media (min-width: 1024px) { .timeline-section { padding: 3.5rem 0; } }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 5rem; }
}
.stat { text-align: center; }
.stat-num {
  font-size: 1.875rem; font-weight: 700; margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
@media (min-width: 768px) { .stat-num { font-size: 2.25rem; } }
@media (min-width: 1024px) { .stat-num { font-size: 3rem; } }
.stat:hover .stat-num { color: hsl(var(--primary)); }
.stat-label { font-size: 0.95rem; color: hsl(var(--muted-foreground)); }

.divider-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.divider-line { width: 50%; border: 0; border-top: 1px solid #000; }

.intro-text {
  text-align: center;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 72rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .intro-text { font-size: 1.125rem; } }
.intro-text .name { color: hsl(var(--foreground)); font-weight: 500; white-space: nowrap; }

.cta-bar {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .cta-bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-meta { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
@media (min-width: 640px) { .cta-meta { flex-direction: row; gap: 1.5rem; } }
.cta-meta span { display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.cta-meta svg { color: hsl(var(--primary)); width: 1rem; height: 1rem; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
.col-card { padding: 2rem; }
.col-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.25rem; }
.col-card ul li {
  display: flex; gap: 0.75rem; font-size: 0.875rem;
  color: hsl(var(--muted-foreground)); line-height: 1.7;
  margin-bottom: 1rem;
}
.col-card svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); margin-top: 0.2rem; flex-shrink: 0; }

/* ===== WHY ASTRUM ===== */
.why { padding: 4rem 0; }
@media (min-width: 1024px) { .why { padding: 5rem 0; } }
.why h2, .why h3 {
  font-size: 1.875rem; font-weight: 700; text-align: center;
}
@media (min-width: 768px) { .why h2, .why h3 { font-size: 2.25rem; } }
.why-intro { text-align: center; margin-bottom: 4rem; }
.why-intro p {
  font-size: 1rem; color: hsl(var(--muted-foreground));
  max-width: 48rem; margin: 1rem auto 0; line-height: 1.7;
}
@media (min-width: 768px) { .why-intro p { font-size: 1.125rem; } }
.leadership-title { margin-bottom: 2.5rem; }

.team-grid {
  display: grid;
  gap: 1rem;
}
.team-grid.desktop {
  display: none;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 1024px) {
  .team-grid.desktop { display: grid; }
}

.team-card { display: flex; flex-direction: column; overflow: hidden; }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card .body { padding: 1rem; display: flex; flex-direction: column; }
.team-card h4 { font-size: 0.875rem; font-weight: 600; }
.team-card .role { font-size: 0.75rem; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.team-card .bio { font-size: 0.75rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.team-card .bio p { margin-bottom: 0.5rem; }
.team-card .bio.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.team-card .read-more {
  font-size: 0.75rem; font-weight: 500; color: hsl(var(--primary));
  margin-top: 0.5rem; align-self: flex-start;
}
.team-card .read-more:hover { text-decoration: underline; }

/* Mobile slider */
.team-slider { display: block; position: relative; }
@media (min-width: 768px) { .team-slider { display: none; } }
.team-slider .viewport { overflow: hidden; }
.team-slider .track {
  display: flex;
  transition: transform 0.35s ease;
}
.team-slider .slide {
  flex: 0 0 90%;
  padding: 0 0.5rem;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: hsl(var(--primary)); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.slider-arrow:disabled { opacity: 0.4; cursor: default; }
.slider-arrow.prev { left: 0.25rem; }
.slider-arrow.next { right: 0.25rem; }

.dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.dots button {
  width: 0.625rem; height: 0.625rem;
  border-radius: 9999px;
  background: hsl(var(--muted-foreground) / 0.3);
  transition: all 0.3s;
}
.dots button.active {
  background: hsl(var(--primary));
  width: 1.5rem;
}

/* Tablet team layout */
.team-grid.tablet {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .team-grid.tablet { display: grid; }
  .team-grid.tablet .row2 {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 66.666%;
    margin: 0 auto;
  }

 
}

/* ===== CLIENT SECTORS ===== */
.client-section { padding: 4rem 0; background: hsl(var(--background)); }
@media (min-width: 1024px) { .client-section { padding: 5rem 0; }  .p-8{
  padding: 4rem 1rem;
  } }
.client-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .client-grid { grid-template-columns: 1fr 1fr; } }
.client-grid h3 {
  font-size: 1.875rem; font-weight: 700; text-align: center; margin-bottom: 2rem;
}
@media (min-width: 768px) { .client-grid h3 { font-size: 2.25rem; } }

.testimonial-wrap { position: relative; flex: 1; display: flex; flex-direction: column;padding: 0rem 1.5rem; }
.testimonial-viewport { overflow: hidden; flex: 1;    align-items: center;
    justify-content: center;
    display: flex; }
.testimonial-track { display: flex; transition: transform 0.35s ease; }
.testimonial-slide { flex: 0 0 100%; }
.testimonial-card {
  
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.testimonial-card .quote-icon {
  width: 2rem; height: 2rem; color: hsl(var(--primary) / 0.4);
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-style: italic;
  color: hsl(var(--foreground) / 0.9);
  line-height: 1.6;
}
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: hsl(var(--primary)); color: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.testimonial-arrow.prev { left: -1rem; }
.testimonial-arrow.next { right: -1rem; }

.word-cloud {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.25rem 2rem;
  padding: 1.5rem 0;
}
.word-cloud span {
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  cursor: default;
  transition: color 0.2s;
}
.word-cloud span:hover { color: hsl(var(--primary)); }

/* ===== FINAL CTA ===== */
.final-cta { padding: 4rem 0; }
.final-cta .section-bg .overlay { background: hsl(var(--background) / 0.9); }
.final-cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.final-cta h2 {
  font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 2.25rem; } }
.final-cta p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: #fff;
  color: #000;
  padding: 3rem 0;
}
footer .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  footer .grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
}
footer p, footer a { font-size: 0.875rem; color: #000; }
footer a:hover { color: #000; }
footer .text-primary { color: hsl(var(--primary)); }
.footer-socials {
  display: flex; gap: 1rem;
  justify-content: center;
}
@media (min-width: 768px) { .footer-socials { justify-content: flex-end; } }
.footer-socials svg { width: 1.25rem; height: 1.25rem; }
.footer-bottom {
  border-top: 1px solid #000;

  padding-top: 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; gap: 1.5rem; }
.footer-address { display: inline-flex; align-items: flex-start; gap: 0.5rem; justify-content: center; }
@media (min-width: 768px) { .footer-address { justify-content: flex-start; } }
.footer-address svg { width: 1rem; height: 1rem; margin-top: 0.15rem; flex-shrink: 0; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  top: 1rem; right: 1rem;
  z-index: 50;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* WhatsApp */
.whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  border-radius: 9999px;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { width: 1.75rem; height: 1.75rem; }



/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .testimonial-card .quote-icon {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary) / 0.4);
    margin-bottom: 1rem;
    margin: 10px 15px;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 85%;
}

.testimonial-card p {
    font-style: italic;
    color: hsl(var(--foreground) / 0.9);
    line-height: 1.6;
    font-size: 0.875rem;
    transform: translateX(10px);
    padding: 5px;
}
}