:root {
  --ink: #071123;
  --ink-soft: #3a4560;
  --paper: #f6f8ff;
  --brand: #5f66f7;
  --brand-deep: #3b43d9;
  --brand-neon: #d2ff2e;
  --mint: #67f4c6;
  --line: rgba(7, 17, 35, 0.14);
  --card: rgba(255, 255, 255, 0.92);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 22px 55px rgba(14, 21, 48, 0.2);
  --shadow-md: 0 12px 30px rgba(14, 21, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f7f8ff 0%, #f4fff9 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, rgba(95, 102, 247, 0.2), transparent 45%),
    radial-gradient(circle at 84% 12%, rgba(103, 244, 198, 0.3), transparent 44%),
    radial-gradient(circle at 50% 85%, rgba(210, 255, 46, 0.2), transparent 48%);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3,
.brand span,
.btn {
  font-family: "Chakra Petch", sans-serif;
  letter-spacing: 0.01em;
}

.hero {
  position: relative;
  padding: 112px 0 80px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 120px;
  background: linear-gradient(135deg, rgba(103, 244, 198, 0.45), rgba(95, 102, 247, 0.2));
}

.hero::after {
  width: 430px;
  height: 430px;
  left: -170px;
  bottom: -180px;
  background: linear-gradient(135deg, rgba(210, 255, 46, 0.35), rgba(95, 102, 247, 0.15));
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(8, 15, 36, 0.16);
}

.top-nav.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(7, 17, 35, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease;
}

.menu-toggle:hover {
  background: rgba(7, 17, 35, 0.14);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.75px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu-backdrop,
.mobile-menu-panel {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

main section[id],
footer[id] {
  scroll-margin-top: 108px;
}

.hero-content {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(120deg, rgba(210, 255, 46, 0.35), rgba(103, 244, 198, 0.35));
}

.hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(140deg, var(--brand-neon), #b4f542);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  box-shadow: var(--shadow-md);
}

.legacy-link {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legacy-link a {
  color: var(--brand-deep);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.phone-stack {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
}

.phone-stack img {
  width: min(88%, 320px);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.phone-stack img:first-child {
  transform: rotate(-5deg) translate(-48px, 38px);
}

.phone-stack img:last-child {
  transform: rotate(6deg) translate(52px, -36px);
}

.value {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.value article {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.value h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.7vw, 2rem);
}

.value p {
  margin: 0;
  color: var(--ink-soft);
}

.value ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink);
}

.value li + li {
  margin-top: 7px;
}

.gallery-section {
  padding: 64px 0;
}

.gallery-section.alt {
  background: linear-gradient(120deg, rgba(95, 102, 247, 0.09), rgba(103, 244, 198, 0.09));
}

.section-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.scroll-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.scroll-btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.shot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.shot-track::-webkit-scrollbar {
  height: 8px;
}

.shot-track::-webkit-scrollbar-thumb {
  background: rgba(95, 102, 247, 0.28);
  border-radius: 999px;
}

.shot-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  scroll-snap-align: start;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 640 / 1136;
  object-fit: cover;
  display: block;
}

.shot-copy {
  padding: 16px;
}

.shot-copy h3 {
  margin: 0;
  font-size: 1.28rem;
}

.shot-copy p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.pricing-section {
  padding: 66px 0;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.pricing-card h3 span {
  font-size: 0.82em;
  color: var(--ink-soft);
  font-weight: 500;
}

.pricing-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.pricing-card p strong {
  color: var(--brand-deep);
}

.price-stack {
  text-align: right;
  display: grid;
  gap: 2px;
}

.price-stack small {
  color: #5a5e6d;
  text-decoration: line-through;
  font-size: 1.03rem;
}

.price-stack strong {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-family: "Chakra Petch", sans-serif;
}

.blog-section {
  padding: 18px 0 68px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.blog-meta {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-card h3 {
  margin: 12px 0 8px;
  font-size: 1.34rem;
}

.blog-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.blog-card a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.blog-cta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.faq-section {
  padding: 66px 0 26px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.download {
  padding: 76px 0 84px;
}

.download .container {
  background:
    linear-gradient(140deg, rgba(95, 102, 247, 0.96), rgba(45, 188, 173, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.15), transparent 30%);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 5vw, 44px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.download h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.download p {
  margin: 0 0 20px;
  max-width: 680px;
}

.download .btn-primary {
  background: #fff;
}

.download .btn-secondary {
  background: rgba(7, 17, 35, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 12% 20%, rgba(210, 255, 46, 0.24), transparent 42%),
    radial-gradient(circle at 90% 130%, rgba(103, 244, 198, 0.2), transparent 52%),
    linear-gradient(140deg, #3f48dd 0%, #5f66f7 46%, #2dbcad 100%);
  color: #f7f9ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.8fr;
  gap: 18px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 10px;
}

.footer-grid p {
  margin: 0 0 10px;
  color: rgba(247, 249, 255, 0.86);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: #d8ff45;
  text-decoration: none;
  font-weight: 600;
}

.social-list {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 10px;
}

.social-list a {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 14px;
  padding: 16px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 249, 255, 0.88);
}

.footer-bottom a {
  color: #d8ff45;
  text-decoration: none;
  font-weight: 700;
}

.hero-compact {
  padding-bottom: 34px;
}

.blogs-hero {
  margin-top: 24px;
  max-width: 720px;
}

.blogs-hero h1 {
  margin: 12px 0 6px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.blogs-hero p {
  margin: 0;
  color: var(--ink-soft);
}

.blog-layout {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

.blog-listing {
  display: grid;
  gap: 14px;
}

.blog-list-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  align-items: start;
}

.blog-thumb {
  margin: 0;
}

.blog-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.blog-list-body {
  min-width: 0;
}

.blog-list-card h2 {
  margin: 6px 0 8px;
  font-size: 1.5rem;
}

.blog-list-card p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.blog-list-card a {
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
}

.pro-pagination {
  margin-top: 8px;
}

.pro-pagination .pagination {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.pro-pagination .page-item {
  margin: 0;
}

.pro-pagination .page-link {
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 38px;
  text-align: center;
}

.pro-pagination .page-item.active .page-link {
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-color: transparent;
}

.pro-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

.pro-pagination .page-link:hover {
  color: var(--brand-deep);
  border-color: rgba(95, 102, 247, 0.32);
}

.blog-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 16px;
}

.sidebar-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.sidebar-card p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}

.sidebar-card li + li {
  margin-top: 7px;
}

.sidebar-card a {
  color: var(--brand-deep);
  text-decoration: none;
  font-weight: 700;
}

.legal-content {
  padding-bottom: 60px;
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(18px, 4vw, 28px);
}

.legal-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.legal-card h2:not(:first-child) {
  margin-top: 18px;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-card a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--delay, 0ms);
}

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

.progress-wrap.active-progress {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 170;
}

.progress-wrap.active-progress .whatsapp-float {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #17c95f, #0ea34b);
  box-shadow: 0 14px 32px rgba(3, 52, 22, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.progress-wrap.active-progress .whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(3, 52, 22, 0.4);
}

.progress-wrap.active-progress .whatsapp-float img {
  width: 38px;
  height: 38px;
  display: block;
}

@media (max-width: 980px) {
  .hero-content,
  .value,
  .faq-grid,
  .blog-grid,
  .footer-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .phone-stack {
    min-height: 500px;
  }

  .phone-stack img:first-child {
    transform: rotate(-4deg) translate(-20px, 34px);
  }

  .phone-stack img:last-child {
    transform: rotate(4deg) translate(24px, -24px);
  }

  .blog-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .top-nav {
    top: 10px;
    position: fixed;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 20, 0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 150;
  }

  .mobile-menu-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(82vw, 360px);
    background: #131b2b;
    color: #f7fbff;
    padding: 18px 20px 26px;
    transform: translateX(-105%);
    transition: transform 260ms ease;
    z-index: 160;
  }

  .mobile-menu-panel .brand {
    color: #ffffff;
  }

  .mobile-menu-panel .brand-logo {
    width: 46px;
    height: 46px;
  }

  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }

  .menu-close {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu-links a {
    color: #f8fbff;
    text-decoration: none;
    font-size: clamp(1.7rem, 6vw, 2.05rem);
    font-weight: 700;
    line-height: 1.15;
  }

  .mobile-menu-links a:hover {
    color: var(--brand-neon);
  }

  body.menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 52px;
  }

  .hero-content {
    gap: 12px;
    margin-top: 26px;
  }

  .phone-stack {
    min-height: 420px;
  }

  .phone-stack img {
    width: min(84%, 260px);
  }

  .phone-stack img:first-child,
  .phone-stack img:last-child {
    transform: none;
    position: absolute;
  }

  .phone-stack img:last-child {
    opacity: 0;
    pointer-events: none;
  }

  .download .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-stack {
    text-align: left;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .progress-wrap.active-progress {
    right: 16px;
    bottom: 18px;
  }

  .progress-wrap.active-progress .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .progress-wrap.active-progress .whatsapp-float img {
    width: 34px;
    height: 34px;
  }
}

body.menu-open .progress-wrap.active-progress {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
