@font-face {
  font-family: "Poppins-Bold";
  src: url("/landing-assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("/landing-assets/fonts/Poppins-Light.ttf") format("truetype");
  font-display: swap;
}

:root {
  --primary: #54bdc1;
  --primary-dark: #44aeb2;
  --secondary: #1e355f;
  --ink: #1a1a1a;
  --muted: #667085;
  --surface: #ffffff;
  --soft: #f5f5f7;
  --soft-alt: #f8f9fa;
  --line: #e6eaf0;
  font-family: "Poppins-Light", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  font-family: "Poppins-Light", Arial, sans-serif;
}

a {
  color: inherit;
}

.section {
  width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.static-navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 245, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.static-navbar .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.static-navbar-brand,
.static-navbar-actions {
  display: flex;
  align-items: center;
}

.static-navbar-brand {
  gap: 8px;
  color: var(--primary);
  font-family: "Poppins-Bold", Arial, sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
}

.static-navbar-brand img {
  width: 36px;
  height: 36px;
}

.static-navbar-actions {
  gap: 16px;
  font-family: "Poppins-Bold", Arial, sans-serif;
  font-size: 0.9rem;
}

.static-navbar-login {
  color: var(--ink);
  text-decoration: none;
}

.static-navbar-cta {
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft);
  padding: 64px 0 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  font-family: "Poppins-Bold", Arial, sans-serif;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
}

.carousel {
  width: 100%;
}

.carousel-track {
  display: grid;
  align-items: center;
  min-height: 260px;
}

.carousel-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide h1 {
  font-family: "Poppins-Bold", Arial, sans-serif;
  max-width: 920px;
  margin: 0 auto 24px;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.gradient-text {
  color: #667eea;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-slide p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  opacity: 1;
  cursor: pointer;
  transition: width 300ms ease, background 300ms ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #667eea;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.email-form input {
  width: min(260px, 100%);
  height: 40px;
  padding: 0 14px;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.email-form input:focus {
  outline: 2px solid rgba(84, 189, 193, 0.24);
  border-color: var(--primary);
}

.google-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1px solid rgb(84, 189, 193);
  border-radius: 20px;
  background: #ffffff;
  color: #1f2937;
  box-shadow: none;
  font-family: "Poppins-Light", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: capitalize;
  cursor: pointer;
}

.google-button:hover {
  background: #f8fafc;
  border-color: rgb(84, 189, 193);
  box-shadow: none;
}

.google-button img {
  width: 22px;
  height: 22px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid rgb(84, 189, 193);
  border-radius: 20px;
  background: var(--secondary);
  color: #ffffff;
  box-shadow: none;
  font-family: "Poppins-Light", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
  text-transform: capitalize;
}

.button:hover {
  background: #000f35;
  border-color: rgb(84, 189, 193);
  box-shadow: none;
}

.button.secondary {
  background: transparent;
  color: var(--secondary);
}

.button.secondary:hover {
  background: rgba(30, 53, 95, 0.04);
  color: var(--secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #d1fae5;
  color: #0f7a3d;
  font-size: 0.95rem;
  font-weight: 600;
}

.claim {
  text-align: center;
  padding: 88px 0;
}

.claim h2,
.cta h2 {
  font-family: "Poppins-Bold", Arial, sans-serif;
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 700;
}

.claim p,
.cta p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.features {
  padding: 36px 0 88px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e3f2fd;
  color: var(--primary);
  font-size: 24px;
}

.material-icon {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.feature-card h3 {
  font-family: "Poppins-Bold", Arial, sans-serif;
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.feature-card p {
  margin: 0;
  color: #5f6673;
  font-size: 0.9rem;
  line-height: 1.6;
}

.workflow {
  padding: 84px 0;
  background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
  color: #ffffff;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.workflow h2 {
  font-family: "Poppins-Bold", Arial, sans-serif;
  margin: 0 0 40px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.steps {
  display: grid;
  gap: 28px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.step h3 {
  font-family: "Poppins-Bold", Arial, sans-serif;
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.workflow img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stats {
  background: var(--soft-alt);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stat strong {
  font-family: "Poppins-Light", Arial, sans-serif;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta {
  padding: 88px 0;
  text-align: center;
}

.cta .actions {
  margin-top: 38px;
}

.footer {
  padding: 64px 0 32px;
  background: var(--soft-alt);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: auto auto;
  gap: 48px;
  align-items: start;
  justify-content: center;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-brand span {
  font-family: "Poppins-Bold", Arial, sans-serif;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer p {
  margin: 0;
  max-width: 330px;
  line-height: 1.6;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Poppins-Bold", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
}

.social-link:hover {
  color: #1da1f2;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 960px) {
  .feature-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 44px;
  }

  .static-navbar .container {
    min-height: 60px;
  }

  .static-navbar-brand img {
    width: 32px;
    height: 32px;
  }

  .static-navbar-actions {
    gap: 10px;
    font-size: 0.8rem;
  }

  .static-navbar-cta {
    padding: 7px 12px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .email-form,
  .email-form input,
  .actions .button {
    width: 100%;
  }

  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
