*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #e64a19;
  --primary-dark: #c63d17;
  --accent: #f15c38;
  --orange: #ff7a42;
  --cream: #fff8f3;
  --soft-gray: #f4f4f6;
  --shadow: 0 25px 55px rgba(230, 74, 25, 0.15);
  --text: #1f1f2d;
  --muted: #656575;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #fff, #ffeae0 70%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--orange));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.large {
  min-width: 220px;
}

.btn.dl-btn {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.ghost {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logotype {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
}

.main-nav a {
  color: var(--muted);
}

.hero {
  padding: 6rem 6vw 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.floating-card {
  position: absolute;
  bottom: 12%;
  left: -10%;
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.stats strong {
  font-size: 1.7rem;
}

section {
  padding: 4rem 6vw;
}

.section-heading {
  max-width: 720px;
}

.section-heading.center {
  text-align: center;
  margin: 0 auto 3rem;
}

.how-it-works {
  background: var(--cream);
  border-radius: 48px 48px 0 0;
  margin-top: 3rem;
  padding-bottom: 5rem;
}

.how-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.how-card {
  background: #fff;
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
  position: relative;
}

.how-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.how-visual {
  grid-column: span 2;
  position: relative;
}

.overlay-pill {
  position: absolute;
  bottom: 14%;
  left: 8%;
  background: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.overlay-pill.secondary {
  right: 8%;
  left: auto;
  top: 14%;
}

.features {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--soft-gray);
  padding: 1.8rem;
  border-radius: 24px;
  min-height: 220px;
}

.feature.highlight {
  background: linear-gradient(150deg, #ffe0d1, #fff);
  border: 1px solid #ffd0bd;
}

.mockups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.mockups ul {
  padding-left: 1rem;
  color: var(--muted);
}

.mockups-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1.4rem;
}

.device-card {
  padding: 1rem;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.device-card.stacked {
  transform: translateY(15%) rotate(4deg);
}

.device-card.tall {
  grid-column: span 2;
}

.timeline {
  background: var(--cream);
  border-radius: 48px;
  margin: 4rem 6vw;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.timeline-step {
  background: #fff;
  padding: 1.6rem;
  border-radius: 24px;
  border: 2px solid rgba(230, 74, 25, 0.15);
}

.timeline-step strong {
  font-size: 1.4rem;
  color: var(--primary);
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fff5ef;
  border: 1px solid #ffdacc;
  padding: 1.8rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(230, 74, 25, 0.1), transparent);
  top: -20px;
  right: -30px;
}

.cta {
  margin: 4rem 6vw;
  padding: 3rem;
  background: linear-gradient(120deg, var(--primary), var(--orange));
  border-radius: 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 2rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #121214;
  color: #fff;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.floating-visual {
  position: absolute;
  width: 180px;
  border-radius: 40px;
  z-index: 0;
  opacity: 0.25;
  filter: grayscale(0.3);
  pointer-events: none;
  animation: slowTurn 18s linear infinite;
}

.visual-one {
  top: 30%;
  left: -40px;
}

.visual-two {
  right: -60px;
  top: 10%;
}

.visual-three {
  bottom: 20%;
  right: 10%;
  width: 140px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slowTurn {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

/* Policy */
.policy-page {
  background: #fff;
}

.policy-header,
.policy-footer {
  padding: 1.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--soft-gray);
}

.policy-content {
  padding: 4rem 6vw 5rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.policy-content h1 {
  font-size: 2.5rem;
}

.policy-content section {
  padding: 2rem 0 0;
}

.policy-footer {
  background: #111;
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-around;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }

  .how-visual {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .hero,
  section {
    padding: 3rem 5vw;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta {
    margin: 3rem 4vw;
    padding: 2rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
.hero img{
    width: 350px;
}
.how-visual img{
    width: 350px;
    border-radius: 20px;
    border: 2px solid #000;  
}
.mockups-visual img{
    width: 100px;
       border-radius: 10px;
    border: 2px solid #000;
    margin-left: 10px;
    margin-right: 10px;  
}
.how-it-works .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

