:root {
  --navy: #0b1220;
  --cyan: #22d3ee;
  --pink: #ff4fd8;
  --mint: #7ef9dd;
  --ice: #f5f7ff;
  --white: #ffffff;
  --shadow: rgba(9, 18, 44, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--ice);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 22, 53, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 12px 24px rgba(34, 211, 238, 0.35);
}

.brand-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: rgba(8, 22, 53, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
}

.button {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: linear-gradient(120deg, var(--cyan), var(--pink));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(34, 211, 238, 0.3);
}

.button-outline {
  border: 1px solid rgba(8, 22, 53, 0.2);
  color: var(--navy);
  background: var(--white);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(8, 22, 53, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(8, 22, 53, 0.6);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(8, 22, 53, 0.7);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
}

.highlight-title {
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-image {
  position: absolute;
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(8, 22, 53, 0.22);
  animation: float 8s ease-in-out infinite;
  object-fit: cover;
  display: block;
}

.hero-image-primary {
  width: 80%;
  height: 320px;
  right: 0;
  top: 0;
}

.hero-image-secondary {
  width: 60%;
  height: 220px;
  left: 0;
  bottom: 0;
  animation-delay: 1.6s;
}

.glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45), transparent 70%);
  left: 25%;
  top: 35%;
  filter: blur(10px);
  animation: pulse 6s ease-in-out infinite;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 0 2rem 3rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(8, 22, 53, 0.12);
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--pink);
}
.card-image {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 30px rgba(11, 18, 32, 0.15);
  object-fit: cover;
  display: block;
}


.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(8, 22, 53, 0.1);
  min-height: 180px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.checklist {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  list-style: none;
  padding-left: 2rem;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.split-visual {
  position: relative;
  min-height: 360px;
}

.feature-image {
  width: 100%;
  height: 320px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(8, 22, 53, 0.2);
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  right: 1.5rem;
  bottom: -1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(8, 22, 53, 0.18);
}

.floating-title {
  font-weight: 700;
}

.process {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(255, 79, 216, 0.12));
  border-radius: 32px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(8, 22, 53, 0.12);
}

.step-number {
  font-weight: 700;
  color: var(--pink);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.faq-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(8, 22, 53, 0.1);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.75rem;
  color: rgba(8, 22, 53, 0.7);
}
.gallery {
  padding-top: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-image {
  height: 240px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.16);
  object-fit: cover;
  width: 100%;
  display: block;
}

.cta-banner {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(255, 79, 216, 0.16));
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  margin-bottom: 0.5rem;
}

.contact {
  padding-bottom: 6rem;
}

.contact-card {
  background: var(--white);
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  box-shadow: 0 24px 60px rgba(8, 22, 53, 0.16);
}

.contact-details {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.5rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(8, 22, 53, 0.15);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-family: inherit;
}

.footer {
  padding: 2rem;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 3.5rem;
  }

  .contact-card {
    padding: 2rem;
  }
}
